diff --git a/.gitignore b/.gitignore index cd1614f..6c7312c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ build/ .idea/ *.log /.build/ +/XuqmDemo/.build/ diff --git a/Sources/XuqmSDK/Core/XuqmSDK.swift b/Sources/XuqmSDK/Core/XuqmSDK.swift index 44af928..ac07ddc 100644 --- a/Sources/XuqmSDK/Core/XuqmSDK.swift +++ b/Sources/XuqmSDK/Core/XuqmSDK.swift @@ -8,10 +8,8 @@ public final class XuqmSDK: NSObject { private(set) var tokenStore: TokenStore? public private(set) var currentUserId: String? - public var onUserSigExpired: (() -> Void)? private var userSig: String? - private var userSigTimer: Timer? private var cachedDeviceToken: String? private override init() { @@ -34,7 +32,6 @@ public final class XuqmSDK: NSObject { public func login(userId: String, userSig: String) async { self.currentUserId = userId self.userSig = userSig - startUserSigExpirationTimer(userSig: userSig) do { try await ImSDK.shared.loginWithUserSig(userId, userSig) @@ -52,9 +49,6 @@ public final class XuqmSDK: NSObject { } public func logout() async { - userSigTimer?.invalidate() - userSigTimer = nil - ImSDK.shared.disconnect() if let userId = currentUserId { @@ -81,42 +75,4 @@ public final class XuqmSDK: NSObject { } } - private func startUserSigExpirationTimer(userSig: String) { - userSigTimer?.invalidate() - guard let expDate = extractExpirationDate(from: userSig) else { return } - let interval = expDate.timeIntervalSinceNow - 300 // 5 minutes before expiry - guard interval > 0 else { - onUserSigExpired?() - return - } - userSigTimer = Timer.scheduledTimer( - timeInterval: interval, - target: self, - selector: #selector(userSigDidExpire), - userInfo: nil, - repeats: false - ) - } - - @objc private func userSigDidExpire() { - onUserSigExpired?() - } - - private func extractExpirationDate(from userSig: String) -> Date? { - let parts = userSig.split(separator: ".") - guard parts.count >= 2 else { return nil } - var base64 = String(parts[1]) - .replacingOccurrences(of: "-", with: "+") - .replacingOccurrences(of: "_", with: "/") - let padding = 4 - base64.count % 4 - if padding != 4 { - base64 += String(repeating: "=", count: padding) - } - guard let data = Data(base64Encoded: base64), - let json = try? JSONSerialization.jsonObject(with: data) as? [String: Any], - let exp = json["exp"] as? TimeInterval else { - return nil - } - return Date(timeIntervalSince1970: exp) - } } diff --git a/Sources/XuqmSDK/IM/ImSDK.swift b/Sources/XuqmSDK/IM/ImSDK.swift index dacafa7..bb4efca 100644 --- a/Sources/XuqmSDK/IM/ImSDK.swift +++ b/Sources/XuqmSDK/IM/ImSDK.swift @@ -36,15 +36,13 @@ public final class ImSDK { client?.connect() } - public func login(userId: String, nickname: String? = nil, avatar: String? = nil) async throws { + public func login(userId: String) async throws { let config = XuqmSDK.shared.requireConfig() - var items = [ + let items = [ URLQueryItem(name: "appId", value: config.appId), URLQueryItem(name: "userId", value: userId), ] - if let nickname { items.append(URLQueryItem(name: "nickname", value: nickname)) } - if let avatar { items.append(URLQueryItem(name: "avatar", value: avatar)) } let res: ImLoginResponse = try await ApiClient.shared.request( path: "/api/im/auth/login", diff --git a/XuqmDemo/.build/.lock b/XuqmDemo/.build/.lock new file mode 100644 index 0000000..e8fad9d --- /dev/null +++ b/XuqmDemo/.build/.lock @@ -0,0 +1 @@ +34606 \ No newline at end of file diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Accessibility-RCJSN2GG3RAR.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Accessibility-RCJSN2GG3RAR.pcm new file mode 100644 index 0000000..1c16197 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Accessibility-RCJSN2GG3RAR.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/AppKit-2VI8NB39I5AT6.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/AppKit-2VI8NB39I5AT6.pcm new file mode 100644 index 0000000..bf9923a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/AppKit-2VI8NB39I5AT6.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ApplicationServices-3NXEUUZF9JJBD.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ApplicationServices-3NXEUUZF9JJBD.pcm new file mode 100644 index 0000000..948f7fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ApplicationServices-3NXEUUZF9JJBD.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CFNetwork-1PNPO1ORVQZLS.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CFNetwork-1PNPO1ORVQZLS.pcm new file mode 100644 index 0000000..7f67442 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CFNetwork-1PNPO1ORVQZLS.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CUPS-1HLHMKUB322XA.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CUPS-1HLHMKUB322XA.pcm new file mode 100644 index 0000000..d696293 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CUPS-1HLHMKUB322XA.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ColorSync-3EIM4S8RXNRVI.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ColorSync-3EIM4S8RXNRVI.pcm new file mode 100644 index 0000000..95ce8a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ColorSync-3EIM4S8RXNRVI.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreData-1KHK1L2CYC2N6.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreData-1KHK1L2CYC2N6.pcm new file mode 100644 index 0000000..7e133f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreData-1KHK1L2CYC2N6.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreFoundation-16SA8WK3L6MQN.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreFoundation-16SA8WK3L6MQN.pcm new file mode 100644 index 0000000..8d2653f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreFoundation-16SA8WK3L6MQN.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreGraphics-1PSDCAYCIV3T9.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreGraphics-1PSDCAYCIV3T9.pcm new file mode 100644 index 0000000..5f16a3a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreGraphics-1PSDCAYCIV3T9.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreImage-39ZO87840M5PP.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreImage-39ZO87840M5PP.pcm new file mode 100644 index 0000000..cc10cdd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreImage-39ZO87840M5PP.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreServices-39NCTJOEW7PQ2.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreServices-39NCTJOEW7PQ2.pcm new file mode 100644 index 0000000..080508b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreServices-39NCTJOEW7PQ2.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreText-3FAL1B4J38DIR.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreText-3FAL1B4J38DIR.pcm new file mode 100644 index 0000000..b12243d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreText-3FAL1B4J38DIR.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreTransferable-27T896KGHFB3R.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreTransferable-27T896KGHFB3R.pcm new file mode 100644 index 0000000..ae095bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreTransferable-27T896KGHFB3R.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreVideo-DBBGB2LXU3HG.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreVideo-DBBGB2LXU3HG.pcm new file mode 100644 index 0000000..ac0df1e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/CoreVideo-DBBGB2LXU3HG.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Darwin-1FXX23EKWOBA9.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Darwin-1FXX23EKWOBA9.pcm new file mode 100644 index 0000000..bf3eda0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Darwin-1FXX23EKWOBA9.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DataDetection-R5W4QHNMPWVH.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DataDetection-R5W4QHNMPWVH.pcm new file mode 100644 index 0000000..acbcc6e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DataDetection-R5W4QHNMPWVH.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm new file mode 100644 index 0000000..73a72c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DiskArbitration-3LBJF5I58QD8.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DiskArbitration-3LBJF5I58QD8.pcm new file mode 100644 index 0000000..b34f551 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/DiskArbitration-3LBJF5I58QD8.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Dispatch-R76HXUP80TVL.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Dispatch-R76HXUP80TVL.pcm new file mode 100644 index 0000000..d4bfcfc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Dispatch-R76HXUP80TVL.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Foundation-24LYWIP48SHNP.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Foundation-24LYWIP48SHNP.pcm new file mode 100644 index 0000000..72dab14 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Foundation-24LYWIP48SHNP.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOKit-1IAL9NTK1TABA.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOKit-1IAL9NTK1TABA.pcm new file mode 100644 index 0000000..7a96150 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOKit-1IAL9NTK1TABA.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOSurface-26455DPS9NDS0.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOSurface-26455DPS9NDS0.pcm new file mode 100644 index 0000000..827406e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/IOSurface-26455DPS9NDS0.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ImageIO-2ZSF831VT29UB.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ImageIO-2ZSF831VT29UB.pcm new file mode 100644 index 0000000..c8afb52 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ImageIO-2ZSF831VT29UB.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/MachO-20RPYVQSX341K.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/MachO-20RPYVQSX341K.pcm new file mode 100644 index 0000000..20c1b11 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/MachO-20RPYVQSX341K.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Metal-1GCZV9N85NJOH.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Metal-1GCZV9N85NJOH.pcm new file mode 100644 index 0000000..6157666 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Metal-1GCZV9N85NJOH.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OSLog-218FBXNFJGY61.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OSLog-218FBXNFJGY61.pcm new file mode 100644 index 0000000..f0d0144 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OSLog-218FBXNFJGY61.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ObjectiveC-1G8H182PQX3QE.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ObjectiveC-1G8H182PQX3QE.pcm new file mode 100644 index 0000000..2cc2fdf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ObjectiveC-1G8H182PQX3QE.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OpenGL-H89XJT7GTCP.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OpenGL-H89XJT7GTCP.pcm new file mode 100644 index 0000000..a286d50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/OpenGL-H89XJT7GTCP.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/QuartzCore-39A8LQKF980J1.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/QuartzCore-39A8LQKF980J1.pcm new file mode 100644 index 0000000..8cd8aed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/QuartzCore-39A8LQKF980J1.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Security-3QCVXOV25KK54.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Security-3QCVXOV25KK54.pcm new file mode 100644 index 0000000..5c7cad8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Security-3QCVXOV25KK54.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Spatial-1JZLH83HN83CS.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Spatial-1JZLH83HN83CS.pcm new file mode 100644 index 0000000..4c0ef52 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Spatial-1JZLH83HN83CS.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftShims-2IMTS4WWRU7VJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftShims-2IMTS4WWRU7VJ.pcm new file mode 100644 index 0000000..51a394e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftShims-2IMTS4WWRU7VJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUI-3DCHKT5UWXXCX.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUI-3DCHKT5UWXXCX.pcm new file mode 100644 index 0000000..04fc52e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUI-3DCHKT5UWXXCX.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUICore-86HIVXUC6WOA.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUICore-86HIVXUC6WOA.pcm new file mode 100644 index 0000000..7e27d9f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/SwiftUICore-86HIVXUC6WOA.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Symbols-3KC1789KJFX94.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Symbols-3KC1789KJFX94.pcm new file mode 100644 index 0000000..0a872a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/Symbols-3KC1789KJFX94.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm new file mode 100644 index 0000000..b71e4de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UserNotifications-1OEHKMXJYMYON.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UserNotifications-1OEHKMXJYMYON.pcm new file mode 100644 index 0000000..20ec291 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/UserNotifications-1OEHKMXJYMYON.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/XPC-T0ZXCAST7PE3.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/XPC-T0ZXCAST7PE3.pcm new file mode 100644 index 0000000..63cd0bc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/XPC-T0ZXCAST7PE3.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_AvailabilityInternal-2YSBQADOLX02V.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_AvailabilityInternal-2YSBQADOLX02V.pcm new file mode 100644 index 0000000..227de97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_AvailabilityInternal-2YSBQADOLX02V.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_float-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_float-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..74c8474 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_float-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..74d8c61 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..521227a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_limits-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..a1c911b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_limits-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..dcb9c14 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..bed90ee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..d6e1941 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stddef-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..5ec64f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stddef-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdint-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..6461055 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_stdint-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..92522f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation1-2YSBQADOLX02V.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation1-2YSBQADOLX02V.pcm new file mode 100644 index 0000000..2da0edd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation1-2YSBQADOLX02V.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation2-3J4ZFA06I5V1P.pcm new file mode 100644 index 0000000..851fb49 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation2-3J4ZFA06I5V1P.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation3-2NSGASPTSNBVQ.pcm new file mode 100644 index 0000000..f16b5b7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_DarwinFoundation3-2NSGASPTSNBVQ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm new file mode 100644 index 0000000..980ffe2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/launch-3T3BU4MASLMUM.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/launch-3T3BU4MASLMUM.pcm new file mode 100644 index 0000000..def4e6a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/launch-3T3BU4MASLMUM.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libDER-26DYHF6GC6WWA.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libDER-26DYHF6GC6WWA.pcm new file mode 100644 index 0000000..b09cdfe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libDER-26DYHF6GC6WWA.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libkern-2KQ0X67RTM1JF.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libkern-2KQ0X67RTM1JF.pcm new file mode 100644 index 0000000..a418f0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/libkern-2KQ0X67RTM1JF.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os-2MV8OP7R98AN8.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os-2MV8OP7R98AN8.pcm new file mode 100644 index 0000000..d759d03 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os-2MV8OP7R98AN8.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_object-2MV8OP7R98AN8.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_object-2MV8OP7R98AN8.pcm new file mode 100644 index 0000000..8fb4e49 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_object-2MV8OP7R98AN8.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_workgroup-2MV8OP7R98AN8.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_workgroup-2MV8OP7R98AN8.pcm new file mode 100644 index 0000000..d285d69 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/os_workgroup-2MV8OP7R98AN8.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrauth-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrauth-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..5889bf3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrauth-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrcheck-2OQWMRBVRD4OJ.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrcheck-2OQWMRBVRD4OJ.pcm new file mode 100644 index 0000000..22a63ef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/ptrcheck-2OQWMRBVRD4OJ.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/simd-KY25Q80SBOHY.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/simd-KY25Q80SBOHY.pcm new file mode 100644 index 0000000..325eda9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/simd-KY25Q80SBOHY.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/sys_types-3J4ZFA06I5V1P.pcm b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/sys_types-3J4ZFA06I5V1P.pcm new file mode 100644 index 0000000..1216feb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/2GIUD0E0Y162L/sys_types-3J4ZFA06I5V1P.pcm differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Accessibility-WJD4EWEJOUQL.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Accessibility-WJD4EWEJOUQL.swiftmodule new file mode 100644 index 0000000..4b3ce84 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Accessibility-WJD4EWEJOUQL.swiftmodule @@ -0,0 +1,112 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724094000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 141440 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772000898000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22985 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/AppKit-20XWGCZJPMIH8.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/AppKit-20XWGCZJPMIH8.swiftmodule new file mode 100644 index 0000000..88488a2 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/AppKit-20XWGCZJPMIH8.swiftmodule @@ -0,0 +1,216 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724274000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 557884 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772000898000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22985 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1771723124000000000 + path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes' + size: 7789 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1773298300000000000 + path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes' + size: 37585 + sdk_relative: true + - mtime: 1772169256000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7569 + sdk_relative: true + - mtime: 1773613674000000000 + path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes' + size: 384123 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771942498000000000 + path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 43046 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true + - mtime: 1771944203000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2077 + sdk_relative: true + - mtime: 1771944739000000000 + path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 24238 + sdk_relative: true + - mtime: 1771944245000000000 + path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 777 + sdk_relative: true + - mtime: 1771945025000000000 + path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22114 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 7621 + sdk_relative: true + - mtime: 1771943050000000000 + path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 12611 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1336 + sdk_relative: true + - mtime: 1771941065000000000 + path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 229542 + sdk_relative: true + - mtime: 1771941345000000000 + path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 222898 + sdk_relative: true + - mtime: 1772086860000000000 + path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1120533 + sdk_relative: true + - mtime: 1773613819000000000 + path: 'System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 116025 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Combine-2A40KIJVCBO21.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Combine-2A40KIJVCBO21.swiftmodule new file mode 100644 index 0000000..b433cef --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Combine-2A40KIJVCBO21.swiftmodule @@ -0,0 +1,48 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723941000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 491404 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreData-2VNNIJB486OVP.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreData-2VNNIJB486OVP.swiftmodule new file mode 100644 index 0000000..e70696a --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreData-2VNNIJB486OVP.swiftmodule @@ -0,0 +1,116 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724009000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 116520 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771723124000000000 + path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes' + size: 7789 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771942498000000000 + path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 43046 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-3TWO3FBM5M6BS.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-3TWO3FBM5M6BS.swiftmodule new file mode 100644 index 0000000..ecfbfa8 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-3TWO3FBM5M6BS.swiftmodule @@ -0,0 +1,68 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723957000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 179152 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreGraphics-WUQPC96QCZNN.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreGraphics-WUQPC96QCZNN.swiftmodule new file mode 100644 index 0000000..e6c5874 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreGraphics-WUQPC96QCZNN.swiftmodule @@ -0,0 +1,108 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724016000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 323460 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreImage-9LWV1ZQQFVCX.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreImage-9LWV1ZQQFVCX.swiftmodule new file mode 100644 index 0000000..a1c4542 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreImage-9LWV1ZQQFVCX.swiftmodule @@ -0,0 +1,148 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724133000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 21768 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1773298300000000000 + path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes' + size: 37585 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true + - mtime: 1771944245000000000 + path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 777 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreText-14KX3BOYKPYP1.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreText-14KX3BOYKPYP1.swiftmodule new file mode 100644 index 0000000..4c571e1 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreText-14KX3BOYKPYP1.swiftmodule @@ -0,0 +1,124 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724086000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 43440 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreTransferable-1RPSBD4XWZECQ.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreTransferable-1RPSBD4XWZECQ.swiftmodule new file mode 100644 index 0000000..dddd283 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreTransferable-1RPSBD4XWZECQ.swiftmodule @@ -0,0 +1,120 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724040000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 80292 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771945025000000000 + path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22114 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreVideo-3Q277QKGGLTLD.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreVideo-3Q277QKGGLTLD.swiftmodule new file mode 100644 index 0000000..481dfd2 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/CoreVideo-3Q277QKGGLTLD.swiftmodule @@ -0,0 +1,140 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724122000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 173320 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-BBN6U2E33CZ3.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-BBN6U2E33CZ3.swiftmodule new file mode 100644 index 0000000..02c24fa --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-BBN6U2E33CZ3.swiftmodule @@ -0,0 +1,36 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723927000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 77500 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DataDetection-1UVHP564KZKF6.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DataDetection-1UVHP564KZKF6.swiftmodule new file mode 100644 index 0000000..74f4391 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DataDetection-1UVHP564KZKF6.swiftmodule @@ -0,0 +1,104 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724041000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 51360 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 7621 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DeveloperToolsSupport-3R5Z8SP8K29C6.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DeveloperToolsSupport-3R5Z8SP8K29C6.swiftmodule new file mode 100644 index 0000000..4dc45e5 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/DeveloperToolsSupport-3R5Z8SP8K29C6.swiftmodule @@ -0,0 +1,120 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724088000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 46236 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771943050000000000 + path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 12611 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-W4QHN5HBDIGQ.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-W4QHN5HBDIGQ.swiftmodule new file mode 100644 index 0000000..31501d9 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-W4QHN5HBDIGQ.swiftmodule @@ -0,0 +1,64 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723951000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 210892 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-BFO080QD9M5G.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-BFO080QD9M5G.swiftmodule new file mode 100644 index 0000000..3074d57 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-BFO080QD9M5G.swiftmodule @@ -0,0 +1,100 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723991000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 3785852 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-1VZPOCZR7Q945.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-1VZPOCZR7Q945.swiftmodule new file mode 100644 index 0000000..ecb29be --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-1VZPOCZR7Q945.swiftmodule @@ -0,0 +1,72 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723962000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 30128 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Metal-29GTZFXLR2V7I.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Metal-29GTZFXLR2V7I.swiftmodule new file mode 100644 index 0000000..a4bf188 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Metal-29GTZFXLR2V7I.swiftmodule @@ -0,0 +1,108 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724017000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 185460 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/OSLog-39RMGBX1XFE0K.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/OSLog-39RMGBX1XFE0K.swiftmodule new file mode 100644 index 0000000..e390500 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/OSLog-39RMGBX1XFE0K.swiftmodule @@ -0,0 +1,112 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724007000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 47388 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1336 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2RNN5ZSSNZJ6T.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2RNN5ZSSNZJ6T.swiftmodule new file mode 100644 index 0000000..1ec9d0e --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2RNN5ZSSNZJ6T.swiftmodule @@ -0,0 +1,52 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723932000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 50828 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Observation-UN58LRM051O9.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Observation-UN58LRM051O9.swiftmodule new file mode 100644 index 0000000..c0d8149 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Observation-UN58LRM051O9.swiftmodule @@ -0,0 +1,44 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723933000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 30868 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/QuartzCore-1M4XPUZZ4L5FO.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/QuartzCore-1M4XPUZZ4L5FO.swiftmodule new file mode 100644 index 0000000..fde7951 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/QuartzCore-1M4XPUZZ4L5FO.swiftmodule @@ -0,0 +1,148 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724131000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 29848 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1772169256000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7569 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true + - mtime: 1771944203000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2077 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Spatial-3RR8SQFPT227H.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Spatial-3RR8SQFPT227H.swiftmodule new file mode 100644 index 0000000..8f8f6bd --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Spatial-3RR8SQFPT227H.swiftmodule @@ -0,0 +1,52 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723978000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 1306204 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941065000000000 + path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 229542 + sdk_relative: true + - mtime: 1771941345000000000 + path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 222898 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Swift-BF86GRDXI25I.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Swift-BF86GRDXI25I.swiftmodule new file mode 100644 index 0000000..c1cda45 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Swift-BF86GRDXI25I.swiftmodule @@ -0,0 +1,12 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723912000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 15012496 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-3SZSRL9NIXBOB.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-3SZSRL9NIXBOB.swiftmodule new file mode 100644 index 0000000..fe085d3 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-3SZSRL9NIXBOB.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723916000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 18520 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1771993742000000000 + path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1412 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUI-U19STK1X5XD9.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUI-U19STK1X5XD9.swiftmodule new file mode 100644 index 0000000..8db9d4c --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUI-U19STK1X5XD9.swiftmodule @@ -0,0 +1,220 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724438000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 4050020 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771723124000000000 + path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes' + size: 7789 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771942498000000000 + path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 43046 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1771945025000000000 + path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22114 + sdk_relative: true + - mtime: 1771943050000000000 + path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 12611 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1336 + sdk_relative: true + - mtime: 1771941065000000000 + path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 229542 + sdk_relative: true + - mtime: 1771941345000000000 + path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 222898 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1773298300000000000 + path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes' + size: 37585 + sdk_relative: true + - mtime: 1772169256000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7569 + sdk_relative: true + - mtime: 1773613674000000000 + path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes' + size: 384123 + sdk_relative: true + - mtime: 1772000898000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22985 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true + - mtime: 1771944203000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2077 + sdk_relative: true + - mtime: 1771944739000000000 + path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 24238 + sdk_relative: true + - mtime: 1771944245000000000 + path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 777 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 7621 + sdk_relative: true + - mtime: 1772086860000000000 + path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1120533 + sdk_relative: true + - mtime: 1773613819000000000 + path: 'System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 116025 + sdk_relative: true + - mtime: 1772089429000000000 + path: 'System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1507050 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUICore-KWVGKMHD897P.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUICore-KWVGKMHD897P.swiftmodule new file mode 100644 index 0000000..e80e834 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/SwiftUICore-KWVGKMHD897P.swiftmodule @@ -0,0 +1,188 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724238000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 4144008 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772773598000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes' + size: 53963 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772603088000000000 + path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 88276 + sdk_relative: true + - mtime: 1772000898000000000 + path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22985 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true + - mtime: 1771945025000000000 + path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22114 + sdk_relative: true + - mtime: 1771943050000000000 + path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 12611 + sdk_relative: true + - mtime: 1771942500000000000 + path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1336 + sdk_relative: true + - mtime: 1771941065000000000 + path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 229542 + sdk_relative: true + - mtime: 1771941345000000000 + path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 222898 + sdk_relative: true + - mtime: 1772512825000000000 + path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes' + size: 1662 + sdk_relative: true + - mtime: 1772154033000000000 + path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes' + size: 104337 + sdk_relative: true + - mtime: 1773612959000000000 + path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes' + size: 2012 + sdk_relative: true + - mtime: 1772169256000000000 + path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes' + size: 7569 + sdk_relative: true + - mtime: 1772173643000000000 + path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 39535 + sdk_relative: true + - mtime: 1772512914000000000 + path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5519 + sdk_relative: true + - mtime: 1771943514000000000 + path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 31716 + sdk_relative: true + - mtime: 1771944203000000000 + path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2077 + sdk_relative: true + - mtime: 1771944739000000000 + path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 24238 + sdk_relative: true + - mtime: 1772086860000000000 + path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1120533 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Symbols-3GNJLOU6CODV0.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Symbols-3GNJLOU6CODV0.swiftmodule new file mode 100644 index 0000000..63a88f7 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/Symbols-3GNJLOU6CODV0.swiftmodule @@ -0,0 +1,104 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724011000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 73092 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1771944739000000000 + path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 24238 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/System-3228FFXNAQN6Y.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/System-3228FFXNAQN6Y.swiftmodule new file mode 100644 index 0000000..f91572b --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/System-3228FFXNAQN6Y.swiftmodule @@ -0,0 +1,48 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723941000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 401652 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/UniformTypeIdentifiers-ELOTBXM3FDOL.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/UniformTypeIdentifiers-ELOTBXM3FDOL.swiftmodule new file mode 100644 index 0000000..4dd2f86 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/UniformTypeIdentifiers-ELOTBXM3FDOL.swiftmodule @@ -0,0 +1,108 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775724006000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 74172 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941434000000000 + path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22492 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772776850000000000 + path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' + size: 162 + sdk_relative: true + - mtime: 1772253432000000000 + path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' + size: 81098 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941652000000000 + path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 3688 + sdk_relative: true + - mtime: 1771995906000000000 + path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 5151 + sdk_relative: true + - mtime: 1771941054000000000 + path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 95429 + sdk_relative: true + - mtime: 1772253192000000000 + path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1155103 + sdk_relative: true + - mtime: 1772602894000000000 + path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes' + size: 1666 + sdk_relative: true + - mtime: 1772602141000000000 + path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 20653 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/XPC-UOYPCMU7R7BB.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/XPC-UOYPCMU7R7BB.swiftmodule new file mode 100644 index 0000000..bef377a --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/XPC-UOYPCMU7R7BB.swiftmodule @@ -0,0 +1,72 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723956000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 117708 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-1XFQGC84GPL52.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-1XFQGC84GPL52.swiftmodule new file mode 100644 index 0000000..d73f1a8 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-1XFQGC84GPL52.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723916000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 23712 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-26KC2E8PBCSJQ.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-26KC2E8PBCSJQ.swiftmodule new file mode 100644 index 0000000..9306672 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-26KC2E8PBCSJQ.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723928000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 748688 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-39M6CKVLD1AV7.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-39M6CKVLD1AV7.swiftmodule new file mode 100644 index 0000000..b53927c --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-39M6CKVLD1AV7.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723921000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 92184 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-1NF8AZT49ZTBD.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-1NF8AZT49ZTBD.swiftmodule new file mode 100644 index 0000000..cd83b73 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-1NF8AZT49ZTBD.swiftmodule @@ -0,0 +1,24 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723923000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 23252 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-XAO90498WTC6.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-XAO90498WTC6.swiftmodule new file mode 100644 index 0000000..d6ec3cb --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-XAO90498WTC6.swiftmodule @@ -0,0 +1,28 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723924000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 20560 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-Y69ERUCONEPW.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-Y69ERUCONEPW.swiftmodule new file mode 100644 index 0000000..a5e4762 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-Y69ERUCONEPW.swiftmodule @@ -0,0 +1,16 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723919000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 84168 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp new file mode 100644 index 0000000..e69de29 diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/os-1EMMLDD4OZ126.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/os-1EMMLDD4OZ126.swiftmodule new file mode 100644 index 0000000..7c77126 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/os-1EMMLDD4OZ126.swiftmodule @@ -0,0 +1,80 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723965000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 642284 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1771712388000000000 + path: 'usr/include/ObjectiveC.apinotes' + size: 11147 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941037000000000 + path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 6634 + sdk_relative: true + - mtime: 1771712453000000000 + path: 'usr/include/Dispatch.apinotes' + size: 19 + sdk_relative: true + - mtime: 1772774440000000000 + path: 'usr/include/XPC.apinotes' + size: 123 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/os.apinotes' + size: 1658 + sdk_relative: true + - mtime: 1771941059000000000 + path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 167871 + sdk_relative: true + - mtime: 1772016308000000000 + path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 57504 + sdk_relative: true + - mtime: 1771941462000000000 + path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 45108 + sdk_relative: true + - mtime: 1771941301000000000 + path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 109267 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/simd-3BXL55025G00S.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/simd-3BXL55025G00S.swiftmodule new file mode 100644 index 0000000..19c9c40 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache/simd-3BXL55025G00S.swiftmodule @@ -0,0 +1,48 @@ +--- +path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule' +dependencies: + - mtime: 1775723960000000000 + path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule' + size: 1059956 + - mtime: 1771993359000000000 + path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2193648 + sdk_relative: true + - mtime: 1772775407000000000 + path: 'usr/include/_DarwinFoundation2.apinotes' + size: 1145 + sdk_relative: true + - mtime: 1772775450000000000 + path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 18804 + sdk_relative: true + - mtime: 1772775454000000000 + path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 2676 + sdk_relative: true + - mtime: 1772775458000000000 + path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 1572 + sdk_relative: true + - mtime: 1771993793000000000 + path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 4364 + sdk_relative: true + - mtime: 1772775468000000000 + path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 19538 + sdk_relative: true + - mtime: 1771993759000000000 + path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 280496 + sdk_relative: true + - mtime: 1771996850000000000 + path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 22988 + sdk_relative: true + - mtime: 1771941065000000000 + path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface' + size: 229542 + sdk_relative: true +version: 1 +... diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.abi.json b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.abi.json new file mode 100644 index 0000000..d2f988e --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.abi.json @@ -0,0 +1,9 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "NO_MODULE", + "printedName": "NO_MODULE", + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftdoc b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftdoc new file mode 100644 index 0000000..542cfa8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftdoc differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule new file mode 100644 index 0000000..ba43998 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftsourceinfo b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftsourceinfo new file mode 100644 index 0000000..1a96186 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftsourceinfo differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.abi.json b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.abi.json new file mode 100644 index 0000000..d2f988e --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.abi.json @@ -0,0 +1,9 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "NO_MODULE", + "printedName": "NO_MODULE", + "json_format_version": 8 + }, + "ConstValues": [] +} \ No newline at end of file diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftdoc b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftdoc new file mode 100644 index 0000000..eee8440 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftdoc differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule new file mode 100644 index 0000000..7ba9b0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftsourceinfo b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftsourceinfo new file mode 100644 index 0000000..71d3a26 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftsourceinfo differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.d new file mode 100644 index 0000000..a6c3488 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o new file mode 100644 index 0000000..cbd2fc4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swiftdeps new file mode 100644 index 0000000..9ee67ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.d new file mode 100644 index 0000000..5e995b9 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o new file mode 100644 index 0000000..f9ce70e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swiftdeps new file mode 100644 index 0000000..6aaa47a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.d new file mode 100644 index 0000000..89ab24a --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o new file mode 100644 index 0000000..fee0d76 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swiftdeps new file mode 100644 index 0000000..bd365b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.d new file mode 100644 index 0000000..fee5e14 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o new file mode 100644 index 0000000..0d45049 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swiftdeps new file mode 100644 index 0000000..7d20c2d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.d new file mode 100644 index 0000000..ca10071 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.dia new file mode 100644 index 0000000..8824d6b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o new file mode 100644 index 0000000..fa2d821 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swiftdeps new file mode 100644 index 0000000..d3ed6e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.d new file mode 100644 index 0000000..5102cba --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o new file mode 100644 index 0000000..ac2e7f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swiftdeps new file mode 100644 index 0000000..ccb6f8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.d new file mode 100644 index 0000000..694ee83 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o new file mode 100644 index 0000000..6369054 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swiftdeps new file mode 100644 index 0000000..0dbd303 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.d new file mode 100644 index 0000000..6423592 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o new file mode 100644 index 0000000..531942c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swiftdeps new file mode 100644 index 0000000..9cc4712 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.d new file mode 100644 index 0000000..ef74dba --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o new file mode 100644 index 0000000..cbf92ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swiftdeps new file mode 100644 index 0000000..f64fd9a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.d new file mode 100644 index 0000000..48048df --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.d @@ -0,0 +1,4 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftdoc : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftsourceinfo : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemo.emit-module.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.d new file mode 100644 index 0000000..73a909e --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/simd.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/os.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/os.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o new file mode 100644 index 0000000..4e497ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swiftdeps new file mode 100644 index 0000000..172ff50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h new file mode 100644 index 0000000..9c39b5b --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h @@ -0,0 +1,376 @@ +// Generated by Apple Swift version 6.3.1 effective-5.10 (swiftlang-6.3.1.1.2 clang-2100.0.123.102) +#ifndef XUQMDEMO_SWIFT_H +#define XUQMDEMO_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif // defined(__OBJC__) +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else +#include +#include +#include +#include +#endif +#if defined(__cplusplus) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#pragma clang diagnostic pop +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef unsigned char char8_t; +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif +#endif +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif +#endif +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif +#endif +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif +#endif +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif +#endif +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif +#endif +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +# else +# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM_TAG) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM_TAG enum +# else +# define SWIFT_ENUM_TAG +# endif +#endif +#if !defined(SWIFT_ENUM_FWD_DECL) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; +# else +# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_AVAILABILITY_DOMAIN) +# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if !__has_feature(nullability) +# define _Nonnull +# define _Nullable +# define _Null_unspecified +#elif !defined(__OBJC__) +# pragma clang diagnostic ignored "-Wnullability-extension" +#endif +#if !__has_feature(nullability_nullable_result) +# define _Nullable_result _Nullable +#endif +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="XuqmDemo",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__cplusplus) +extern "C" { +#endif + +#if defined(__cplusplus) +} // extern "C" +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +#endif + +#endif // defined(__OBJC__) +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="XuqmDemo",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +#endif // defined(__OBJC__) +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#if defined(__cplusplus) +#endif +#pragma clang diagnostic pop +#endif diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/module.modulemap b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/module.modulemap new file mode 100644 index 0000000..56e2d13 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/module.modulemap @@ -0,0 +1,3 @@ +module XuqmDemo { + header "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h" +} diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json new file mode 100644 index 0000000..8874094 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json @@ -0,0 +1,75 @@ +{ + "": { + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/primary.swiftdeps" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.dia" + } +} diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/primary.priors b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/primary.priors new file mode 100644 index 0000000..02e5ca1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/primary.priors differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources new file mode 100644 index 0000000..cf83682 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources @@ -0,0 +1,10 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.d new file mode 100644 index 0000000..b9ea4fa --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o new file mode 100644 index 0000000..c5fd25e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swiftdeps new file mode 100644 index 0000000..05672bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.d new file mode 100644 index 0000000..95cccf4 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.dia new file mode 100644 index 0000000..7cff37a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o new file mode 100644 index 0000000..cb23826 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swiftdeps new file mode 100644 index 0000000..e374f28 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.d new file mode 100644 index 0000000..976364e --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.dia new file mode 100644 index 0000000..e30ef3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o new file mode 100644 index 0000000..cc8d5be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swiftdeps new file mode 100644 index 0000000..f0af677 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.d new file mode 100644 index 0000000..63921e5 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o new file mode 100644 index 0000000..565110c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swiftdeps new file mode 100644 index 0000000..6c243bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.d new file mode 100644 index 0000000..91a2693 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.dia new file mode 100644 index 0000000..62f880b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o new file mode 100644 index 0000000..4543dce Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swiftdeps new file mode 100644 index 0000000..8937455 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.d new file mode 100644 index 0000000..047cecd --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o new file mode 100644 index 0000000..cec4f3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swiftdeps new file mode 100644 index 0000000..d6a65b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.d new file mode 100644 index 0000000..2731fb4 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o new file mode 100644 index 0000000..b3abf64 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swiftdeps new file mode 100644 index 0000000..8689daf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.d new file mode 100644 index 0000000..98cbbc4 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o new file mode 100644 index 0000000..849e674 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swiftdeps new file mode 100644 index 0000000..4bde0d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.d new file mode 100644 index 0000000..e630d04 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.d @@ -0,0 +1 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.dia new file mode 100644 index 0000000..093d351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.d b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.d new file mode 100644 index 0000000..6abb2ba --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.d @@ -0,0 +1,4 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftdoc : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftsourceinfo : /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.dia b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.dia new file mode 100644 index 0000000..802aeb3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.emit-module.dia differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o new file mode 100644 index 0000000..8904f67 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swiftdeps b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swiftdeps new file mode 100644 index 0000000..8b9f8f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swiftdeps differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h new file mode 100644 index 0000000..7eea37d --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h @@ -0,0 +1,408 @@ +// Generated by Apple Swift version 6.3.1 effective-5.10 (swiftlang-6.3.1.1.2 clang-2100.0.123.102) +#ifndef XUQMSDK_SWIFT_H +#define XUQMSDK_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif // defined(__OBJC__) +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else +#include +#include +#include +#include +#endif +#if defined(__cplusplus) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#pragma clang diagnostic pop +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef unsigned char char8_t; +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif +#endif +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif +#endif +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif +#endif +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif +#endif +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif +#endif +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif +#endif +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +# else +# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM_TAG) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM_TAG enum +# else +# define SWIFT_ENUM_TAG +# endif +#endif +#if !defined(SWIFT_ENUM_FWD_DECL) +# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) +# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; +# else +# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_AVAILABILITY_DOMAIN) +# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if !__has_feature(nullability) +# define _Nonnull +# define _Nullable +# define _Null_unspecified +#elif !defined(__OBJC__) +# pragma clang diagnostic ignored "-Wnullability-extension" +#endif +#if !__has_feature(nullability_nullable_result) +# define _Nullable_result _Nullable +#endif +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="XuqmSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__cplusplus) +extern "C" { +#endif + +#if defined(__cplusplus) +} // extern "C" +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +@import UserNotifications; +#endif + +#endif // defined(__OBJC__) +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="XuqmSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +@class NSURLSession; +@class NSURLSessionWebSocketTask; +@class NSString; +@class NSData; +SWIFT_CLASS("_TtC7XuqmSDK8ImClient") +@interface ImClient : NSObject +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didOpenWithProtocol:(NSString * _Nullable)protocol; +- (void)URLSession:(NSURLSession * _Nonnull)session webSocketTask:(NSURLSessionWebSocketTask * _Nonnull)webSocketTask didCloseWithCode:(NSURLSessionWebSocketCloseCode)closeCode reason:(NSData * _Nullable)reason; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class UNUserNotificationCenter; +@class UNNotification; +@class UNNotificationResponse; +SWIFT_CLASS("_TtC7XuqmSDK7PushSDK") +@interface PushSDK : NSObject +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler; +- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; +@end + +SWIFT_CLASS("_TtC7XuqmSDK7XuqmSDK") +@interface XuqmSDK : NSObject +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +#endif // defined(__OBJC__) +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#if defined(__cplusplus) +#endif +#pragma clang diagnostic pop +#endif diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/module.modulemap b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/module.modulemap new file mode 100644 index 0000000..2a17b08 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/module.modulemap @@ -0,0 +1,3 @@ +module XuqmSDK { + header "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h" +} diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json new file mode 100644 index 0000000..8e57a1d --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json @@ -0,0 +1,68 @@ +{ + "": { + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/primary.swiftdeps" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.dia" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift": { + "dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.d", + "object": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o", + "swiftmodule": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK~partial.swiftmodule", + "swift-dependencies": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swiftdeps", + "diagnostics": "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.dia" + } +} diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/primary.priors b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/primary.priors new file mode 100644 index 0000000..ccf3e58 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/primary.priors differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources new file mode 100644 index 0000000..9ff47e4 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources @@ -0,0 +1,9 @@ +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift +/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/description.json b/XuqmDemo/.build/arm64-apple-macosx/debug/description.json new file mode 100644 index 0000000..ca10411 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/description.json @@ -0,0 +1,654 @@ +{ + "builtTestProducts" : [ + + ], + "copyCommands" : { + + }, + "explicitTargetDependencyImportCheckingMode" : { + "none" : { + + } + }, + "generatedSourceTargetSet" : [ + + ], + "pluginDescriptions" : [ + + ], + "swiftCommands" : { + "C.XuqmDemo-arm64-apple-macosx-debug.module" : { + "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "fileList" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources", + "importPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "inputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + } + ], + "isLibrary" : true, + "moduleName" : "XuqmDemo", + "moduleOutputPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule", + "objects" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o" + ], + "otherArguments" : [ + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h", + "-swift-version", + "5", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmdemo" + ], + "outputFileMapPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json", + "outputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule" + } + ], + "prepareForIndexing" : false, + "sources" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + ], + "tempsPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build", + "wholeModuleOptimization" : false + }, + "C.XuqmSDK-arm64-apple-macosx-debug.module" : { + "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "fileList" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources", + "importPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "inputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + } + ], + "isLibrary" : true, + "moduleName" : "XuqmSDK", + "moduleOutputPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule", + "objects" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o" + ], + "otherArguments" : [ + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h", + "-swift-version", + "5", + "-enable-experimental-feature", + "StrictConcurrency", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmgroup_iossdk" + ], + "outputFileMapPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json", + "outputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule" + } + ], + "prepareForIndexing" : false, + "sources" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + ], + "tempsPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build", + "wholeModuleOptimization" : false + } + }, + "swiftFrontendCommands" : { + + }, + "swiftTargetScanArgs" : { + "XuqmDemo" : [ + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "-module-name", + "XuqmDemo", + "-package-name", + "xuqmdemo", + "-c", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift", + "-I", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h", + "-swift-version", + "5", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmdemo", + "-driver-use-frontend-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + ], + "XuqmSDK" : [ + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "-module-name", + "XuqmSDK", + "-package-name", + "xuqmgroup_iossdk", + "-c", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift", + "-I", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h", + "-swift-version", + "5", + "-enable-experimental-feature", + "StrictConcurrency", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmgroup_iossdk", + "-driver-use-frontend-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + ] + }, + "targetDependencyMap" : { + "XuqmDemo" : [ + "XuqmSDK" + ], + "XuqmSDK" : [ + + ] + }, + "testDiscoveryCommands" : { + + }, + "testEntryPointCommands" : { + + }, + "traitConfiguration" : { + "default" : { + + } + }, + "writeCommands" : { + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" : { + "alwaysOutOfDate" : false, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" : { + "alwaysOutOfDate" : false, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { + "alwaysOutOfDate" : true, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + } + } +} \ No newline at end of file diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/00/MTL4BinaryFunction.h-3CIGL2EEF0200 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/00/MTL4BinaryFunction.h-3CIGL2EEF0200 new file mode 100644 index 0000000..28aa787 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/00/MTL4BinaryFunction.h-3CIGL2EEF0200 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/CIKernel.h-2K5SWZKWCW801 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/CIKernel.h-2K5SWZKWCW801 new file mode 100644 index 0000000..bb68554 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/CIKernel.h-2K5SWZKWCW801 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/MTLRenderPipeline.h-31M1JRYH1HV01 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/MTLRenderPipeline.h-31M1JRYH1HV01 new file mode 100644 index 0000000..3328808 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/MTLRenderPipeline.h-31M1JRYH1HV01 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 new file mode 100644 index 0000000..d8de0d0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/CIColor.h-1DD7NS8KGB703 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/CIColor.h-1DD7NS8KGB703 new file mode 100644 index 0000000..c380fc1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/CIColor.h-1DD7NS8KGB703 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 new file mode 100644 index 0000000..a3a9228 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 new file mode 100644 index 0000000..332cecc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/04/CGPDFContext.h-1A1Z6E8EMQJ04 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/04/CGPDFContext.h-1A1Z6E8EMQJ04 new file mode 100644 index 0000000..5c6a51a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/04/CGPDFContext.h-1A1Z6E8EMQJ04 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 new file mode 100644 index 0000000..8ab5d97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 new file mode 100644 index 0000000..3f7f1f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/06/ChatView.swift-1REXICQ6TPD06 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/06/ChatView.swift-1REXICQ6TPD06 new file mode 100644 index 0000000..d8dba65 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/06/ChatView.swift-1REXICQ6TPD06 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 new file mode 100644 index 0000000..4ba51ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/ATSUnicodeGlyphs.h-U399UXZWX70A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/ATSUnicodeGlyphs.h-U399UXZWX70A new file mode 100644 index 0000000..82ffc4e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/ATSUnicodeGlyphs.h-U399UXZWX70A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A new file mode 100644 index 0000000..9dc6451 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B new file mode 100644 index 0000000..de0d748 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C new file mode 100644 index 0000000..2d7bd3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C new file mode 100644 index 0000000..1c187c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D new file mode 100644 index 0000000..f552bbf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F new file mode 100644 index 0000000..9784784 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSMenuItemBadge.h-3KP134ACSWS0F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSMenuItemBadge.h-3KP134ACSWS0F new file mode 100644 index 0000000..f315c99 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSMenuItemBadge.h-3KP134ACSWS0F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSTableCellView.h-2PZ22C0Q8I30F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSTableCellView.h-2PZ22C0Q8I30F new file mode 100644 index 0000000..1ac18a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/NSTableCellView.h-2PZ22C0Q8I30F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/SPPoint3D.h-2A0QAPP7KG70G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/SPPoint3D.h-2A0QAPP7KG70G new file mode 100644 index 0000000..9859032 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/SPPoint3D.h-2A0QAPP7KG70G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G new file mode 100644 index 0000000..8c39ec2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0H/CGWindow.h-10015XTACS90H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0H/CGWindow.h-10015XTACS90H new file mode 100644 index 0000000..de28def Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0H/CGWindow.h-10015XTACS90H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/CAShapeLayer.h-37BI6H3H1MR0I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/CAShapeLayer.h-37BI6H3H1MR0I new file mode 100644 index 0000000..944f26e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/CAShapeLayer.h-37BI6H3H1MR0I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I new file mode 100644 index 0000000..4131c00 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I new file mode 100644 index 0000000..ba2a57d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0J/NSBatchDeleteRequest.h-3Q3KRK1H5870J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0J/NSBatchDeleteRequest.h-3Q3KRK1H5870J new file mode 100644 index 0000000..3d596f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0J/NSBatchDeleteRequest.h-3Q3KRK1H5870J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/AXValueConstants.h-3LN0A3W1Z270K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/AXValueConstants.h-3LN0A3W1Z270K new file mode 100644 index 0000000..e86fbd9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/AXValueConstants.h-3LN0A3W1Z270K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K new file mode 100644 index 0000000..472d29d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L new file mode 100644 index 0000000..3865ab3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L new file mode 100644 index 0000000..7d87af8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/CGPattern.h-NUQU8WNI1C0M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/CGPattern.h-NUQU8WNI1C0M new file mode 100644 index 0000000..8c326de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/CGPattern.h-NUQU8WNI1C0M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSSpeechSynthesizer.h-HLRDYG6EZN0M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSSpeechSynthesizer.h-HLRDYG6EZN0M new file mode 100644 index 0000000..70ee867 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSSpeechSynthesizer.h-HLRDYG6EZN0M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSTableRowView.h-1F5OG99VIDO0M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSTableRowView.h-1F5OG99VIDO0M new file mode 100644 index 0000000..198d5d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/NSTableRowView.h-1F5OG99VIDO0M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M new file mode 100644 index 0000000..c659b9c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0O/NSSegmentedCell.h-P4Z0ZXN0PM0O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0O/NSSegmentedCell.h-P4Z0ZXN0PM0O new file mode 100644 index 0000000..8aece9f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0O/NSSegmentedCell.h-P4Z0ZXN0PM0O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P new file mode 100644 index 0000000..776035c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/CGDataConsumer.h-1794I0XRCWH0Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/CGDataConsumer.h-1794I0XRCWH0Q new file mode 100644 index 0000000..ee1bd44 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/CGDataConsumer.h-1794I0XRCWH0Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q new file mode 100644 index 0000000..2ccb007 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R new file mode 100644 index 0000000..0988fed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/NSTextElement.h-17XRIVCF8AV0S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/NSTextElement.h-17XRIVCF8AV0S new file mode 100644 index 0000000..4eb4dc6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/NSTextElement.h-17XRIVCF8AV0S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S new file mode 100644 index 0000000..70eaab4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/MTLLinkedFunctions.h-1L1OHT94HG60V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/MTLLinkedFunctions.h-1L1OHT94HG60V new file mode 100644 index 0000000..e2ca696 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/MTLLinkedFunctions.h-1L1OHT94HG60V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V new file mode 100644 index 0000000..f142839 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSViewController.h-QP7YOURQPZ0V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSViewController.h-QP7YOURQPZ0V new file mode 100644 index 0000000..0e84a07 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSViewController.h-QP7YOURQPZ0V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W new file mode 100644 index 0000000..3fc3c57 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X new file mode 100644 index 0000000..d92858e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X new file mode 100644 index 0000000..65fbaee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z new file mode 100644 index 0000000..b015911 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 new file mode 100644 index 0000000..fc81374 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 new file mode 100644 index 0000000..48d8ee3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 new file mode 100644 index 0000000..5674743 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 new file mode 100644 index 0000000..6e84472 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 new file mode 100644 index 0000000..e3acd29 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 new file mode 100644 index 0000000..f793c0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 new file mode 100644 index 0000000..87575cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSDragging.h-PMFW6NZAKI12 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSDragging.h-PMFW6NZAKI12 new file mode 100644 index 0000000..bbe2fe0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSDragging.h-PMFW6NZAKI12 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 new file mode 100644 index 0000000..7a74614 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 new file mode 100644 index 0000000..2fb6304 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 new file mode 100644 index 0000000..66750c4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 new file mode 100644 index 0000000..e76046c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 new file mode 100644 index 0000000..f605b23 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/NSUserInterfaceLayout.h-29V3VKOFA6Y16 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/NSUserInterfaceLayout.h-29V3VKOFA6Y16 new file mode 100644 index 0000000..6485171 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/NSUserInterfaceLayout.h-29V3VKOFA6Y16 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/vector_types.h-3A59RLTA1HB16 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/vector_types.h-3A59RLTA1HB16 new file mode 100644 index 0000000..9dfefe9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/16/vector_types.h-3A59RLTA1HB16 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 new file mode 100644 index 0000000..beb3eaa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSAccessibilityColor.h-19CZME6KR2D18 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSAccessibilityColor.h-19CZME6KR2D18 new file mode 100644 index 0000000..89a31f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSAccessibilityColor.h-19CZME6KR2D18 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSDocumentScripting.h-1QX67AAIW318 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSDocumentScripting.h-1QX67AAIW318 new file mode 100644 index 0000000..27a5b6b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSDocumentScripting.h-1QX67AAIW318 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSTextRange.h-2OCEBUWNN0618 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSTextRange.h-2OCEBUWNN0618 new file mode 100644 index 0000000..14489ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/NSTextRange.h-2OCEBUWNN0618 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 new file mode 100644 index 0000000..c8fb1a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 new file mode 100644 index 0000000..92d491d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 new file mode 100644 index 0000000..9cedb84 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 new file mode 100644 index 0000000..9ef1b4f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 new file mode 100644 index 0000000..2fa39fd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1A/MTLFunctionLog.h-22TN9B858DE1A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1A/MTLFunctionLog.h-22TN9B858DE1A new file mode 100644 index 0000000..9619d4e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1A/MTLFunctionLog.h-22TN9B858DE1A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B new file mode 100644 index 0000000..d63482d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B new file mode 100644 index 0000000..f913215 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/CGError.h-24RWVAFMYHI1C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/CGError.h-24RWVAFMYHI1C new file mode 100644 index 0000000..875ad41 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/CGError.h-24RWVAFMYHI1C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C new file mode 100644 index 0000000..69ceaf3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/common.h-T9QV8ONS941C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/common.h-T9QV8ONS941C new file mode 100644 index 0000000..a3b309d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/common.h-T9QV8ONS941C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1D/CVBuffer.h-1JK3KDN5PPR1D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1D/CVBuffer.h-1JK3KDN5PPR1D new file mode 100644 index 0000000..f931edc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1D/CVBuffer.h-1JK3KDN5PPR1D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/MTLPipeline.h-31JYUZQUJRQ1E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/MTLPipeline.h-31JYUZQUJRQ1E new file mode 100644 index 0000000..3bbe51b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/MTLPipeline.h-31JYUZQUJRQ1E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/NSPickerTouchBarItem.h-PI0MQ4YE81E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/NSPickerTouchBarItem.h-PI0MQ4YE81E new file mode 100644 index 0000000..6f11e06 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1E/NSPickerTouchBarItem.h-PI0MQ4YE81E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F new file mode 100644 index 0000000..c0704f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I new file mode 100644 index 0000000..ecde0c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I new file mode 100644 index 0000000..807c71f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I new file mode 100644 index 0000000..74b5449 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I new file mode 100644 index 0000000..b241d51 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I new file mode 100644 index 0000000..ae9b5e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J new file mode 100644 index 0000000..315f757 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K new file mode 100644 index 0000000..25f5b8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1L/MTLFunctionHandle.h-TSKUXCQ9XZ1L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1L/MTLFunctionHandle.h-TSKUXCQ9XZ1L new file mode 100644 index 0000000..de73819 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1L/MTLFunctionHandle.h-TSKUXCQ9XZ1L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/MTLHeap.h-2TDC7W2SMG1M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/MTLHeap.h-2TDC7W2SMG1M new file mode 100644 index 0000000..2b4c995 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/MTLHeap.h-2TDC7W2SMG1M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/NSOpenGL.h-TCYOL4OCDT1M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/NSOpenGL.h-TCYOL4OCDT1M new file mode 100644 index 0000000..ef0e8f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1M/NSOpenGL.h-TCYOL4OCDT1M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N new file mode 100644 index 0000000..2832534 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N new file mode 100644 index 0000000..db107cb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1O/IOSurfaceRef.h-2DR48QNGBGB1O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1O/IOSurfaceRef.h-2DR48QNGBGB1O new file mode 100644 index 0000000..746d4b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1O/IOSurfaceRef.h-2DR48QNGBGB1O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1P/NSPersistentHistoryChange.h-NVQJ8T5FN21P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1P/NSPersistentHistoryChange.h-NVQJ8T5FN21P new file mode 100644 index 0000000..3dc3bed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1P/NSPersistentHistoryChange.h-NVQJ8T5FN21P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q new file mode 100644 index 0000000..e2b8122 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R new file mode 100644 index 0000000..4315342 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/math.h-3K6DW5GNH7O1R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/math.h-3K6DW5GNH7O1R new file mode 100644 index 0000000..e60dfa2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/math.h-3K6DW5GNH7O1R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1S/CATransform3D.h-2Q9SZTIKL241S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1S/CATransform3D.h-2Q9SZTIKL241S new file mode 100644 index 0000000..3d4daa8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1S/CATransform3D.h-2Q9SZTIKL241S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1T/SPSphericalCoordinates3D.h-2A5B1QNRBHE1T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1T/SPSphericalCoordinates3D.h-2A5B1QNRBHE1T new file mode 100644 index 0000000..96efa67 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1T/SPSphericalCoordinates3D.h-2A5B1QNRBHE1T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1V/mach_voucher_types.h-1VXL8P5MK0U1V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1V/mach_voucher_types.h-1VXL8P5MK0U1V new file mode 100644 index 0000000..2e671c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1V/mach_voucher_types.h-1VXL8P5MK0U1V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W new file mode 100644 index 0000000..bf7e3e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X new file mode 100644 index 0000000..9f59f70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Y/NSGradient.h-2927TWDH5361Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Y/NSGradient.h-2927TWDH5361Y new file mode 100644 index 0000000..64db4d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Y/NSGradient.h-2927TWDH5361Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z new file mode 100644 index 0000000..ddbd47b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/20/NSTextSelectionNavigation.h-33EBYHA15M420 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/20/NSTextSelectionNavigation.h-33EBYHA15M420 new file mode 100644 index 0000000..09cd9b6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/20/NSTextSelectionNavigation.h-33EBYHA15M420 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/21/ColorSyncDeprecated.h-24J8RX2X6V521 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/21/ColorSyncDeprecated.h-24J8RX2X6V521 new file mode 100644 index 0000000..79f6597 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/21/ColorSyncDeprecated.h-24J8RX2X6V521 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 new file mode 100644 index 0000000..9a6aac6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/23/XuqmSDK.swift-PC2D5L7A1623 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/23/XuqmSDK.swift-PC2D5L7A1623 new file mode 100644 index 0000000..f2e6836 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/23/XuqmSDK.swift-PC2D5L7A1623 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 new file mode 100644 index 0000000..e3587a6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 new file mode 100644 index 0000000..15a8f88 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/25/NSUserInterfaceValidation.h-IW2Y24FIHK25 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/25/NSUserInterfaceValidation.h-IW2Y24FIHK25 new file mode 100644 index 0000000..afab199 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/25/NSUserInterfaceValidation.h-IW2Y24FIHK25 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/NSSplitViewItemAccessoryViewController.h-38FAJ2NLVW228 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/NSSplitViewItemAccessoryViewController.h-38FAJ2NLVW228 new file mode 100644 index 0000000..8dfadae Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/NSSplitViewItemAccessoryViewController.h-38FAJ2NLVW228 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 new file mode 100644 index 0000000..cad8dca Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 new file mode 100644 index 0000000..4fef39b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSRotationGestureRecognizer.h-3IU1ZL84FU429 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSRotationGestureRecognizer.h-3IU1ZL84FU429 new file mode 100644 index 0000000..9affaac Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSRotationGestureRecognizer.h-3IU1ZL84FU429 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 new file mode 100644 index 0000000..b05a151 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/NSBrowser.h-1I3VC2UFW3J2A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/NSBrowser.h-1I3VC2UFW3J2A new file mode 100644 index 0000000..733cbd0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/NSBrowser.h-1I3VC2UFW3J2A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A new file mode 100644 index 0000000..e8f7f6f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2B/UNNotificationAttachment.h-364663FT7NS2B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2B/UNNotificationAttachment.h-364663FT7NS2B new file mode 100644 index 0000000..27b6f5b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2B/UNNotificationAttachment.h-364663FT7NS2B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C new file mode 100644 index 0000000..09d6f89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/NSScrubberItemView.h-2L0KF5W8UF2D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/NSScrubberItemView.h-2L0KF5W8UF2D new file mode 100644 index 0000000..0475cfd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/NSScrubberItemView.h-2L0KF5W8UF2D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D new file mode 100644 index 0000000..41de67b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E new file mode 100644 index 0000000..8f5c69b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E new file mode 100644 index 0000000..9f42e38 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F new file mode 100644 index 0000000..cb48ea9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2G/AppKitDefines.h-2LYU6VDO6HM2G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2G/AppKitDefines.h-2LYU6VDO6HM2G new file mode 100644 index 0000000..fe506d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2G/AppKitDefines.h-2LYU6VDO6HM2G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/CARenderer.h-3OYWPDL6QG2H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/CARenderer.h-3OYWPDL6QG2H new file mode 100644 index 0000000..87e5871 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/CARenderer.h-3OYWPDL6QG2H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H new file mode 100644 index 0000000..1b90c98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I new file mode 100644 index 0000000..a9d8c35 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSSliderCell.h-3I6EN33SPZK2J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSSliderCell.h-3I6EN33SPZK2J new file mode 100644 index 0000000..8a9d022 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSSliderCell.h-3I6EN33SPZK2J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSTintProminence.h-1649I1WGL1M2J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSTintProminence.h-1649I1WGL1M2J new file mode 100644 index 0000000..57df6e4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2J/NSTintProminence.h-1649I1WGL1M2J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K new file mode 100644 index 0000000..154c8c4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O new file mode 100644 index 0000000..5c4dcf1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/CVOpenGLTextureCache.h-1QUG2EGZEME2P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/CVOpenGLTextureCache.h-1QUG2EGZEME2P new file mode 100644 index 0000000..e8cdfb2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/CVOpenGLTextureCache.h-1QUG2EGZEME2P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPDFInfo.h-39RQYPU99ZU2P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPDFInfo.h-39RQYPU99ZU2P new file mode 100644 index 0000000..08de418 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPDFInfo.h-39RQYPU99ZU2P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPathControlItem.h-365YS0S2S9I2P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPathControlItem.h-365YS0S2S9I2P new file mode 100644 index 0000000..aa76090 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2P/NSPathControlItem.h-365YS0S2S9I2P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q new file mode 100644 index 0000000..754ef57 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/NSPressureConfiguration.h-1OTHT821XVX2R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/NSPressureConfiguration.h-1OTHT821XVX2R new file mode 100644 index 0000000..c6e1b27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/NSPressureConfiguration.h-1OTHT821XVX2R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R new file mode 100644 index 0000000..e9d8da2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S new file mode 100644 index 0000000..4f8a13d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/NSSaveChangesRequest.h-3493VCX57TA2S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/NSSaveChangesRequest.h-3493VCX57TA2S new file mode 100644 index 0000000..0d5f9ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/NSSaveChangesRequest.h-3493VCX57TA2S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S new file mode 100644 index 0000000..727e0ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSBox.h-1HP2KJWLGHH2U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSBox.h-1HP2KJWLGHH2U new file mode 100644 index 0000000..171aee2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSBox.h-1HP2KJWLGHH2U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSStoryboardSegue.h-1QVZIUGRW0X2U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSStoryboardSegue.h-1QVZIUGRW0X2U new file mode 100644 index 0000000..3e274b9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/NSStoryboardSegue.h-1QVZIUGRW0X2U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U new file mode 100644 index 0000000..44436b4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U new file mode 100644 index 0000000..ef7fa0f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U new file mode 100644 index 0000000..ca6edfc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U new file mode 100644 index 0000000..1a9b16f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V new file mode 100644 index 0000000..52d7cd9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/MTLDataType.h-10WOSD6AGE32Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/MTLDataType.h-10WOSD6AGE32Z new file mode 100644 index 0000000..112a5ac Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/MTLDataType.h-10WOSD6AGE32Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z new file mode 100644 index 0000000..c9b3910 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z new file mode 100644 index 0000000..5a10275 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CATiledLayer.h-3J9U3924NDJ30 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CATiledLayer.h-3J9U3924NDJ30 new file mode 100644 index 0000000..41453f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CATiledLayer.h-3J9U3924NDJ30 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CoreDataErrors.h-2OH8TFWW2YO30 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CoreDataErrors.h-2OH8TFWW2YO30 new file mode 100644 index 0000000..7c97e42 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/CoreDataErrors.h-2OH8TFWW2YO30 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 new file mode 100644 index 0000000..fc00457 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/NSPrintPanel.h-1LMPDALXMTT31 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/NSPrintPanel.h-1LMPDALXMTT31 new file mode 100644 index 0000000..ba0a1c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/NSPrintPanel.h-1LMPDALXMTT31 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 new file mode 100644 index 0000000..3db7277 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 new file mode 100644 index 0000000..f93985c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/PMDefinitions.h-1NVW1ZS1NPE33 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/PMDefinitions.h-1NVW1ZS1NPE33 new file mode 100644 index 0000000..90bd968 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/PMDefinitions.h-1NVW1ZS1NPE33 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 new file mode 100644 index 0000000..e86e3e7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 new file mode 100644 index 0000000..3e9bd95 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/CVMetalBufferCache.h-1NGBP305GNJ35 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/CVMetalBufferCache.h-1NGBP305GNJ35 new file mode 100644 index 0000000..4582053 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/CVMetalBufferCache.h-1NGBP305GNJ35 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTL4LibraryDescriptor.h-GN1B8TGIYB35 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTL4LibraryDescriptor.h-GN1B8TGIYB35 new file mode 100644 index 0000000..abcc030 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTL4LibraryDescriptor.h-GN1B8TGIYB35 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTLDrawable.h-3FXOEXGGUU135 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTLDrawable.h-3FXOEXGGUU135 new file mode 100644 index 0000000..b43c93e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/MTLDrawable.h-3FXOEXGGUU135 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/NSPersistentCloudKitContainerOptions.h-22GLL4RR2CA35 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/NSPersistentCloudKitContainerOptions.h-22GLL4RR2CA35 new file mode 100644 index 0000000..f09d1e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/35/NSPersistentCloudKitContainerOptions.h-22GLL4RR2CA35 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 new file mode 100644 index 0000000..27edb3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 new file mode 100644 index 0000000..ba671da Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/NSPICTImageRep.h-MN3XHYS4W238 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/NSPICTImageRep.h-MN3XHYS4W238 new file mode 100644 index 0000000..a3c6ee8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/NSPICTImageRep.h-MN3XHYS4W238 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 new file mode 100644 index 0000000..59ddecf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 new file mode 100644 index 0000000..f7dc6fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/39/NSColorSpace.h-3T0UVVX4D6839 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/39/NSColorSpace.h-3T0UVVX4D6839 new file mode 100644 index 0000000..f8e7948 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/39/NSColorSpace.h-3T0UVVX4D6839 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSSpellProtocol.h-1OUK6QF37M03A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSSpellProtocol.h-1OUK6QF37M03A new file mode 100644 index 0000000..fd13098 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSSpellProtocol.h-1OUK6QF37M03A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSWindowTabGroup.h-GCR7A0N7GO3A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSWindowTabGroup.h-GCR7A0N7GO3A new file mode 100644 index 0000000..89f90c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3A/NSWindowTabGroup.h-GCR7A0N7GO3A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3B/NSPersistentStoreResult.h-JF9IXJBNRS3B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3B/NSPersistentStoreResult.h-JF9IXJBNRS3B new file mode 100644 index 0000000..ed7d1e9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3B/NSPersistentStoreResult.h-JF9IXJBNRS3B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/AXRequest.h-3I59MNLMV053C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/AXRequest.h-3I59MNLMV053C new file mode 100644 index 0000000..80408d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/AXRequest.h-3I59MNLMV053C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C new file mode 100644 index 0000000..ec48d2a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D new file mode 100644 index 0000000..2e22bd9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/CGDisplayStream.h-86O3618Q7Z3E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/CGDisplayStream.h-86O3618Q7Z3E new file mode 100644 index 0000000..89285a3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/CGDisplayStream.h-86O3618Q7Z3E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E new file mode 100644 index 0000000..7fe6d84 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/NSCollectionViewCompositionalLayout.h-1TPGR2FNR5P3E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/NSCollectionViewCompositionalLayout.h-1TPGR2FNR5P3E new file mode 100644 index 0000000..f63d4e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/NSCollectionViewCompositionalLayout.h-1TPGR2FNR5P3E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F new file mode 100644 index 0000000..6cc497e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F new file mode 100644 index 0000000..fb2179f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/adminutil.h-1RHHL67UU3W3F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/adminutil.h-1RHHL67UU3W3F new file mode 100644 index 0000000..a2cfb41 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/adminutil.h-1RHHL67UU3W3F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3G/transcode.h-BWP09KBKB33G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3G/transcode.h-BWP09KBKB33G new file mode 100644 index 0000000..16fa8ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3G/transcode.h-BWP09KBKB33G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H new file mode 100644 index 0000000..ffe050b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J new file mode 100644 index 0000000..727eae4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J new file mode 100644 index 0000000..bd5ba39 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K new file mode 100644 index 0000000..19d4de3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/NSColorPanel.h-2JXF8U26T3X3K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/NSColorPanel.h-2JXF8U26T3X3K new file mode 100644 index 0000000..db2c27a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/NSColorPanel.h-2JXF8U26T3X3K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/arm64e-apple-macos.swiftinterface-3PCHP2T43503K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/arm64e-apple-macos.swiftinterface-3PCHP2T43503K new file mode 100644 index 0000000..81101cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/arm64e-apple-macos.swiftinterface-3PCHP2T43503K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K new file mode 100644 index 0000000..d888ae2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K new file mode 100644 index 0000000..f002fd2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSPathControl.h-16DDM0S0OVF3L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSPathControl.h-16DDM0S0OVF3L new file mode 100644 index 0000000..73260c4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSPathControl.h-16DDM0S0OVF3L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L new file mode 100644 index 0000000..aec02a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSWritingToolsCoordinator.h-C0JNDPFL3W3L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSWritingToolsCoordinator.h-C0JNDPFL3W3L new file mode 100644 index 0000000..32718a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSWritingToolsCoordinator.h-C0JNDPFL3W3L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L new file mode 100644 index 0000000..9db0c86 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/AXUIElement.h-1B1AZ000V0P3M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/AXUIElement.h-1B1AZ000V0P3M new file mode 100644 index 0000000..ee6f59e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/AXUIElement.h-1B1AZ000V0P3M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/NSPropertyDescription.h-3S2PS83GC7Y3M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/NSPropertyDescription.h-3S2PS83GC7Y3M new file mode 100644 index 0000000..547a32c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/NSPropertyDescription.h-3S2PS83GC7Y3M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M new file mode 100644 index 0000000..5b387b6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3N/NSTextField.h-FQO0FRMALZ3N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3N/NSTextField.h-FQO0FRMALZ3N new file mode 100644 index 0000000..a68965e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3N/NSTextField.h-FQO0FRMALZ3N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O new file mode 100644 index 0000000..bb15053 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3P/AXSettings.h-3QC44GFANRF3P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3P/AXSettings.h-3QC44GFANRF3P new file mode 100644 index 0000000..0d33b44 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3P/AXSettings.h-3QC44GFANRF3P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/CIVector.h-2YBC65DFU1O3Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/CIVector.h-2YBC65DFU1O3Q new file mode 100644 index 0000000..918a60b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/CIVector.h-2YBC65DFU1O3Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q new file mode 100644 index 0000000..14232cb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q new file mode 100644 index 0000000..c35d2db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3R/NSTextTable.h-1KPCLVGD1I73R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3R/NSTextTable.h-1KPCLVGD1I73R new file mode 100644 index 0000000..782622b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3R/NSTextTable.h-1KPCLVGD1I73R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T new file mode 100644 index 0000000..cdfa612 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U new file mode 100644 index 0000000..572e574 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U new file mode 100644 index 0000000..9cc36aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V new file mode 100644 index 0000000..dc32420 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V new file mode 100644 index 0000000..e02c5c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/CTFontManager.h-2RB29L4E5383W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/CTFontManager.h-2RB29L4E5383W new file mode 100644 index 0000000..2ad1d2f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/CTFontManager.h-2RB29L4E5383W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W new file mode 100644 index 0000000..7a56612 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X new file mode 100644 index 0000000..50435d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X new file mode 100644 index 0000000..2ad8efe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/NSWindowRestoration.h-3BGQ3UX83XY3Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/NSWindowRestoration.h-3BGQ3UX83XY3Y new file mode 100644 index 0000000..7f1bdf0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/NSWindowRestoration.h-3BGQ3UX83XY3Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y new file mode 100644 index 0000000..3175c2b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/NSSearchFieldCell.h-Z41J50I0PU3Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/NSSearchFieldCell.h-Z41J50I0PU3Z new file mode 100644 index 0000000..965bf8c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/NSSearchFieldCell.h-Z41J50I0PU3Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/gliDispatch.h-3D3LEL0WD843Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/gliDispatch.h-3D3LEL0WD843Z new file mode 100644 index 0000000..6e6acf7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/gliDispatch.h-3D3LEL0WD843Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z new file mode 100644 index 0000000..c32a976 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 new file mode 100644 index 0000000..8746a3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 new file mode 100644 index 0000000..e302fee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 new file mode 100644 index 0000000..a019c73 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/43/NSFilePromiseReceiver.h-34NCZXLQ8KC43 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/43/NSFilePromiseReceiver.h-34NCZXLQ8KC43 new file mode 100644 index 0000000..044f641 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/43/NSFilePromiseReceiver.h-34NCZXLQ8KC43 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/CAMediaTimingFunction.h-13OK4264Z7744 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/CAMediaTimingFunction.h-13OK4264Z7744 new file mode 100644 index 0000000..614b64d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/CAMediaTimingFunction.h-13OK4264Z7744 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/UNNotificationRequest.h-25L386HZEMJ44 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/UNNotificationRequest.h-25L386HZEMJ44 new file mode 100644 index 0000000..4b44624 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/44/UNNotificationRequest.h-25L386HZEMJ44 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 new file mode 100644 index 0000000..ee3a337 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 new file mode 100644 index 0000000..c970b9f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/46/NSManagedObjectModel.h-H3RKGVRPZH46 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/46/NSManagedObjectModel.h-H3RKGVRPZH46 new file mode 100644 index 0000000..56f94d0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/46/NSManagedObjectModel.h-H3RKGVRPZH46 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 new file mode 100644 index 0000000..621ff54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 new file mode 100644 index 0000000..bf13889 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C new file mode 100644 index 0000000..69bc594 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C new file mode 100644 index 0000000..37376cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D new file mode 100644 index 0000000..959ae33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E new file mode 100644 index 0000000..3c7cf0a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F new file mode 100644 index 0000000..cfcce56 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I new file mode 100644 index 0000000..e9afed6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/CGLRenderers.h-38ZDYNIQ8ZA4K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/CGLRenderers.h-38ZDYNIQ8ZA4K new file mode 100644 index 0000000..b17ed2b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/CGLRenderers.h-38ZDYNIQ8ZA4K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K new file mode 100644 index 0000000..61024bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/CTGlyphInfo.h-1YLN6RC3A2I4N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/CTGlyphInfo.h-1YLN6RC3A2I4N new file mode 100644 index 0000000..eeb1fc9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/CTGlyphInfo.h-1YLN6RC3A2I4N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/MTLLibrary.h-3S2TVPECXWZ4N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/MTLLibrary.h-3S2TVPECXWZ4N new file mode 100644 index 0000000..09107e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4N/MTLLibrary.h-3S2TVPECXWZ4N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O new file mode 100644 index 0000000..e905484 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P new file mode 100644 index 0000000..84212f2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/NSInterfaceStyle.h-8FV0Q29ZB44P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/NSInterfaceStyle.h-8FV0Q29ZB44P new file mode 100644 index 0000000..bc5455b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/NSInterfaceStyle.h-8FV0Q29ZB44P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEXRToneMappingGamma.h-183SJ15QR9H4Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEXRToneMappingGamma.h-183SJ15QR9H4Q new file mode 100644 index 0000000..20dd882 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEXRToneMappingGamma.h-183SJ15QR9H4Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEventSource.h-34C8KEIB1RJ4Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEventSource.h-34C8KEIB1RJ4Q new file mode 100644 index 0000000..3bdc4b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/CGEventSource.h-34C8KEIB1RJ4Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q new file mode 100644 index 0000000..47386d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q new file mode 100644 index 0000000..711b99d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/NSFetchRequestExpression.h-7MMINY8OCG4S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/NSFetchRequestExpression.h-7MMINY8OCG4S new file mode 100644 index 0000000..4388cfe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/NSFetchRequestExpression.h-7MMINY8OCG4S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S new file mode 100644 index 0000000..82229a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S new file mode 100644 index 0000000..13ce346 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V new file mode 100644 index 0000000..1b0f1c3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V new file mode 100644 index 0000000..92afd17 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W new file mode 100644 index 0000000..bdf9135 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X new file mode 100644 index 0000000..e79f069 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X new file mode 100644 index 0000000..889c4a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Y/NSBitmapImageRep.h-24DETY8ZLAO4Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Y/NSBitmapImageRep.h-24DETY8ZLAO4Y new file mode 100644 index 0000000..de9ad37 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Y/NSBitmapImageRep.h-24DETY8ZLAO4Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Z/PushSDK.swift-3RFLPJVJSY54Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Z/PushSDK.swift-3RFLPJVJSY54Z new file mode 100644 index 0000000..5dd76af Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/4Z/PushSDK.swift-3RFLPJVJSY54Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/CTFontTraits.h-18FCSRBNSW850 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/CTFontTraits.h-18FCSRBNSW850 new file mode 100644 index 0000000..6690824 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/CTFontTraits.h-18FCSRBNSW850 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/MTL4AccelerationStructure.h-2YAL9OHC3HW50 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/MTL4AccelerationStructure.h-2YAL9OHC3HW50 new file mode 100644 index 0000000..e9a1715 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/50/MTL4AccelerationStructure.h-2YAL9OHC3HW50 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 new file mode 100644 index 0000000..f587a0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 new file mode 100644 index 0000000..9846567 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 new file mode 100644 index 0000000..62f1933 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 new file mode 100644 index 0000000..f783edd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 new file mode 100644 index 0000000..aacb5cb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/CVOpenGLBuffer.h-100VHWW6AB255 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/CVOpenGLBuffer.h-100VHWW6AB255 new file mode 100644 index 0000000..4221558 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/CVOpenGLBuffer.h-100VHWW6AB255 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/NSCandidateListTouchBarItem.h-FSM5MCEY8855 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/NSCandidateListTouchBarItem.h-FSM5MCEY8855 new file mode 100644 index 0000000..d3e761d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/55/NSCandidateListTouchBarItem.h-FSM5MCEY8855 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/56/NSColorList.h-NZRT644OGW56 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/56/NSColorList.h-NZRT644OGW56 new file mode 100644 index 0000000..dfe1c83 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/56/NSColorList.h-NZRT644OGW56 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/CVPixelFormatDescription.h-7IWPLOYL9Q58 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/CVPixelFormatDescription.h-7IWPLOYL9Q58 new file mode 100644 index 0000000..87c986b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/CVPixelFormatDescription.h-7IWPLOYL9Q58 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/MTL4CompilerTask.h-3JGDY7M7FZS58 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/MTL4CompilerTask.h-3JGDY7M7FZS58 new file mode 100644 index 0000000..9ad722a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/MTL4CompilerTask.h-3JGDY7M7FZS58 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/SPAffineTransform3DFloat.h-3BSKFBRP7TV58 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/SPAffineTransform3DFloat.h-3BSKFBRP7TV58 new file mode 100644 index 0000000..86dfed5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/58/SPAffineTransform3DFloat.h-3BSKFBRP7TV58 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 new file mode 100644 index 0000000..536822a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A new file mode 100644 index 0000000..1f3281a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B new file mode 100644 index 0000000..e64ebec Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B new file mode 100644 index 0000000..9553b1d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C new file mode 100644 index 0000000..92f14d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/ConversationViewModel.swift-1KZML9P6LVD5C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/ConversationViewModel.swift-1KZML9P6LVD5C new file mode 100644 index 0000000..1dbea91 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/ConversationViewModel.swift-1KZML9P6LVD5C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C new file mode 100644 index 0000000..a27dd7f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/workloop.h-1I7R82O51CZ5C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/workloop.h-1I7R82O51CZ5C new file mode 100644 index 0000000..c07c27a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/workloop.h-1I7R82O51CZ5C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/CIFilterGenerator.h-2KXZNNFQW235D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/CIFilterGenerator.h-2KXZNNFQW235D new file mode 100644 index 0000000..6553d97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/CIFilterGenerator.h-2KXZNNFQW235D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D new file mode 100644 index 0000000..d20239b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSGlyphGenerator.h-AM15IPZZW65E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSGlyphGenerator.h-AM15IPZZW65E new file mode 100644 index 0000000..e0100db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSGlyphGenerator.h-AM15IPZZW65E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSManagedObjectID.h-375XIROMIF75E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSManagedObjectID.h-375XIROMIF75E new file mode 100644 index 0000000..0c388b7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5E/NSManagedObjectID.h-375XIROMIF75E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G new file mode 100644 index 0000000..44a63bd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H new file mode 100644 index 0000000..5106054 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/MTL4RenderPipeline.h-396L4J66YUM5J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/MTL4RenderPipeline.h-396L4J66YUM5J new file mode 100644 index 0000000..6c4abcf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/MTL4RenderPipeline.h-396L4J66YUM5J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J new file mode 100644 index 0000000..4ae78ee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K new file mode 100644 index 0000000..8626382 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5L/raster.h-1P4F41RTIK45L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5L/raster.h-1P4F41RTIK45L new file mode 100644 index 0000000..09ffd34 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5L/raster.h-1P4F41RTIK45L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5M/DemoModels.swift-2KKYS3GZZ5K5M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5M/DemoModels.swift-2KKYS3GZZ5K5M new file mode 100644 index 0000000..722c9ec Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5M/DemoModels.swift-2KKYS3GZZ5K5M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N new file mode 100644 index 0000000..d77c105 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O new file mode 100644 index 0000000..a4a2f86 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P new file mode 100644 index 0000000..712e3f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q new file mode 100644 index 0000000..35310d5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSDatePicker.h-2006YK7GK4S5R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSDatePicker.h-2006YK7GK4S5R new file mode 100644 index 0000000..238f791 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSDatePicker.h-2006YK7GK4S5R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSPersistentHistoryToken.h-2UH4NRWNNEQ5R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSPersistentHistoryToken.h-2UH4NRWNNEQ5R new file mode 100644 index 0000000..fd14c5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/NSPersistentHistoryToken.h-2UH4NRWNNEQ5R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R new file mode 100644 index 0000000..a24a655 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R new file mode 100644 index 0000000..029a717 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S new file mode 100644 index 0000000..4992e48 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T new file mode 100644 index 0000000..82f2da3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSProgressIndicator.h-2JHUGK0V2J85T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSProgressIndicator.h-2JHUGK0V2J85T new file mode 100644 index 0000000..7d341f9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSProgressIndicator.h-2JHUGK0V2J85T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/MTL4ArgumentTable.h-1W7RM8083T75U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/MTL4ArgumentTable.h-1W7RM8083T75U new file mode 100644 index 0000000..1cc05c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/MTL4ArgumentTable.h-1W7RM8083T75U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U new file mode 100644 index 0000000..d405781 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/CVPixelBuffer.h-9XEG6Q043M5V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/CVPixelBuffer.h-9XEG6Q043M5V new file mode 100644 index 0000000..9585fdd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/CVPixelBuffer.h-9XEG6Q043M5V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/MTLTexture.h-36CMOR6R6SP5V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/MTLTexture.h-36CMOR6R6SP5V new file mode 100644 index 0000000..748ead2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/MTLTexture.h-36CMOR6R6SP5V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/NSNibConnector.h-NS5O3GKSTH5V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/NSNibConnector.h-NS5O3GKSTH5V new file mode 100644 index 0000000..b27590e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5V/NSNibConnector.h-NS5O3GKSTH5V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W new file mode 100644 index 0000000..8cb65e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/NSPopUpButton.h-27BI590F22A5Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/NSPopUpButton.h-27BI590F22A5Y new file mode 100644 index 0000000..568004d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/NSPopUpButton.h-27BI590F22A5Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y new file mode 100644 index 0000000..c0fc055 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y new file mode 100644 index 0000000..89a2019 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/NSToolbarItem.h-D19JVZ5KVO60 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/NSToolbarItem.h-D19JVZ5KVO60 new file mode 100644 index 0000000..2155c27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/NSToolbarItem.h-D19JVZ5KVO60 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 new file mode 100644 index 0000000..9b669ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 new file mode 100644 index 0000000..affc184 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/61/NSOpenGLView.h-27306TBT77461 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/61/NSOpenGLView.h-27306TBT77461 new file mode 100644 index 0000000..e9dee26 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/61/NSOpenGLView.h-27306TBT77461 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CAGradientLayer.h-39UKEOPWEWX62 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CAGradientLayer.h-39UKEOPWEWX62 new file mode 100644 index 0000000..66173e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CAGradientLayer.h-39UKEOPWEWX62 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CGGeometry.h-1OHPTPGK95F62 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CGGeometry.h-1OHPTPGK95F62 new file mode 100644 index 0000000..6b71e63 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/62/CGGeometry.h-1OHPTPGK95F62 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/ApiClient.swift-2Z3CSH012R563 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/ApiClient.swift-2Z3CSH012R563 new file mode 100644 index 0000000..071347e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/ApiClient.swift-2Z3CSH012R563 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 new file mode 100644 index 0000000..baeeb13 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 new file mode 100644 index 0000000..e4ddb61 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 new file mode 100644 index 0000000..7712a33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 new file mode 100644 index 0000000..fded31d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/66/NSSplitViewItem.h-36QYEFFS4JP66 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/66/NSSplitViewItem.h-36QYEFFS4JP66 new file mode 100644 index 0000000..d81ca55 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/66/NSSplitViewItem.h-36QYEFFS4JP66 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/CVPixelBufferIOSurface.h-1JVFNT1SRMN67 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/CVPixelBufferIOSurface.h-1JVFNT1SRMN67 new file mode 100644 index 0000000..98d4739 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/CVPixelBufferIOSurface.h-1JVFNT1SRMN67 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/Fonts.h-PYN7SPHGVP67 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/Fonts.h-PYN7SPHGVP67 new file mode 100644 index 0000000..4dc5271 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/Fonts.h-PYN7SPHGVP67 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 new file mode 100644 index 0000000..66a4bd5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSFontDescriptor.h-1CDHRK9GTJI67 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSFontDescriptor.h-1CDHRK9GTJI67 new file mode 100644 index 0000000..3aaa6f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSFontDescriptor.h-1CDHRK9GTJI67 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 new file mode 100644 index 0000000..c98dd27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/69/InternetConfig.h-1DD0VWG1JCY69 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/69/InternetConfig.h-1DD0VWG1JCY69 new file mode 100644 index 0000000..455d9f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/69/InternetConfig.h-1DD0VWG1JCY69 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A new file mode 100644 index 0000000..501f418 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSScroller.h-1XI18ZPF3RK6C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSScroller.h-1XI18ZPF3RK6C new file mode 100644 index 0000000..27cc8b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSScroller.h-1XI18ZPF3RK6C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSShadow.h-2YBW60CYY6Y6C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSShadow.h-2YBW60CYY6Y6C new file mode 100644 index 0000000..bf8cfe9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/NSShadow.h-2YBW60CYY6Y6C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C new file mode 100644 index 0000000..e61e005 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E new file mode 100644 index 0000000..9c05cfb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/NSTextLayoutManager.h-QM73SSI01G6E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/NSTextLayoutManager.h-QM73SSI01G6E new file mode 100644 index 0000000..6ab7b7a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/NSTextLayoutManager.h-QM73SSI01G6E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E new file mode 100644 index 0000000..783e2eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F new file mode 100644 index 0000000..d91a944 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/PMPrintingDialogExtensions.h-3GUCIM0T3I86G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/PMPrintingDialogExtensions.h-3GUCIM0T3I86G new file mode 100644 index 0000000..48ad895 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/PMPrintingDialogExtensions.h-3GUCIM0T3I86G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G new file mode 100644 index 0000000..13df552 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J new file mode 100644 index 0000000..1a7bef4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K new file mode 100644 index 0000000..b98969c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4MachineLearningPipeline.h-1F5EUZ47D2C6M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4MachineLearningPipeline.h-1F5EUZ47D2C6M new file mode 100644 index 0000000..322b4db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4MachineLearningPipeline.h-1F5EUZ47D2C6M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4RenderPass.h-1S6C85CHPIH6M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4RenderPass.h-1S6C85CHPIH6M new file mode 100644 index 0000000..ae2a949 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/MTL4RenderPass.h-1S6C85CHPIH6M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSFontManager.h-3B72L0GD3B76M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSFontManager.h-3B72L0GD3B76M new file mode 100644 index 0000000..ad827f2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSFontManager.h-3B72L0GD3B76M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSTintConfiguration.h-12E96XFEFU26M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSTintConfiguration.h-12E96XFEFU26M new file mode 100644 index 0000000..5cf36ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/NSTintConfiguration.h-12E96XFEFU26M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M new file mode 100644 index 0000000..785c16d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/MTLBlitPass.h-2GHMMA6LUY16N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/MTLBlitPass.h-2GHMMA6LUY16N new file mode 100644 index 0000000..16347b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/MTLBlitPass.h-2GHMMA6LUY16N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N new file mode 100644 index 0000000..9b7055a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O new file mode 100644 index 0000000..27789e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q new file mode 100644 index 0000000..a049a95 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q new file mode 100644 index 0000000..18346d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R new file mode 100644 index 0000000..862efef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/NSPersistentStore.h-3147QQ2M7J66S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/NSPersistentStore.h-3147QQ2M7J66S new file mode 100644 index 0000000..f25118e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/NSPersistentStore.h-3147QQ2M7J66S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S new file mode 100644 index 0000000..80b538a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V new file mode 100644 index 0000000..28ee5d0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W new file mode 100644 index 0000000..8f4ad95 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X new file mode 100644 index 0000000..9158251 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X new file mode 100644 index 0000000..0e845c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm_neon.h-16Y44C35F9K6X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm_neon.h-16Y44C35F9K6X new file mode 100644 index 0000000..7777116 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm_neon.h-16Y44C35F9K6X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X new file mode 100644 index 0000000..9265838 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSLevelIndicator.h-33LXWOFWC9D6Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSLevelIndicator.h-33LXWOFWC9D6Y new file mode 100644 index 0000000..12d572a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSLevelIndicator.h-33LXWOFWC9D6Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSPressGestureRecognizer.h-S6TY24O5ZX6Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSPressGestureRecognizer.h-S6TY24O5ZX6Y new file mode 100644 index 0000000..389d851 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSPressGestureRecognizer.h-S6TY24O5ZX6Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSScrubber.h-1PYP0BMALLE6Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSScrubber.h-1PYP0BMALLE6Y new file mode 100644 index 0000000..e98a9df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/NSScrubber.h-1PYP0BMALLE6Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/http.h-2S8244FU1RA6Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/http.h-2S8244FU1RA6Y new file mode 100644 index 0000000..cdc02da Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Y/http.h-2S8244FU1RA6Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z new file mode 100644 index 0000000..a24ceaf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/70/CGDataProvider.h-2PAP357O4LS70 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/70/CGDataProvider.h-2PAP357O4LS70 new file mode 100644 index 0000000..ae0c3fe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/70/CGDataProvider.h-2PAP357O4LS70 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/CGDirectPalette.h-1H5QF9U6T3M71 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/CGDirectPalette.h-1H5QF9U6T3M71 new file mode 100644 index 0000000..bd2d345 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/CGDirectPalette.h-1H5QF9U6T3M71 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/MTL4CommitFeedback.h-N1UPKAAP2F71 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/MTL4CommitFeedback.h-N1UPKAAP2F71 new file mode 100644 index 0000000..fa48404 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/MTL4CommitFeedback.h-N1UPKAAP2F71 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 new file mode 100644 index 0000000..0a9bd9a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/dir.h-HEWNFZN2YH71 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/dir.h-HEWNFZN2YH71 new file mode 100644 index 0000000..18391a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/71/dir.h-HEWNFZN2YH71 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/73/activity.h-2QPWNFG7LWS73 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/73/activity.h-2QPWNFG7LWS73 new file mode 100644 index 0000000..b750d6f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/73/activity.h-2QPWNFG7LWS73 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 new file mode 100644 index 0000000..31d87a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 new file mode 100644 index 0000000..50c4999 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSTextStorage.h-U8AM71S5K974 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSTextStorage.h-U8AM71S5K974 new file mode 100644 index 0000000..2bbbafd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSTextStorage.h-U8AM71S5K974 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 new file mode 100644 index 0000000..6832da8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 new file mode 100644 index 0000000..c45b3ef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 new file mode 100644 index 0000000..e2b8e02 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 new file mode 100644 index 0000000..6a8ee99 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 new file mode 100644 index 0000000..7c81948 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 new file mode 100644 index 0000000..05db54f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A new file mode 100644 index 0000000..7db2a09 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B new file mode 100644 index 0000000..3f40130 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E new file mode 100644 index 0000000..5e048c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7G/CoreImageDefines.h-EN3MRKQENU7G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7G/CoreImageDefines.h-EN3MRKQENU7G new file mode 100644 index 0000000..30eb1c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7G/CoreImageDefines.h-EN3MRKQENU7G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7H/NSAttributeDescription.h-2PDELLAA8EY7H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7H/NSAttributeDescription.h-2PDELLAA8EY7H new file mode 100644 index 0000000..de0ddf0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7H/NSAttributeDescription.h-2PDELLAA8EY7H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/NSQueryGenerationToken.h-1WDWDSQ1YPT7I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/NSQueryGenerationToken.h-1WDWDSQ1YPT7I new file mode 100644 index 0000000..569da13 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/NSQueryGenerationToken.h-1WDWDSQ1YPT7I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I new file mode 100644 index 0000000..449759a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J new file mode 100644 index 0000000..0d9a398 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M new file mode 100644 index 0000000..4f8cb00 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/NSTextAttachment.h-23Z4W9Z81PH7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/NSTextAttachment.h-23Z4W9Z81PH7N new file mode 100644 index 0000000..a01ebe8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/NSTextAttachment.h-23Z4W9Z81PH7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/SPRotationAxis3DFloat.h-3K2W5WYK4BJ7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/SPRotationAxis3DFloat.h-3K2W5WYK4BJ7N new file mode 100644 index 0000000..ef5095f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/SPRotationAxis3DFloat.h-3K2W5WYK4BJ7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N new file mode 100644 index 0000000..876f7b0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N new file mode 100644 index 0000000..329d02e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N new file mode 100644 index 0000000..8ee734e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N new file mode 100644 index 0000000..bbc3cd5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O new file mode 100644 index 0000000..52dbb67 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P new file mode 100644 index 0000000..573c4b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/NSEntityDescription.h-3LJYUE030VU7P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/NSEntityDescription.h-3LJYUE030VU7P new file mode 100644 index 0000000..e065f41 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/NSEntityDescription.h-3LJYUE030VU7P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P new file mode 100644 index 0000000..80b8762 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P new file mode 100644 index 0000000..365fcd7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q new file mode 100644 index 0000000..3bb906e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q new file mode 100644 index 0000000..4ba95d3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7R/StructuresFloat.h-31RU6URHFOH7R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7R/StructuresFloat.h-31RU6URHFOH7R new file mode 100644 index 0000000..3ea03cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7R/StructuresFloat.h-31RU6URHFOH7R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T new file mode 100644 index 0000000..9979885 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/Quickdraw.h-39BBHSZGMFO7T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/Quickdraw.h-39BBHSZGMFO7T new file mode 100644 index 0000000..db70175 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/Quickdraw.h-39BBHSZGMFO7T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7U/NSBezierPath.h-2NEO4XQZE8E7U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7U/NSBezierPath.h-2NEO4XQZE8E7U new file mode 100644 index 0000000..48a886f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7U/NSBezierPath.h-2NEO4XQZE8E7U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/CGImageAnimation.h-1CVBXXMXOOO7W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/CGImageAnimation.h-1CVBXXMXOOO7W new file mode 100644 index 0000000..41ac6d3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/CGImageAnimation.h-1CVBXXMXOOO7W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/NSCollectionViewGridLayout.h-VT6CYBON867W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/NSCollectionViewGridLayout.h-VT6CYBON867W new file mode 100644 index 0000000..5f0d223 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/NSCollectionViewGridLayout.h-VT6CYBON867W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/QDAvailability.h-24QJYH9H9RC7W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/QDAvailability.h-24QJYH9H9RC7W new file mode 100644 index 0000000..d413d2c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7W/QDAvailability.h-24QJYH9H9RC7W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X new file mode 100644 index 0000000..1cacce4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Z/MTLIntersectionFunctionTable.h-3EMRVZHW5TW7Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Z/MTLIntersectionFunctionTable.h-3EMRVZHW5TW7Z new file mode 100644 index 0000000..4261529 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/7Z/MTLIntersectionFunctionTable.h-3EMRVZHW5TW7Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/CIRAWFilter.h-228SUOHQI2B80 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/CIRAWFilter.h-228SUOHQI2B80 new file mode 100644 index 0000000..6e99feb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/CIRAWFilter.h-228SUOHQI2B80 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 new file mode 100644 index 0000000..87c0d82 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 new file mode 100644 index 0000000..c8d1f6e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 new file mode 100644 index 0000000..86079b7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 new file mode 100644 index 0000000..13e7a8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 new file mode 100644 index 0000000..b6ce923 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 new file mode 100644 index 0000000..eb679f2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 new file mode 100644 index 0000000..210f96b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 new file mode 100644 index 0000000..92877c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 new file mode 100644 index 0000000..d572318 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/SPScaledPose3D.h-8CYF45SQ1X86 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/SPScaledPose3D.h-8CYF45SQ1X86 new file mode 100644 index 0000000..36149e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/SPScaledPose3D.h-8CYF45SQ1X86 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 new file mode 100644 index 0000000..8bad9b8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/CGContext.h-2GOU88J9MT787 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/CGContext.h-2GOU88J9MT787 new file mode 100644 index 0000000..6d31e02 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/CGContext.h-2GOU88J9MT787 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/MTL4BufferRange.h-1YJPFV26W8I87 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/MTL4BufferRange.h-1YJPFV26W8I87 new file mode 100644 index 0000000..e3b78f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/MTL4BufferRange.h-1YJPFV26W8I87 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/NSExpressionDescription.h-34XBJ6OT21S87 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/NSExpressionDescription.h-34XBJ6OT21S87 new file mode 100644 index 0000000..0d9e6b6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/NSExpressionDescription.h-34XBJ6OT21S87 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 new file mode 100644 index 0000000..5916c8b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/MTL4PipelineDataSetSerializer.h-1GRUUKJI4SA88 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/MTL4PipelineDataSetSerializer.h-1GRUUKJI4SA88 new file mode 100644 index 0000000..1bdcbde Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/MTL4PipelineDataSetSerializer.h-1GRUUKJI4SA88 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 new file mode 100644 index 0000000..5d85a0e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 new file mode 100644 index 0000000..416befd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A new file mode 100644 index 0000000..c94ad0f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C new file mode 100644 index 0000000..d107423 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/Structures.h-2SO8M272GRZ8C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/Structures.h-2SO8M272GRZ8C new file mode 100644 index 0000000..d4c3d96 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/Structures.h-2SO8M272GRZ8C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C new file mode 100644 index 0000000..401c3f6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/XuqmDemoApp.swift-2Q26RHYIUIH8E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/XuqmDemoApp.swift-2Q26RHYIUIH8E new file mode 100644 index 0000000..44e01f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/XuqmDemoApp.swift-2Q26RHYIUIH8E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E new file mode 100644 index 0000000..895d6e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E new file mode 100644 index 0000000..c5e43eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E new file mode 100644 index 0000000..b038767 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F new file mode 100644 index 0000000..35b4812 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8G/XuqmDemoApp.swift-2JZ9BZ7FIAK8G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8G/XuqmDemoApp.swift-2JZ9BZ7FIAK8G new file mode 100644 index 0000000..012d380 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8G/XuqmDemoApp.swift-2JZ9BZ7FIAK8G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H new file mode 100644 index 0000000..8484583 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/MTL4Counters.h-3IHL8JRGRZU8I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/MTL4Counters.h-3IHL8JRGRZU8I new file mode 100644 index 0000000..8dc9206 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/MTL4Counters.h-3IHL8JRGRZU8I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I new file mode 100644 index 0000000..c7be029 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8J/AXBrailleMap.h-9LU1LMQFBX8J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8J/AXBrailleMap.h-9LU1LMQFBX8J new file mode 100644 index 0000000..f0c019a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8J/AXBrailleMap.h-9LU1LMQFBX8J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8K/MTLResourceViewPool.h-1XLVGRFKBNO8K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8K/MTLResourceViewPool.h-1XLVGRFKBNO8K new file mode 100644 index 0000000..b33c1b0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8K/MTLResourceViewPool.h-1XLVGRFKBNO8K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSCollectionViewFlowLayout.h-39AAVMPVSNB8L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSCollectionViewFlowLayout.h-39AAVMPVSNB8L new file mode 100644 index 0000000..58c9223 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSCollectionViewFlowLayout.h-39AAVMPVSNB8L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSStagedMigrationManager.h-3QKLQ7MECSM8L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSStagedMigrationManager.h-3QKLQ7MECSM8L new file mode 100644 index 0000000..1bb6060 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/NSStagedMigrationManager.h-3QKLQ7MECSM8L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/PMPrintAETypes.h-Q57JM05FDY8L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/PMPrintAETypes.h-Q57JM05FDY8L new file mode 100644 index 0000000..ac160c6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8L/PMPrintAETypes.h-Q57JM05FDY8L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N new file mode 100644 index 0000000..f7f26c3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSSharingServicePickerTouchBarItem.h-2HJOZ7CKC9V8N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSSharingServicePickerTouchBarItem.h-2HJOZ7CKC9V8N new file mode 100644 index 0000000..bf0dfda Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSSharingServicePickerTouchBarItem.h-2HJOZ7CKC9V8N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSGlyphInfo.h-RAPNTTL60A8Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSGlyphInfo.h-RAPNTTL60A8Q new file mode 100644 index 0000000..e8a09e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSGlyphInfo.h-RAPNTTL60A8Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q new file mode 100644 index 0000000..ebc4f3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/MessageComponent.h-1HY0E6QAOG08R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/MessageComponent.h-1HY0E6QAOG08R new file mode 100644 index 0000000..7e26b7f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/MessageComponent.h-1HY0E6QAOG08R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/NSStatusItem.h-JAV6H4C8E78R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/NSStatusItem.h-JAV6H4C8E78R new file mode 100644 index 0000000..37291f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/NSStatusItem.h-JAV6H4C8E78R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R new file mode 100644 index 0000000..5fcfa30 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R new file mode 100644 index 0000000..44803c8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/MTL4TileRenderPipeline.h-2YK7BBWELV18S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/MTL4TileRenderPipeline.h-2YK7BBWELV18S new file mode 100644 index 0000000..1540a52 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/MTL4TileRenderPipeline.h-2YK7BBWELV18S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/NSPageController.h-3L4B4IRAWE18S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/NSPageController.h-3L4B4IRAWE18S new file mode 100644 index 0000000..7e43cb4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/NSPageController.h-3L4B4IRAWE18S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S new file mode 100644 index 0000000..07dcd49 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S new file mode 100644 index 0000000..2bf1169 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S new file mode 100644 index 0000000..c6876b2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S new file mode 100644 index 0000000..e4b1b5e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/UNError.h-28FNLFIFU968V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/UNError.h-28FNLFIFU968V new file mode 100644 index 0000000..2448cbc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/UNError.h-28FNLFIFU968V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V new file mode 100644 index 0000000..0c328f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W new file mode 100644 index 0000000..54ebf16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y new file mode 100644 index 0000000..f2bc86d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/Position.h-38NF2FCN92I8Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/Position.h-38NF2FCN92I8Y new file mode 100644 index 0000000..04b8b57 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/Position.h-38NF2FCN92I8Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/90/arm_acle.h-2ZQM8D73QOT90 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/90/arm_acle.h-2ZQM8D73QOT90 new file mode 100644 index 0000000..0ce9058 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/90/arm_acle.h-2ZQM8D73QOT90 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 new file mode 100644 index 0000000..262ba18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 new file mode 100644 index 0000000..fad8d28 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 new file mode 100644 index 0000000..4ece05c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 new file mode 100644 index 0000000..6749e37 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/trace_base.h-NWW5W737KM94 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/trace_base.h-NWW5W737KM94 new file mode 100644 index 0000000..35d3b3a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/94/trace_base.h-NWW5W737KM94 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/NSCachedImageRep.h-34BMKATK64896 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/NSCachedImageRep.h-34BMKATK64896 new file mode 100644 index 0000000..00ede33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/NSCachedImageRep.h-34BMKATK64896 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 new file mode 100644 index 0000000..5861624 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/NSFontCollection.h-3CZFVQR8WKY97 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/NSFontCollection.h-3CZFVQR8WKY97 new file mode 100644 index 0000000..e7de99e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/NSFontCollection.h-3CZFVQR8WKY97 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 new file mode 100644 index 0000000..70fa602 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 new file mode 100644 index 0000000..b4dbd3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 new file mode 100644 index 0000000..9fe3fa1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 new file mode 100644 index 0000000..380db15 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 new file mode 100644 index 0000000..f9b4d06 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/NSInputServer.h-S5LY2WZVJ49A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/NSInputServer.h-S5LY2WZVJ49A new file mode 100644 index 0000000..91fd4cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/NSInputServer.h-S5LY2WZVJ49A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A new file mode 100644 index 0000000..5047eb6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/array.h-2TDB0XNVRGU9A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/array.h-2TDB0XNVRGU9A new file mode 100644 index 0000000..90876a9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/array.h-2TDB0XNVRGU9A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A new file mode 100644 index 0000000..22b3249 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E new file mode 100644 index 0000000..1eed699 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E new file mode 100644 index 0000000..f3f1059 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E new file mode 100644 index 0000000..8cf3264 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E new file mode 100644 index 0000000..86ea927 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E new file mode 100644 index 0000000..ad13c05 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G new file mode 100644 index 0000000..576be06 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSNibDeclarations.h-348ZNA86QV69G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSNibDeclarations.h-348ZNA86QV69G new file mode 100644 index 0000000..284df27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSNibDeclarations.h-348ZNA86QV69G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSStatusBar.h-2ZC05WBDKQ29G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSStatusBar.h-2ZC05WBDKQ29G new file mode 100644 index 0000000..ecea99e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSStatusBar.h-2ZC05WBDKQ29G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSTextFieldCell.h-3VDJ1CDVFWT9G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSTextFieldCell.h-3VDJ1CDVFWT9G new file mode 100644 index 0000000..81dabf3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/NSTextFieldCell.h-3VDJ1CDVFWT9G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H new file mode 100644 index 0000000..c209f8f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H new file mode 100644 index 0000000..f8e5d53 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I new file mode 100644 index 0000000..26ad779 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I new file mode 100644 index 0000000..0a6ee79 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J new file mode 100644 index 0000000..428d376 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/extern.h-3IZGZM2D07G9J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/extern.h-3IZGZM2D07G9J new file mode 100644 index 0000000..0f972d0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/extern.h-3IZGZM2D07G9J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K new file mode 100644 index 0000000..dbc2c54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/CGPDFContentStream.h-FLM8QTA3P69L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/CGPDFContentStream.h-FLM8QTA3P69L new file mode 100644 index 0000000..ae22c57 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/CGPDFContentStream.h-FLM8QTA3P69L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSLevelIndicatorCell.h-1AJ23TC9MDT9L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSLevelIndicatorCell.h-1AJ23TC9MDT9L new file mode 100644 index 0000000..bf1a9a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSLevelIndicatorCell.h-1AJ23TC9MDT9L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L new file mode 100644 index 0000000..3e070be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9M/MTLResource.h-2VX5DAI82V99M b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9M/MTLResource.h-2VX5DAI82V99M new file mode 100644 index 0000000..eb04a79 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9M/MTLResource.h-2VX5DAI82V99M differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N new file mode 100644 index 0000000..d66e284 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N new file mode 100644 index 0000000..54b874c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O new file mode 100644 index 0000000..c838be9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SPPose3D.h-80CWANWCM39P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SPPose3D.h-80CWANWCM39P new file mode 100644 index 0000000..a45c597 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SPPose3D.h-80CWANWCM39P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SpeechSynthesis.h-C717N304BC9P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SpeechSynthesis.h-C717N304BC9P new file mode 100644 index 0000000..439f8e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9P/SpeechSynthesis.h-C717N304BC9P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/NSPDFImageRep.h-31C8SPPYMUT9Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/NSPDFImageRep.h-31C8SPPYMUT9Q new file mode 100644 index 0000000..eee77f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/NSPDFImageRep.h-31C8SPPYMUT9Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/stdatomic.h-3APXXH54L719Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/stdatomic.h-3APXXH54L719Q new file mode 100644 index 0000000..c84e5cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Q/stdatomic.h-3APXXH54L719Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R new file mode 100644 index 0000000..f361f1b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R new file mode 100644 index 0000000..389e65a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/CAValueFunction.h-11JZ4P32IL9S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/CAValueFunction.h-11JZ4P32IL9S new file mode 100644 index 0000000..df9e77d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/CAValueFunction.h-11JZ4P32IL9S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S new file mode 100644 index 0000000..2658a1a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9U/PDEPluginInterface.h-3Q40DBFR97R9U b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9U/PDEPluginInterface.h-3Q40DBFR97R9U new file mode 100644 index 0000000..ec6b8d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9U/PDEPluginInterface.h-3Q40DBFR97R9U differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9W/NSClickGestureRecognizer.h-1WUUIA9F6U29W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9W/NSClickGestureRecognizer.h-1WUUIA9F6U29W new file mode 100644 index 0000000..62023b7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9W/NSClickGestureRecognizer.h-1WUUIA9F6U29W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y new file mode 100644 index 0000000..82ea224 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z new file mode 100644 index 0000000..60bc4a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSStepperCell.h-2UK73NY6R8G9Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSStepperCell.h-2UK73NY6R8G9Z new file mode 100644 index 0000000..8cc5e1c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSStepperCell.h-2UK73NY6R8G9Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z new file mode 100644 index 0000000..6091df7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z new file mode 100644 index 0000000..277e767 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 new file mode 100644 index 0000000..9bfdcee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MTLCommandQueue.h-BBJNP5I0T8A0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MTLCommandQueue.h-BBJNP5I0T8A0 new file mode 100644 index 0000000..2fba5d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MTLCommandQueue.h-BBJNP5I0T8A0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 new file mode 100644 index 0000000..7d9bcb4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/NSToolbar.h-G8PU6TLRIEA1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/NSToolbar.h-G8PU6TLRIEA1 new file mode 100644 index 0000000..3c25f12 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/NSToolbar.h-G8PU6TLRIEA1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 new file mode 100644 index 0000000..cb0241c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 new file mode 100644 index 0000000..e25aea0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/Entry.h-3HCUPLEKQIKA2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/Entry.h-3HCUPLEKQIKA2 new file mode 100644 index 0000000..da66c3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/Entry.h-3HCUPLEKQIKA2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 new file mode 100644 index 0000000..ddf97ef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 new file mode 100644 index 0000000..746b114 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 new file mode 100644 index 0000000..e9ee484 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 new file mode 100644 index 0000000..a0dc8aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/UTType.h-OVBGGXO2OMA3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/UTType.h-OVBGGXO2OMA3 new file mode 100644 index 0000000..75ac833 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/UTType.h-OVBGGXO2OMA3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A4/ColorSyncProfile.h-ZZP059R9XNA4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A4/ColorSyncProfile.h-ZZP059R9XNA4 new file mode 100644 index 0000000..e767b24 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A4/ColorSyncProfile.h-ZZP059R9XNA4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSMappingModel.h-1DC7GBBA1T6A5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSMappingModel.h-1DC7GBBA1T6A5 new file mode 100644 index 0000000..78ac496 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSMappingModel.h-1DC7GBBA1T6A5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSStepper.h-1Y7B63IJ2BMA5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSStepper.h-1Y7B63IJ2BMA5 new file mode 100644 index 0000000..df6e60a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A5/NSStepper.h-1Y7B63IJ2BMA5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A7/MTLTypes.h-IOKVZW97W9A7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A7/MTLTypes.h-IOKVZW97W9A7 new file mode 100644 index 0000000..1a7ab4f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A7/MTLTypes.h-IOKVZW97W9A7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A8/PMCore.h-274LKE40P7MA8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A8/PMCore.h-274LKE40P7MA8 new file mode 100644 index 0000000..5223ff7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/A8/PMCore.h-274LKE40P7MA8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AA/IOSurfaceBase.h-3LWRZA3MXCPAA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AA/IOSurfaceBase.h-3LWRZA3MXCPAA new file mode 100644 index 0000000..57d9782 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AA/IOSurfaceBase.h-3LWRZA3MXCPAA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB new file mode 100644 index 0000000..f6b2eb6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/SPRay3DFloat.h-1I7OXDOXZF9AB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/SPRay3DFloat.h-1I7OXDOXZF9AB new file mode 100644 index 0000000..39e506e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/SPRay3DFloat.h-1I7OXDOXZF9AB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/NSPersistentCloudKitContainerEvent.h-3G5SSI0RQZPAD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/NSPersistentCloudKitContainerEvent.h-3G5SSI0RQZPAD new file mode 100644 index 0000000..573bd3d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/NSPersistentCloudKitContainerEvent.h-3G5SSI0RQZPAD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AE/NSStoryboard.h-3SLLD0O435LAE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AE/NSStoryboard.h-3SLLD0O435LAE new file mode 100644 index 0000000..34c00a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AE/NSStoryboard.h-3SLLD0O435LAE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF new file mode 100644 index 0000000..5a519ac Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG new file mode 100644 index 0000000..a823a70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG new file mode 100644 index 0000000..14543cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG new file mode 100644 index 0000000..717c3b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ new file mode 100644 index 0000000..2e2e836 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SFNTTypes.h-22UOXX9L1ODAJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SFNTTypes.h-22UOXX9L1ODAJ new file mode 100644 index 0000000..cad7890 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SFNTTypes.h-22UOXX9L1ODAJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ new file mode 100644 index 0000000..c76c0a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/SPPoint3DFloat.h-313M8YTDT2IAL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/SPPoint3DFloat.h-313M8YTDT2IAL new file mode 100644 index 0000000..fb2192d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/SPPoint3DFloat.h-313M8YTDT2IAL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL new file mode 100644 index 0000000..343d386 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM new file mode 100644 index 0000000..78f5d23 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM new file mode 100644 index 0000000..dc78a0a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM new file mode 100644 index 0000000..84bc5cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AN/NSApplication.h-QD1MP3UQW1AN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AN/NSApplication.h-QD1MP3UQW1AN new file mode 100644 index 0000000..f969887 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AN/NSApplication.h-QD1MP3UQW1AN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/CAReplicatorLayer.h-28QECSY000XAO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/CAReplicatorLayer.h-28QECSY000XAO new file mode 100644 index 0000000..fa0ec4a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/CAReplicatorLayer.h-28QECSY000XAO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/IOSurfaceTypes.h-1261P1PLA51AP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/IOSurfaceTypes.h-1261P1PLA51AP new file mode 100644 index 0000000..d46091d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/IOSurfaceTypes.h-1261P1PLA51AP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP new file mode 100644 index 0000000..2c2a455 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ new file mode 100644 index 0000000..5393ad2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CTParagraphStyle.h-ST2SNE070DAQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CTParagraphStyle.h-ST2SNE070DAQ new file mode 100644 index 0000000..77c36a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CTParagraphStyle.h-ST2SNE070DAQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/NSWorkspace.h-39Q74D6E2EYAQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/NSWorkspace.h-39Q74D6E2EYAQ new file mode 100644 index 0000000..068c7db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/NSWorkspace.h-39Q74D6E2EYAQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ new file mode 100644 index 0000000..ab82173 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ new file mode 100644 index 0000000..4d2ac38 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT new file mode 100644 index 0000000..838c4be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT new file mode 100644 index 0000000..01a0389 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT new file mode 100644 index 0000000..d250f5b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT new file mode 100644 index 0000000..079634e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU new file mode 100644 index 0000000..3072fcc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/arm64e-apple-macos.swiftinterface-1KA7SQXECQBAU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/arm64e-apple-macos.swiftinterface-1KA7SQXECQBAU new file mode 100644 index 0000000..bf39797 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/arm64e-apple-macos.swiftinterface-1KA7SQXECQBAU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU new file mode 100644 index 0000000..f6e6108 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW new file mode 100644 index 0000000..3562423 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW new file mode 100644 index 0000000..d66edef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/NSString+UserNotifications.h-K79P3Y43A8AX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/NSString+UserNotifications.h-K79P3Y43A8AX new file mode 100644 index 0000000..c37bbaf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/NSString+UserNotifications.h-K79P3Y43A8AX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/UniversalAccess.h-41GB7KZQYIAX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/UniversalAccess.h-41GB7KZQYIAX new file mode 100644 index 0000000..7ef3aee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/UniversalAccess.h-41GB7KZQYIAX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX new file mode 100644 index 0000000..50dd6d3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX new file mode 100644 index 0000000..ee7d1cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/pwg.h-1SQKZJ5RAQDAX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/pwg.h-1SQKZJ5RAQDAX new file mode 100644 index 0000000..02d9e7f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/pwg.h-1SQKZJ5RAQDAX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY new file mode 100644 index 0000000..fa91362 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ new file mode 100644 index 0000000..ae2fbfe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ new file mode 100644 index 0000000..529c005 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B0/NSFont.h-3OYEF5H4FS9B0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B0/NSFont.h-3OYEF5H4FS9B0 new file mode 100644 index 0000000..bd6f32d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B0/NSFont.h-3OYEF5H4FS9B0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/NSManagedObjectModelReference.h-3QWK1S343LVB2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/NSManagedObjectModelReference.h-3QWK1S343LVB2 new file mode 100644 index 0000000..bcf1640 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/NSManagedObjectModelReference.h-3QWK1S343LVB2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 new file mode 100644 index 0000000..b0fed79 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 new file mode 100644 index 0000000..c08b2f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B3/CIFilterConstructor.h-1TN4B7PNK0NB3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B3/CIFilterConstructor.h-1TN4B7PNK0NB3 new file mode 100644 index 0000000..6276a95 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B3/CIFilterConstructor.h-1TN4B7PNK0NB3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 new file mode 100644 index 0000000..17d43a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 new file mode 100644 index 0000000..9803275 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B6/NSDiffableDataSource.h-3N8ILU8IWN1B6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B6/NSDiffableDataSource.h-3N8ILU8IWN1B6 new file mode 100644 index 0000000..ced6352 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B6/NSDiffableDataSource.h-3N8ILU8IWN1B6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B7/NSUserActivity.h-2M31DNN42EZB7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B7/NSUserActivity.h-2M31DNN42EZB7 new file mode 100644 index 0000000..91a0ca7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B7/NSUserActivity.h-2M31DNN42EZB7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/ATSTypes.h-2MG25MYL7G5B8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/ATSTypes.h-2MG25MYL7G5B8 new file mode 100644 index 0000000..180ba61 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/ATSTypes.h-2MG25MYL7G5B8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 new file mode 100644 index 0000000..7f5924b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 new file mode 100644 index 0000000..18b1c54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/NSTextFinder.h-310C5I1WT8ABA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/NSTextFinder.h-310C5I1WT8ABA new file mode 100644 index 0000000..89f77b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/NSTextFinder.h-310C5I1WT8ABA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA new file mode 100644 index 0000000..276b65c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/CARemoteLayerServer.h-2AM0MT5VZ6CBB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/CARemoteLayerServer.h-2AM0MT5VZ6CBB new file mode 100644 index 0000000..d6db42c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/CARemoteLayerServer.h-2AM0MT5VZ6CBB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB new file mode 100644 index 0000000..07f3f83 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB new file mode 100644 index 0000000..09633c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/NSFileWrapperExtensions.h-2SKTZ1JFOA9BC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/NSFileWrapperExtensions.h-2SKTZ1JFOA9BC new file mode 100644 index 0000000..544fb7e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/NSFileWrapperExtensions.h-2SKTZ1JFOA9BC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC new file mode 100644 index 0000000..c96ce93 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD new file mode 100644 index 0000000..316809e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/NSTextStorageScripting.h-3A3JKPDXGR0BD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/NSTextStorageScripting.h-3A3JKPDXGR0BD new file mode 100644 index 0000000..09dcabf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/NSTextStorageScripting.h-3A3JKPDXGR0BD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD new file mode 100644 index 0000000..5a9d7e1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD new file mode 100644 index 0000000..02de3fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE new file mode 100644 index 0000000..8fb64f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BF/CIFilterShape.h-36XG2ORAX7NBF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BF/CIFilterShape.h-36XG2ORAX7NBF new file mode 100644 index 0000000..1d85b90 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BF/CIFilterShape.h-36XG2ORAX7NBF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG new file mode 100644 index 0000000..754bbdc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSMenuToolbarItem.h-3S6JA0VSXNBH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSMenuToolbarItem.h-3S6JA0VSXNBH new file mode 100644 index 0000000..a7d84c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSMenuToolbarItem.h-3S6JA0VSXNBH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH new file mode 100644 index 0000000..1aa2aa5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH new file mode 100644 index 0000000..46c4a43 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/NSNibControlConnector.h-1MEX65B8CVEBJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/NSNibControlConnector.h-1MEX65B8CVEBJ new file mode 100644 index 0000000..84845af Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/NSNibControlConnector.h-1MEX65B8CVEBJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ new file mode 100644 index 0000000..bb27f4b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ new file mode 100644 index 0000000..f9bab7e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK new file mode 100644 index 0000000..c0db6bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/NSSound.h-3IKK5CEZKB1BL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/NSSound.h-3IKK5CEZKB1BL new file mode 100644 index 0000000..a584edb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/NSSound.h-3IKK5CEZKB1BL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/SPRect3D.h-8GMWJ1TS10BL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/SPRect3D.h-8GMWJ1TS10BL new file mode 100644 index 0000000..1fbd289 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/SPRect3D.h-8GMWJ1TS10BL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL new file mode 100644 index 0000000..9ef7f7c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL new file mode 100644 index 0000000..9b946c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BO/NSTouchBarItem.h-2V5XH0Q86WDBO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BO/NSTouchBarItem.h-2V5XH0Q86WDBO new file mode 100644 index 0000000..a4a4732 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BO/NSTouchBarItem.h-2V5XH0Q86WDBO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP new file mode 100644 index 0000000..50f0a18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/XuqmDemoApp.swift-1K3SWK5S8LTBQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/XuqmDemoApp.swift-1K3SWK5S8LTBQ new file mode 100644 index 0000000..66f2495 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/XuqmDemoApp.swift-1K3SWK5S8LTBQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ new file mode 100644 index 0000000..8151f91 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ new file mode 100644 index 0000000..074a126 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR new file mode 100644 index 0000000..462e4ba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/arm64e-apple-macos.swiftinterface-334ZH2O7142BR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/arm64e-apple-macos.swiftinterface-334ZH2O7142BR new file mode 100644 index 0000000..3f4a973 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/arm64e-apple-macos.swiftinterface-334ZH2O7142BR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/NSTextContent.h-XZR6DP6J9ABS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/NSTextContent.h-XZR6DP6J9ABS new file mode 100644 index 0000000..b70f437 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/NSTextContent.h-XZR6DP6J9ABS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS new file mode 100644 index 0000000..1f05727 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT new file mode 100644 index 0000000..4c7c78b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT new file mode 100644 index 0000000..894d506 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/NSScrollEdgeEffect.h-142UHL3KN28BV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/NSScrollEdgeEffect.h-142UHL3KN28BV new file mode 100644 index 0000000..fb449ca Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/NSScrollEdgeEffect.h-142UHL3KN28BV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV new file mode 100644 index 0000000..d23b640 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/UTTagClass.h-AJJRH3P4A8BX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/UTTagClass.h-AJJRH3P4A8BX new file mode 100644 index 0000000..72be37c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/UTTagClass.h-AJJRH3P4A8BX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX new file mode 100644 index 0000000..9adbb60 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY new file mode 100644 index 0000000..467ff86 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY new file mode 100644 index 0000000..e889031 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY new file mode 100644 index 0000000..e9baa43 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C1/ChatView.swift-3VUJV7V0H5DC1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C1/ChatView.swift-3VUJV7V0H5DC1 new file mode 100644 index 0000000..05a0637 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C1/ChatView.swift-3VUJV7V0H5DC1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 new file mode 100644 index 0000000..f0ae61d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/AXActionConstants.h-2GYIY456PLUC3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/AXActionConstants.h-2GYIY456PLUC3 new file mode 100644 index 0000000..faaeae2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/AXActionConstants.h-2GYIY456PLUC3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLDepthStencil.h-IYBT8SGFZJC3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLDepthStencil.h-IYBT8SGFZJC3 new file mode 100644 index 0000000..8db3d12 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLDepthStencil.h-IYBT8SGFZJC3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLTextureViewPool.h-BLSMH7ROMNC3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLTextureViewPool.h-BLSMH7ROMNC3 new file mode 100644 index 0000000..dd318fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C3/MTLTextureViewPool.h-BLSMH7ROMNC3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 new file mode 100644 index 0000000..7c9d232 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 new file mode 100644 index 0000000..ffa1f52 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 new file mode 100644 index 0000000..e8551d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 new file mode 100644 index 0000000..5e21b19 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 new file mode 100644 index 0000000..4f21474 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 new file mode 100644 index 0000000..06eee31 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/CGBitmapContext.h-1BIOTOGE4A6C7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/CGBitmapContext.h-1BIOTOGE4A6C7 new file mode 100644 index 0000000..bb39941 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/CGBitmapContext.h-1BIOTOGE4A6C7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 new file mode 100644 index 0000000..9f6eef0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 new file mode 100644 index 0000000..2c2afe3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CA/NSSymbolEffect.h-34WO3YMF13GCA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CA/NSSymbolEffect.h-34WO3YMF13GCA new file mode 100644 index 0000000..1ed5e29 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CA/NSSymbolEffect.h-34WO3YMF13GCA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB new file mode 100644 index 0000000..f4aa8bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB new file mode 100644 index 0000000..fabdbfd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC new file mode 100644 index 0000000..ba56bee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD new file mode 100644 index 0000000..5a67bda Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CE/NSFetchRequest.h-1DA6X6FAZF8CE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CE/NSFetchRequest.h-1DA6X6FAZF8CE new file mode 100644 index 0000000..9fc0919 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CE/NSFetchRequest.h-1DA6X6FAZF8CE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF new file mode 100644 index 0000000..7991a14 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/StructuresPackedDouble.h-1GZVSMGACEFCF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/StructuresPackedDouble.h-1GZVSMGACEFCF new file mode 100644 index 0000000..029ef4d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/StructuresPackedDouble.h-1GZVSMGACEFCF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI new file mode 100644 index 0000000..f3df3a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI new file mode 100644 index 0000000..2a0f007 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CJ/arm64e-apple-macos.swiftinterface-1DCYVL0GFACJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CJ/arm64e-apple-macos.swiftinterface-1DCYVL0GFACJ new file mode 100644 index 0000000..bd2b659 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CJ/arm64e-apple-macos.swiftinterface-1DCYVL0GFACJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK new file mode 100644 index 0000000..08bfafe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/EntryActivity.h-13B9GSI4VXACL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/EntryActivity.h-13B9GSI4VXACL new file mode 100644 index 0000000..1bb4ea9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/EntryActivity.h-13B9GSI4VXACL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL new file mode 100644 index 0000000..6015d1a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/NSSharingServicePickerToolbarItem.h-1TCAG8064TZCL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/NSSharingServicePickerToolbarItem.h-1TCAG8064TZCL new file mode 100644 index 0000000..c7a36a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/NSSharingServicePickerToolbarItem.h-1TCAG8064TZCL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/CGImageDestination.h-2X39JRRDUHMCN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/CGImageDestination.h-2X39JRRDUHMCN new file mode 100644 index 0000000..cc2bbb6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/CGImageDestination.h-2X39JRRDUHMCN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN new file mode 100644 index 0000000..0ed72f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN new file mode 100644 index 0000000..7d378d8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CO/MTLComputeCommandEncoder.h-1XDNLPM93IECO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CO/MTLComputeCommandEncoder.h-1XDNLPM93IECO new file mode 100644 index 0000000..733d0f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CO/MTLComputeCommandEncoder.h-1XDNLPM93IECO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP new file mode 100644 index 0000000..96aafdd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP new file mode 100644 index 0000000..11ca7b2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/ATSFont.h-YAPJHXQW7HCQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/ATSFont.h-YAPJHXQW7HCQ new file mode 100644 index 0000000..0054dfd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/ATSFont.h-YAPJHXQW7HCQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ new file mode 100644 index 0000000..ef1aaa4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/CTRun.h-33ZRGV7UGWPCR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/CTRun.h-33ZRGV7UGWPCR new file mode 100644 index 0000000..9de6e5d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/CTRun.h-33ZRGV7UGWPCR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR new file mode 100644 index 0000000..c5bbb59 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPRotation3D.h-35DREQQQXIZCR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPRotation3D.h-35DREQQQXIZCR new file mode 100644 index 0000000..e7a76bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPRotation3D.h-35DREQQQXIZCR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPSize3D.h-2UBSF2SGQCWCR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPSize3D.h-2UBSF2SGQCWCR new file mode 100644 index 0000000..36e89a5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/SPSize3D.h-2UBSF2SGQCWCR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR new file mode 100644 index 0000000..fda3d92 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR new file mode 100644 index 0000000..e202544 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/CGPDFStream.h-2KIC5QIV4YPCS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/CGPDFStream.h-2KIC5QIV4YPCS new file mode 100644 index 0000000..c21ec5a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/CGPDFStream.h-2KIC5QIV4YPCS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/HIShape.h-CSX84V30YXCS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/HIShape.h-CSX84V30YXCS new file mode 100644 index 0000000..db1cf7f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/HIShape.h-CSX84V30YXCS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/NSTextInputContext.h-3TQ77TKPU6ECS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/NSTextInputContext.h-3TQ77TKPU6ECS new file mode 100644 index 0000000..492a400 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CS/NSTextInputContext.h-3TQ77TKPU6ECS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT new file mode 100644 index 0000000..374489a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT new file mode 100644 index 0000000..a0ce498 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT new file mode 100644 index 0000000..47a0e5a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/CATextLayer.h-240JASFO0NRCU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/CATextLayer.h-240JASFO0NRCU new file mode 100644 index 0000000..a30db64 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/CATextLayer.h-240JASFO0NRCU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/MTL4Compiler.h-K06BE72JQECV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/MTL4Compiler.h-K06BE72JQECV new file mode 100644 index 0000000..659e284 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/MTL4Compiler.h-K06BE72JQECV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV new file mode 100644 index 0000000..500a147 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW new file mode 100644 index 0000000..1dc59a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW new file mode 100644 index 0000000..1538f7b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/SPSize3DFloat.h-1WS17SXEC6HCX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/SPSize3DFloat.h-1WS17SXEC6HCX new file mode 100644 index 0000000..ace3ffa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/SPSize3DFloat.h-1WS17SXEC6HCX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX new file mode 100644 index 0000000..ce3fbfb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX new file mode 100644 index 0000000..966c6b0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY new file mode 100644 index 0000000..cf36aae Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/NSAccessibility.h-NTF3X3T3E2CZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/NSAccessibility.h-NTF3X3T3E2CZ new file mode 100644 index 0000000..d795806 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/NSAccessibility.h-NTF3X3T3E2CZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ new file mode 100644 index 0000000..abf6f84 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/MTLGPUAddress.h-2T2GP55IAZND0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/MTLGPUAddress.h-2T2GP55IAZND0 new file mode 100644 index 0000000..4e708f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/MTLGPUAddress.h-2T2GP55IAZND0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 new file mode 100644 index 0000000..ae76537 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 new file mode 100644 index 0000000..1067b53 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 new file mode 100644 index 0000000..c3239c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 new file mode 100644 index 0000000..17871d5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D6/CGFunction.h-66IFTMKK67D6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D6/CGFunction.h-66IFTMKK67D6 new file mode 100644 index 0000000..3b75edf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D6/CGFunction.h-66IFTMKK67D6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 new file mode 100644 index 0000000..984656c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/UNNotificationCategory.h-28ZHD0CSWAVD8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/UNNotificationCategory.h-28ZHD0CSWAVD8 new file mode 100644 index 0000000..8669d44 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/UNNotificationCategory.h-28ZHD0CSWAVD8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 new file mode 100644 index 0000000..06b0431 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DA/CGLayer.h-3EIUMOC9CV8DA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DA/CGLayer.h-3EIUMOC9CV8DA new file mode 100644 index 0000000..29de9ca Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DA/CGLayer.h-3EIUMOC9CV8DA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB new file mode 100644 index 0000000..a3fae8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/arm64e-apple-macos.swiftinterface-3OMDCWN9680DB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/arm64e-apple-macos.swiftinterface-3OMDCWN9680DB new file mode 100644 index 0000000..db80c41 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/arm64e-apple-macos.swiftinterface-3OMDCWN9680DB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC new file mode 100644 index 0000000..daa2ba6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD new file mode 100644 index 0000000..559341b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE new file mode 100644 index 0000000..ce97f80 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF new file mode 100644 index 0000000..7955fa0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF new file mode 100644 index 0000000..ec2aa3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG new file mode 100644 index 0000000..f2428d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/MTLRenderPass.h-3R3BQ7JKRR0DG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/MTLRenderPass.h-3R3BQ7JKRR0DG new file mode 100644 index 0000000..0e68f7c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/MTLRenderPass.h-3R3BQ7JKRR0DG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG new file mode 100644 index 0000000..026c3fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/NSPasteboardItem.h-3QIEZJNH8TXDG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/NSPasteboardItem.h-3QIEZJNH8TXDG new file mode 100644 index 0000000..b95a102 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/NSPasteboardItem.h-3QIEZJNH8TXDG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG new file mode 100644 index 0000000..8793a3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH new file mode 100644 index 0000000..1311245 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI new file mode 100644 index 0000000..ea5e317 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ new file mode 100644 index 0000000..7043717 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ new file mode 100644 index 0000000..3c16be4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DK/ATSDefines.h-2QI8XCL3PE6DK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DK/ATSDefines.h-2QI8XCL3PE6DK new file mode 100644 index 0000000..35ef353 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DK/ATSDefines.h-2QI8XCL3PE6DK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL new file mode 100644 index 0000000..7e5a047 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL new file mode 100644 index 0000000..210cec5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM new file mode 100644 index 0000000..48c83c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN new file mode 100644 index 0000000..205dcc8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO new file mode 100644 index 0000000..62c96cb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO new file mode 100644 index 0000000..e623db9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR new file mode 100644 index 0000000..20f82b8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS new file mode 100644 index 0000000..73b6eb3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DT/arm64e-apple-macos.swiftinterface-3BBHV2PBD8BDT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DT/arm64e-apple-macos.swiftinterface-3BBHV2PBD8BDT new file mode 100644 index 0000000..c710572 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DT/arm64e-apple-macos.swiftinterface-3BBHV2PBD8BDT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU new file mode 100644 index 0000000..282cef0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/CGRemoteOperation.h-2BP9UB4SORBDX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/CGRemoteOperation.h-2BP9UB4SORBDX new file mode 100644 index 0000000..579f672 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/CGRemoteOperation.h-2BP9UB4SORBDX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/ConversationListView.swift-2LNFXHTXUZJDX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/ConversationListView.swift-2LNFXHTXUZJDX new file mode 100644 index 0000000..eddff03 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/ConversationListView.swift-2LNFXHTXUZJDX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX new file mode 100644 index 0000000..b5c5ae5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX new file mode 100644 index 0000000..de5325a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/MTL4LibraryFunctionDescriptor.h-2MQCH61F347DY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/MTL4LibraryFunctionDescriptor.h-2MQCH61F347DY new file mode 100644 index 0000000..0d9ee6a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/MTL4LibraryFunctionDescriptor.h-2MQCH61F347DY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/gliContext.h-B0A7LNWC6EDY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/gliContext.h-B0A7LNWC6EDY new file mode 100644 index 0000000..d1d1ed8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/gliContext.h-B0A7LNWC6EDY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY new file mode 100644 index 0000000..e60f47a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY new file mode 100644 index 0000000..3274f0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DZ/CTTextTab.h-26ZLCAF9IXLDZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DZ/CTTextTab.h-26ZLCAF9IXLDZ new file mode 100644 index 0000000..400650c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/DZ/CTTextTab.h-26ZLCAF9IXLDZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/CGDirectDisplay.h-2FG7EMUQSBTE0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/CGDirectDisplay.h-2FG7EMUQSBTE0 new file mode 100644 index 0000000..8766766 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/CGDirectDisplay.h-2FG7EMUQSBTE0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/NSComboButton.h-5XI2PQL0DCE0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/NSComboButton.h-5XI2PQL0DCE0 new file mode 100644 index 0000000..f06d6ac Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/NSComboButton.h-5XI2PQL0DCE0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 new file mode 100644 index 0000000..c50b37c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 new file mode 100644 index 0000000..e8541dd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/NSNibLoading.h-3KLXZ4M1ZOFE1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/NSNibLoading.h-3KLXZ4M1ZOFE1 new file mode 100644 index 0000000..450d8d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/NSNibLoading.h-3KLXZ4M1ZOFE1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 new file mode 100644 index 0000000..7950a47 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 new file mode 100644 index 0000000..384a5ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 new file mode 100644 index 0000000..492a399 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 new file mode 100644 index 0000000..367a260 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSGestureRecognizer.h-IZADQGECQE6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSGestureRecognizer.h-IZADQGECQE6 new file mode 100644 index 0000000..388201e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSGestureRecognizer.h-IZADQGECQE6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/MTLCommandBuffer.h-30XT3QKIYOLE7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/MTLCommandBuffer.h-30XT3QKIYOLE7 new file mode 100644 index 0000000..d14f3bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/MTLCommandBuffer.h-30XT3QKIYOLE7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 new file mode 100644 index 0000000..f3765fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 new file mode 100644 index 0000000..86faf28 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 new file mode 100644 index 0000000..5ce3e2c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/NSAlignmentFeedbackFilter.h-145N3889ECEA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/NSAlignmentFeedbackFilter.h-145N3889ECEA new file mode 100644 index 0000000..6e1ff27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/NSAlignmentFeedbackFilter.h-145N3889ECEA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA new file mode 100644 index 0000000..da4615d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED new file mode 100644 index 0000000..175ce69 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/NSPersistentCloudKitContainer.h-30ONO25D63HEF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/NSPersistentCloudKitContainer.h-30ONO25D63HEF new file mode 100644 index 0000000..d51aea2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/NSPersistentCloudKitContainer.h-30ONO25D63HEF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF new file mode 100644 index 0000000..f8a6eae Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/UNNotificationSound.h-2AGW6Z7MROEEF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/UNNotificationSound.h-2AGW6Z7MROEEF new file mode 100644 index 0000000..bcbbe15 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/UNNotificationSound.h-2AGW6Z7MROEEF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF new file mode 100644 index 0000000..335af7b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/MTL4MachineLearningCommandEncoder.h-3KFQYMV5C79EH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/MTL4MachineLearningCommandEncoder.h-3KFQYMV5C79EH new file mode 100644 index 0000000..ad5a152 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/MTL4MachineLearningCommandEncoder.h-3KFQYMV5C79EH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH new file mode 100644 index 0000000..1ea602c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI new file mode 100644 index 0000000..887241f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EJ/AXRoleConstants.h-VSWYCQ131YEJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EJ/AXRoleConstants.h-VSWYCQ131YEJ new file mode 100644 index 0000000..62b6b33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EJ/AXRoleConstants.h-VSWYCQ131YEJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK new file mode 100644 index 0000000..de31f3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL new file mode 100644 index 0000000..30fec6b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM new file mode 100644 index 0000000..93257b4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM new file mode 100644 index 0000000..854a2e4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN new file mode 100644 index 0000000..ada09ad Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/UNUserNotificationCenter.h-3NGJGJMUZTMEN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/UNUserNotificationCenter.h-3NGJGJMUZTMEN new file mode 100644 index 0000000..c137ec9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/UNUserNotificationCenter.h-3NGJGJMUZTMEN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EO/UpdateCheckView.swift-2M9K8O3P8NWEO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EO/UpdateCheckView.swift-2M9K8O3P8NWEO new file mode 100644 index 0000000..b64c274 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EO/UpdateCheckView.swift-2M9K8O3P8NWEO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP new file mode 100644 index 0000000..25bf52d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP new file mode 100644 index 0000000..d940b08 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/AvailabilityVersions.h-29ZV6QJ4HKNEQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/AvailabilityVersions.h-29ZV6QJ4HKNEQ new file mode 100644 index 0000000..9053112 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/AvailabilityVersions.h-29ZV6QJ4HKNEQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/SPProjectiveTransform3DFloat.h-3VCYPTLB46YEQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/SPProjectiveTransform3DFloat.h-3VCYPTLB46YEQ new file mode 100644 index 0000000..df05c27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/SPProjectiveTransform3DFloat.h-3VCYPTLB46YEQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ new file mode 100644 index 0000000..7a101c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER new file mode 100644 index 0000000..7c04534 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER new file mode 100644 index 0000000..ba23380 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER new file mode 100644 index 0000000..352bfd1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ES/NSImageView.h-2MBS7U3EEFZES b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ES/NSImageView.h-2MBS7U3EEFZES new file mode 100644 index 0000000..7d07cd0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ES/NSImageView.h-2MBS7U3EEFZES differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/NSScrubberLayout.h-3OQ175RHU55ET b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/NSScrubberLayout.h-3OQ175RHU55ET new file mode 100644 index 0000000..c02d8f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/NSScrubberLayout.h-3OQ175RHU55ET differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET new file mode 100644 index 0000000..eea6ca3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU new file mode 100644 index 0000000..4f7dfc9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV new file mode 100644 index 0000000..22d127b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW new file mode 100644 index 0000000..6cf7918 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EY/NSForm.h-3APT7RBQ9L1EY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EY/NSForm.h-3APT7RBQ9L1EY new file mode 100644 index 0000000..0c800d3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EY/NSForm.h-3APT7RBQ9L1EY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EZ/IOSurfaceAPI.h-2PMGQZ3O6IAEZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EZ/IOSurfaceAPI.h-2PMGQZ3O6IAEZ new file mode 100644 index 0000000..0d20e8a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/EZ/IOSurfaceAPI.h-2PMGQZ3O6IAEZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 new file mode 100644 index 0000000..b8b046b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 new file mode 100644 index 0000000..d1b83c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 new file mode 100644 index 0000000..992a7de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/NSEvent.h-3NQYKWZQHYBF2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/NSEvent.h-3NQYKWZQHYBF2 new file mode 100644 index 0000000..ad51495 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/NSEvent.h-3NQYKWZQHYBF2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 new file mode 100644 index 0000000..200679a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 new file mode 100644 index 0000000..1214f89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 new file mode 100644 index 0000000..74e8b16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 new file mode 100644 index 0000000..8e6eccb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/ImTypes.swift-3FWHHU8UO5HF6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/ImTypes.swift-3FWHHU8UO5HF6 new file mode 100644 index 0000000..d55ed38 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/ImTypes.swift-3FWHHU8UO5HF6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 new file mode 100644 index 0000000..91690d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 new file mode 100644 index 0000000..99b3bea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 new file mode 100644 index 0000000..e466016 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 new file mode 100644 index 0000000..bbc9666 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 new file mode 100644 index 0000000..d7a9428 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 new file mode 100644 index 0000000..5c4fb89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA new file mode 100644 index 0000000..4b53d2d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/NSAnimation.h-2943C1RNB3UFA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/NSAnimation.h-2943C1RNB3UFA new file mode 100644 index 0000000..d42f2f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/NSAnimation.h-2943C1RNB3UFA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA new file mode 100644 index 0000000..738e4d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FC/SPScaledPose3DFloat.h-MN8U54L1V1FC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FC/SPScaledPose3DFloat.h-MN8U54L1V1FC new file mode 100644 index 0000000..d3070f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FC/SPScaledPose3DFloat.h-MN8U54L1V1FC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD new file mode 100644 index 0000000..4c1f051 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE new file mode 100644 index 0000000..d649bdc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/NSTextList.h-3AISNSEBYPZFE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/NSTextList.h-3AISNSEBYPZFE new file mode 100644 index 0000000..baa5c5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/NSTextList.h-3AISNSEBYPZFE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE new file mode 100644 index 0000000..2ca274e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FF/NSColorPicker.h-2J5484AL96FFF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FF/NSColorPicker.h-2J5484AL96FFF new file mode 100644 index 0000000..4431e79 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FF/NSColorPicker.h-2J5484AL96FFF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/MTL4LinkingDescriptor.h-2VWM00TZ1S0FG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/MTL4LinkingDescriptor.h-2VWM00TZ1S0FG new file mode 100644 index 0000000..86160b9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/MTL4LinkingDescriptor.h-2VWM00TZ1S0FG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/NSSharingCollaborationModeRestriction.h-IHC7VM25XFFG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/NSSharingCollaborationModeRestriction.h-IHC7VM25XFFG new file mode 100644 index 0000000..9363734 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FG/NSSharingCollaborationModeRestriction.h-IHC7VM25XFFG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FH/MTLIndirectCommandEncoder.h-7U4L49YGVBFH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FH/MTLIndirectCommandEncoder.h-7U4L49YGVBFH new file mode 100644 index 0000000..95a495a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FH/MTLIndirectCommandEncoder.h-7U4L49YGVBFH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/NSBrowserCell.h-1OYUXFUU7JIFI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/NSBrowserCell.h-1OYUXFUU7JIFI new file mode 100644 index 0000000..a79b939 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/NSBrowserCell.h-1OYUXFUU7JIFI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI new file mode 100644 index 0000000..7a07368 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FJ/MTLDevice.h-3S2ST97BE9KFJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FJ/MTLDevice.h-3S2ST97BE9KFJ new file mode 100644 index 0000000..4e386a6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FJ/MTLDevice.h-3S2ST97BE9KFJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK new file mode 100644 index 0000000..463cf3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK new file mode 100644 index 0000000..3a73af2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK new file mode 100644 index 0000000..7101aaa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM new file mode 100644 index 0000000..5eebe0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN new file mode 100644 index 0000000..c4b21a9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FO/ppd.h-K5AG275FILFO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FO/ppd.h-K5AG275FILFO new file mode 100644 index 0000000..463940c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FO/ppd.h-K5AG275FILFO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/NSCollectionView.h-GAZVNXOXDUFP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/NSCollectionView.h-GAZVNXOXDUFP new file mode 100644 index 0000000..073bc30 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/NSCollectionView.h-GAZVNXOXDUFP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/vector_make.h-2JY2593822YFP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/vector_make.h-2JY2593822YFP new file mode 100644 index 0000000..95af625 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FP/vector_make.h-2JY2593822YFP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ new file mode 100644 index 0000000..ce8050f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS new file mode 100644 index 0000000..ce4f65a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS new file mode 100644 index 0000000..a096cee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS new file mode 100644 index 0000000..f7f04f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FT/NSPredicateEditor.h-1XBXNK6OY0GFT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FT/NSPredicateEditor.h-1XBXNK6OY0GFT new file mode 100644 index 0000000..02db815 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FT/NSPredicateEditor.h-1XBXNK6OY0GFT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/CISampler.h-282VDA5DKNXFU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/CISampler.h-282VDA5DKNXFU new file mode 100644 index 0000000..4919dbd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/CISampler.h-282VDA5DKNXFU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/logic.h-8S3CVS8JFNFU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/logic.h-8S3CVS8JFNFU new file mode 100644 index 0000000..5eb235f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FU/logic.h-8S3CVS8JFNFU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/ATSUnicodeTypes.h-383W2HQZFQPFV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/ATSUnicodeTypes.h-383W2HQZFQPFV new file mode 100644 index 0000000..698347f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/ATSUnicodeTypes.h-383W2HQZFQPFV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/AXBrailleTranslator.h-1KIHSIK4J9DFV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/AXBrailleTranslator.h-1KIHSIK4J9DFV new file mode 100644 index 0000000..fa68799 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/AXBrailleTranslator.h-1KIHSIK4J9DFV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/CARemoteLayerClient.h-3GWSZ9Y0Q3HFV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/CARemoteLayerClient.h-3GWSZ9Y0Q3HFV new file mode 100644 index 0000000..899e945 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/CARemoteLayerClient.h-3GWSZ9Y0Q3HFV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/NSDocument.h-2T9JR9HNRVWFV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/NSDocument.h-2T9JR9HNRVWFV new file mode 100644 index 0000000..010cd36 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/NSDocument.h-2T9JR9HNRVWFV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV new file mode 100644 index 0000000..a64a372 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/ATSAvailability.h-2FJMU1SVKBSFW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/ATSAvailability.h-2FJMU1SVKBSFW new file mode 100644 index 0000000..2db5bcd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/ATSAvailability.h-2FJMU1SVKBSFW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW new file mode 100644 index 0000000..fe8ab82 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW new file mode 100644 index 0000000..43bf864 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX new file mode 100644 index 0000000..2b06ede Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/CIImageProvider.h-CAK3ZZICJJFX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/CIImageProvider.h-CAK3ZZICJJFX new file mode 100644 index 0000000..3d72d25 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/CIImageProvider.h-CAK3ZZICJJFX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/NSEntityMigrationPolicy.h-27UOG7BYZMYFX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/NSEntityMigrationPolicy.h-27UOG7BYZMYFX new file mode 100644 index 0000000..6ba9d74 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/NSEntityMigrationPolicy.h-27UOG7BYZMYFX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX new file mode 100644 index 0000000..22887eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY new file mode 100644 index 0000000..dff0a8e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/NSManagedObject.h-MGRZLKFPGIFZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/NSManagedObject.h-MGRZLKFPGIFZ new file mode 100644 index 0000000..6afd834 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/NSManagedObject.h-MGRZLKFPGIFZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/arm64e-apple-macos.swiftinterface-33N8VAVIADBFZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/arm64e-apple-macos.swiftinterface-33N8VAVIADBFZ new file mode 100644 index 0000000..d298791 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/arm64e-apple-macos.swiftinterface-33N8VAVIADBFZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ new file mode 100644 index 0000000..6c79289 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/ColorSync.h-282BZJH3UXBG0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/ColorSync.h-282BZJH3UXBG0 new file mode 100644 index 0000000..9644334 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/ColorSync.h-282BZJH3UXBG0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 new file mode 100644 index 0000000..da6cae3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 new file mode 100644 index 0000000..c6a9e0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/ImClient.swift-1XNFKXIALEIG3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/ImClient.swift-1XNFKXIALEIG3 new file mode 100644 index 0000000..4d0b1b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/ImClient.swift-1XNFKXIALEIG3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 new file mode 100644 index 0000000..6384e93 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 new file mode 100644 index 0000000..32adb89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/UpdateSDK.swift-1WFAALX22QEG3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/UpdateSDK.swift-1WFAALX22QEG3 new file mode 100644 index 0000000..96a45d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/UpdateSDK.swift-1WFAALX22QEG3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 new file mode 100644 index 0000000..ecd3234 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 new file mode 100644 index 0000000..55d79b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 new file mode 100644 index 0000000..a8d1b82 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 new file mode 100644 index 0000000..c4ae13f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 new file mode 100644 index 0000000..31da2aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 new file mode 100644 index 0000000..167736c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB new file mode 100644 index 0000000..a63ea11 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB new file mode 100644 index 0000000..c3cea85 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/NSPanGestureRecognizer.h-1Y22O7JQMCEGB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/NSPanGestureRecognizer.h-1Y22O7JQMCEGB new file mode 100644 index 0000000..5df1b14 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/NSPanGestureRecognizer.h-1Y22O7JQMCEGB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC new file mode 100644 index 0000000..4f0a799 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC new file mode 100644 index 0000000..d15fd65 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GD/vm_statistics.h-21NLFPK75IKGD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GD/vm_statistics.h-21NLFPK75IKGD new file mode 100644 index 0000000..9f9de77 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GD/vm_statistics.h-21NLFPK75IKGD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE new file mode 100644 index 0000000..307ca10 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE new file mode 100644 index 0000000..b738694 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF new file mode 100644 index 0000000..560a27d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/NSItemProvider+UTType.h-2KZO6EIC910GF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/NSItemProvider+UTType.h-2KZO6EIC910GF new file mode 100644 index 0000000..e2ba3b8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/NSItemProvider+UTType.h-2KZO6EIC910GF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF new file mode 100644 index 0000000..3a10808 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF new file mode 100644 index 0000000..f6b55dc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG new file mode 100644 index 0000000..321031a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CGPDFArray.h-3TVDZI3TN0YGG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CGPDFArray.h-3TVDZI3TN0YGG new file mode 100644 index 0000000..16ca353 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CGPDFArray.h-3TVDZI3TN0YGG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/MTLBuffer.h-2V49LLR62EYGG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/MTLBuffer.h-2V49LLR62EYGG new file mode 100644 index 0000000..4f399d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/MTLBuffer.h-2V49LLR62EYGG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH new file mode 100644 index 0000000..d4ee4c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI new file mode 100644 index 0000000..9522de4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI new file mode 100644 index 0000000..45a79ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI new file mode 100644 index 0000000..1efd21a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL new file mode 100644 index 0000000..36238e1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN new file mode 100644 index 0000000..a126530 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/EntrySignpost.h-4H8ACDGYIMGO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/EntrySignpost.h-4H8ACDGYIMGO new file mode 100644 index 0000000..6c38dc6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/EntrySignpost.h-4H8ACDGYIMGO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO new file mode 100644 index 0000000..1a3e01d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO new file mode 100644 index 0000000..4bff99e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO new file mode 100644 index 0000000..c6eb519 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO new file mode 100644 index 0000000..b0dbe28 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GP/NSTextAttachmentCell.h-1SHPGCQDIGHGP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GP/NSTextAttachmentCell.h-1SHPGCQDIGHGP new file mode 100644 index 0000000..cce0908 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GP/NSTextAttachmentCell.h-1SHPGCQDIGHGP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ new file mode 100644 index 0000000..f3c6c4c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CGLTypes.h-3TNP67REI4LGQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CGLTypes.h-3TNP67REI4LGQ new file mode 100644 index 0000000..3255f5e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CGLTypes.h-3TNP67REI4LGQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GR/MTLIOCommandQueue.h-H11JZS3LG4GR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GR/MTLIOCommandQueue.h-H11JZS3LG4GR new file mode 100644 index 0000000..9719676 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GR/MTLIOCommandQueue.h-H11JZS3LG4GR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS new file mode 100644 index 0000000..d6c5312 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/CGBase.h-323XHW37PQHGT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/CGBase.h-323XHW37PQHGT new file mode 100644 index 0000000..d4dea3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/CGBase.h-323XHW37PQHGT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT new file mode 100644 index 0000000..6a7ab98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT new file mode 100644 index 0000000..455036b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GW/NSWritingToolsCoordinatorContext.h-37FVXGBT01PGW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GW/NSWritingToolsCoordinatorContext.h-37FVXGBT01PGW new file mode 100644 index 0000000..5e43727 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GW/NSWritingToolsCoordinatorContext.h-37FVXGBT01PGW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY new file mode 100644 index 0000000..488da5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 new file mode 100644 index 0000000..ef15942 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/packed.h-6B69EHUIJSH0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/packed.h-6B69EHUIJSH0 new file mode 100644 index 0000000..652cff0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/packed.h-6B69EHUIJSH0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 new file mode 100644 index 0000000..ff6802a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H1/kdebug.h-KKPC6ZMFGWH1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H1/kdebug.h-KKPC6ZMFGWH1 new file mode 100644 index 0000000..911d77d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H1/kdebug.h-KKPC6ZMFGWH1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H2/ATSUnicodeFlattening.h-3TS323PVE2JH2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H2/ATSUnicodeFlattening.h-3TS323PVE2JH2 new file mode 100644 index 0000000..b73d809 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H2/ATSUnicodeFlattening.h-3TS323PVE2JH2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 new file mode 100644 index 0000000..c8b433f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/NSPopoverTouchBarItem.h-26SZE8JM6GAH3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/NSPopoverTouchBarItem.h-26SZE8JM6GAH3 new file mode 100644 index 0000000..897e433 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/NSPopoverTouchBarItem.h-26SZE8JM6GAH3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 new file mode 100644 index 0000000..5c2c782 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 new file mode 100644 index 0000000..62cbd3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 new file mode 100644 index 0000000..0da1314 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 new file mode 100644 index 0000000..7567236 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 new file mode 100644 index 0000000..de2c99c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 new file mode 100644 index 0000000..dc4a98d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/CIDetector.h-2R7DEPCD2REH7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/CIDetector.h-2R7DEPCD2REH7 new file mode 100644 index 0000000..26ba8e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/CIDetector.h-2R7DEPCD2REH7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 new file mode 100644 index 0000000..77893ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPropertyMapping.h-170I9I8ZT8FH7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPropertyMapping.h-170I9I8ZT8FH7 new file mode 100644 index 0000000..24a45fe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPropertyMapping.h-170I9I8ZT8FH7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 new file mode 100644 index 0000000..979dbbc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 new file mode 100644 index 0000000..66a6b05 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 new file mode 100644 index 0000000..1f2bc14 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 new file mode 100644 index 0000000..262743a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/SDKConfig.swift-1HC4P45ZOSFH9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/SDKConfig.swift-1HC4P45ZOSFH9 new file mode 100644 index 0000000..180649e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/SDKConfig.swift-1HC4P45ZOSFH9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 new file mode 100644 index 0000000..1c0ab5e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/AuthViewModel.swift-2YXWB3C52C2HA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/AuthViewModel.swift-2YXWB3C52C2HA new file mode 100644 index 0000000..a1cce60 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/AuthViewModel.swift-2YXWB3C52C2HA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/CoreTransferable.h-31JBUWWJ10GHA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/CoreTransferable.h-31JBUWWJ10GHA new file mode 100644 index 0000000..e4b6d5d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/CoreTransferable.h-31JBUWWJ10GHA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA new file mode 100644 index 0000000..e572bd4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HB/NSCoreDataCoreSpotlightDelegate.h-3LSAZO5FVL2HB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HB/NSCoreDataCoreSpotlightDelegate.h-3LSAZO5FVL2HB new file mode 100644 index 0000000..ed5a3a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HB/NSCoreDataCoreSpotlightDelegate.h-3LSAZO5FVL2HB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC new file mode 100644 index 0000000..fb0933b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/ATSLayoutTypes.h-2B8MLMZO92HHD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/ATSLayoutTypes.h-2B8MLMZO92HHD new file mode 100644 index 0000000..871d153 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/ATSLayoutTypes.h-2B8MLMZO92HHD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/CIRAWFilter_Deprecated.h-3MUSC3BCTX2HD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/CIRAWFilter_Deprecated.h-3MUSC3BCTX2HD new file mode 100644 index 0000000..13c8c92 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HD/CIRAWFilter_Deprecated.h-3MUSC3BCTX2HD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HE/CIRenderDestination.h-SR818XV9MMHE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HE/CIRenderDestination.h-SR818XV9MMHE new file mode 100644 index 0000000..5e7c703 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HE/CIRenderDestination.h-SR818XV9MMHE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/NSOutlineView.h-297CMN1SG1VHG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/NSOutlineView.h-297CMN1SG1VHG new file mode 100644 index 0000000..bfd5064 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/NSOutlineView.h-297CMN1SG1VHG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG new file mode 100644 index 0000000..a81ece2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH new file mode 100644 index 0000000..f28aaef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH new file mode 100644 index 0000000..b9bd040 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH new file mode 100644 index 0000000..75dd34f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/ImageIOBase.h-32PBCEDS0U2HJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/ImageIOBase.h-32PBCEDS0U2HJ new file mode 100644 index 0000000..7f062ad Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/ImageIOBase.h-32PBCEDS0U2HJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/NSImageRep.h-2R7TV8PRNNFHJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/NSImageRep.h-2R7TV8PRNNFHJ new file mode 100644 index 0000000..4302958 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/NSImageRep.h-2R7TV8PRNNFHJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ new file mode 100644 index 0000000..2eaee68 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/arm_fp16.h-1RI3VTKT330HJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/arm_fp16.h-1RI3VTKT330HJ new file mode 100644 index 0000000..8d2dfd5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/arm_fp16.h-1RI3VTKT330HJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HK/MTLIOCompressor.h-33PJJTXD8V9HK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HK/MTLIOCompressor.h-33PJJTXD8V9HK new file mode 100644 index 0000000..56b746f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HK/MTLIOCompressor.h-33PJJTXD8V9HK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM new file mode 100644 index 0000000..b4802a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM new file mode 100644 index 0000000..71354ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM new file mode 100644 index 0000000..64250fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HN/NSTextSelection.h-14U5HB1I7OBHN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HN/NSTextSelection.h-14U5HB1I7OBHN new file mode 100644 index 0000000..9976660 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HN/NSTextSelection.h-14U5HB1I7OBHN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/AXAudiograph.h-2P9OA7J1LJMHO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/AXAudiograph.h-2P9OA7J1LJMHO new file mode 100644 index 0000000..bd5175c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/AXAudiograph.h-2P9OA7J1LJMHO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO new file mode 100644 index 0000000..123d730 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO new file mode 100644 index 0000000..776fb4d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP new file mode 100644 index 0000000..c878f89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP new file mode 100644 index 0000000..4e38d3d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HR/UpdateCheckView.swift-7GB9MTRIRNHR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HR/UpdateCheckView.swift-7GB9MTRIRNHR new file mode 100644 index 0000000..65803fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HR/UpdateCheckView.swift-7GB9MTRIRNHR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HS/MTLArgument.h-3F6TB5AAEQEHS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HS/MTLArgument.h-3F6TB5AAEQEHS new file mode 100644 index 0000000..648a6ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HS/MTLArgument.h-3F6TB5AAEQEHS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/CoreDataDefines.h-3VQ1IOD00U6HU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/CoreDataDefines.h-3VQ1IOD00U6HU new file mode 100644 index 0000000..0edf1fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/CoreDataDefines.h-3VQ1IOD00U6HU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU new file mode 100644 index 0000000..40cb754 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV new file mode 100644 index 0000000..2e8c89e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW new file mode 100644 index 0000000..5838215 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/MTLCommandEncoder.h-1OQ6QQ2VYKTHW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/MTLCommandEncoder.h-1OQ6QQ2VYKTHW new file mode 100644 index 0000000..2793be6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/MTLCommandEncoder.h-1OQ6QQ2VYKTHW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/CTRubyAnnotation.h-1N0JMO6ITGZHY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/CTRubyAnnotation.h-1N0JMO6ITGZHY new file mode 100644 index 0000000..4eab655 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/CTRubyAnnotation.h-1N0JMO6ITGZHY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSMergePolicy.h-3BU93W8V5MAHY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSMergePolicy.h-3BU93W8V5MAHY new file mode 100644 index 0000000..d6dde51 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSMergePolicy.h-3BU93W8V5MAHY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY new file mode 100644 index 0000000..c02aa7e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ new file mode 100644 index 0000000..bf62572 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ new file mode 100644 index 0000000..c9887cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSRulerView.h-2A6YQB0CWPCHZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSRulerView.h-2A6YQB0CWPCHZ new file mode 100644 index 0000000..657003c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSRulerView.h-2A6YQB0CWPCHZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/MTLAllocation.h-2I5P0K48LGOI0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/MTLAllocation.h-2I5P0K48LGOI0 new file mode 100644 index 0000000..aecbb0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/MTLAllocation.h-2I5P0K48LGOI0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 new file mode 100644 index 0000000..901c801 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/ColorSyncCMM.h-1FC42WT1RABI2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/ColorSyncCMM.h-1FC42WT1RABI2 new file mode 100644 index 0000000..4cef7cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/ColorSyncCMM.h-1FC42WT1RABI2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 new file mode 100644 index 0000000..6004312 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 new file mode 100644 index 0000000..277c389 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 new file mode 100644 index 0000000..9f76f90 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I4/AuthViewModel.swift-2U3E6YUSNARI4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I4/AuthViewModel.swift-2U3E6YUSNARI4 new file mode 100644 index 0000000..4870f27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I4/AuthViewModel.swift-2U3E6YUSNARI4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 new file mode 100644 index 0000000..5b4dd70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 new file mode 100644 index 0000000..fb78609 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 new file mode 100644 index 0000000..d948f59 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSPageLayout.h-2VR7U6701HTI7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSPageLayout.h-2VR7U6701HTI7 new file mode 100644 index 0000000..2ad0d27 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSPageLayout.h-2VR7U6701HTI7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 new file mode 100644 index 0000000..bb5ba96 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 new file mode 100644 index 0000000..0d1945e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 new file mode 100644 index 0000000..9948923 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/log.h-6T6G1TVGQOI9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/log.h-6T6G1TVGQOI9 new file mode 100644 index 0000000..34fecee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/log.h-6T6G1TVGQOI9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB new file mode 100644 index 0000000..6a3d0d4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IC/CGPath.h-2QEOBS4UU6DIC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IC/CGPath.h-2QEOBS4UU6DIC new file mode 100644 index 0000000..ff19bed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IC/CGPath.h-2QEOBS4UU6DIC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID new file mode 100644 index 0000000..f4ec351 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/NSCustomImageRep.h-3CP4RBO66TQIH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/NSCustomImageRep.h-3CP4RBO66TQIH new file mode 100644 index 0000000..7b5d215 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/NSCustomImageRep.h-3CP4RBO66TQIH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH new file mode 100644 index 0000000..c10908e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II new file mode 100644 index 0000000..a8035ee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/NSTextContainer.h-2QLEGNIC759IJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/NSTextContainer.h-2QLEGNIC759IJ new file mode 100644 index 0000000..2373ca7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/NSTextContainer.h-2QLEGNIC759IJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ new file mode 100644 index 0000000..8b9f1a3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK new file mode 100644 index 0000000..61dc887 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/NSScreen.h-18W6PU0DYOUIK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/NSScreen.h-18W6PU0DYOUIK new file mode 100644 index 0000000..d1b3d3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/NSScreen.h-18W6PU0DYOUIK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK new file mode 100644 index 0000000..41e59a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL new file mode 100644 index 0000000..318e8eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL new file mode 100644 index 0000000..d212048 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM new file mode 100644 index 0000000..3225789 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP new file mode 100644 index 0000000..12e45be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP new file mode 100644 index 0000000..f90ae8e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP new file mode 100644 index 0000000..f014ff2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/trace.h-2YBDEBED4IQIP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/trace.h-2YBDEBED4IQIP new file mode 100644 index 0000000..3402363 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/trace.h-2YBDEBED4IQIP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR new file mode 100644 index 0000000..483cee5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR new file mode 100644 index 0000000..3a8a528 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/SPAngleFloat.h-2O9LH9SFFEUIR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/SPAngleFloat.h-2O9LH9SFFEUIR new file mode 100644 index 0000000..0d2d58d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/SPAngleFloat.h-2O9LH9SFFEUIR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR new file mode 100644 index 0000000..22331cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS new file mode 100644 index 0000000..24e5639 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IU/CIFeature.h-28NG7TS928LIU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IU/CIFeature.h-28NG7TS928LIU new file mode 100644 index 0000000..d266521 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IU/CIFeature.h-28NG7TS928LIU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW new file mode 100644 index 0000000..975f9b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW new file mode 100644 index 0000000..bbdce81 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW new file mode 100644 index 0000000..9d5996b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW new file mode 100644 index 0000000..5dc4af3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/NSMigrationManager.h-2P2GLIOSKJ8IX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/NSMigrationManager.h-2P2GLIOSKJ8IX new file mode 100644 index 0000000..724d37b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/NSMigrationManager.h-2P2GLIOSKJ8IX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX new file mode 100644 index 0000000..114edba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IY/NSFetchIndexElementDescription.h-36B53VBJIUKIY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IY/NSFetchIndexElementDescription.h-36B53VBJIUKIY new file mode 100644 index 0000000..d70333e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IY/NSFetchIndexElementDescription.h-36B53VBJIUKIY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IZ/arm64e-apple-macos.swiftinterface-2X1JAKQ7GO1IZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IZ/arm64e-apple-macos.swiftinterface-2X1JAKQ7GO1IZ new file mode 100644 index 0000000..3b97261 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/IZ/arm64e-apple-macos.swiftinterface-2X1JAKQ7GO1IZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/NSTextContentManager.h-BA59I5OAA3J0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/NSTextContentManager.h-BA59I5OAA3J0 new file mode 100644 index 0000000..723420a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/NSTextContentManager.h-BA59I5OAA3J0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 new file mode 100644 index 0000000..9c39ad4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 new file mode 100644 index 0000000..954ccab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 new file mode 100644 index 0000000..23791ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 new file mode 100644 index 0000000..bb18797 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/UNNotification.h-1372Q1II2DOJ2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/UNNotification.h-1372Q1II2DOJ2 new file mode 100644 index 0000000..e95d46f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/UNNotification.h-1372Q1II2DOJ2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CGLIOSurface.h-3HXUC7KQKHYJ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CGLIOSurface.h-3HXUC7KQKHYJ3 new file mode 100644 index 0000000..725e7b0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CGLIOSurface.h-3HXUC7KQKHYJ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CTStringAttributes.h-22RA6FJ4C1YJ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CTStringAttributes.h-22RA6FJ4C1YJ3 new file mode 100644 index 0000000..ebebdcb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/CTStringAttributes.h-22RA6FJ4C1YJ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 new file mode 100644 index 0000000..46a1cc1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 new file mode 100644 index 0000000..418d7f9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 new file mode 100644 index 0000000..9017b56 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/EntryLog.h-2QBFMKE9MU5J4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/EntryLog.h-2QBFMKE9MU5J4 new file mode 100644 index 0000000..f179569 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/EntryLog.h-2QBFMKE9MU5J4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/MTLCounters.h-2XPBJLSWD8CJ4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/MTLCounters.h-2XPBJLSWD8CJ4 new file mode 100644 index 0000000..70a1536 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J4/MTLCounters.h-2XPBJLSWD8CJ4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 new file mode 100644 index 0000000..6bb01fe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 new file mode 100644 index 0000000..ab0130a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSAccessibilityElement.h-E9O1EMGY4OJ7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSAccessibilityElement.h-E9O1EMGY4OJ7 new file mode 100644 index 0000000..c3c68fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSAccessibilityElement.h-E9O1EMGY4OJ7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSSharingService.h-1K2Q52WF8K3J7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSSharingService.h-1K2Q52WF8K3J7 new file mode 100644 index 0000000..41aa1f6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/NSSharingService.h-1K2Q52WF8K3J7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 new file mode 100644 index 0000000..f3fca6d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 new file mode 100644 index 0000000..eb99a1e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 new file mode 100644 index 0000000..9e96d89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA new file mode 100644 index 0000000..d54fc90 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScrollView.h-34YQTBWXEIOJA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScrollView.h-34YQTBWXEIOJA new file mode 100644 index 0000000..e2aff3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScrollView.h-34YQTBWXEIOJA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JB/NSPopUpButtonCell.h-2HF4HEEYH3IJB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JB/NSPopUpButtonCell.h-2HF4HEEYH3IJB new file mode 100644 index 0000000..4d00d65 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JB/NSPopUpButtonCell.h-2HF4HEEYH3IJB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSAccessibilityConstants.h-1GK4Q7R9TGBJC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSAccessibilityConstants.h-1GK4Q7R9TGBJC new file mode 100644 index 0000000..1b88503 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSAccessibilityConstants.h-1GK4Q7R9TGBJC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSTabViewItem.h-1E9EWGL3QHJJC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSTabViewItem.h-1E9EWGL3QHJJC new file mode 100644 index 0000000..985787f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/NSTabViewItem.h-1E9EWGL3QHJJC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/TranslationServices.h-2RMKU825K21JC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/TranslationServices.h-2RMKU825K21JC new file mode 100644 index 0000000..4c0608c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JC/TranslationServices.h-2RMKU825K21JC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD new file mode 100644 index 0000000..e416433 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE new file mode 100644 index 0000000..66d0e68 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE new file mode 100644 index 0000000..3373be9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE new file mode 100644 index 0000000..dfd5c5a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF new file mode 100644 index 0000000..a6707a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/StucturesPackedFloat.h-33PSOG773O3JF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/StucturesPackedFloat.h-33PSOG773O3JF new file mode 100644 index 0000000..e01564a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/StucturesPackedFloat.h-33PSOG773O3JF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLFunctionDescriptor.h-1YJ4LOIH3LZJG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLFunctionDescriptor.h-1YJ4LOIH3LZJG new file mode 100644 index 0000000..6d9859c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLFunctionDescriptor.h-1YJ4LOIH3LZJG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLSampler.h-31MUFKDKY6VJG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLSampler.h-31MUFKDKY6VJG new file mode 100644 index 0000000..d9b8cb5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/MTLSampler.h-31MUFKDKY6VJG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/NSPathCell.h-1XY29E23QA8JG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/NSPathCell.h-1XY29E23QA8JG new file mode 100644 index 0000000..d26b246 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/NSPathCell.h-1XY29E23QA8JG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG new file mode 100644 index 0000000..c7a589d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI new file mode 100644 index 0000000..3c2a974 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI new file mode 100644 index 0000000..288e974 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI new file mode 100644 index 0000000..912d5a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/spawn.h-2UDL9DLOQE2JI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/spawn.h-2UDL9DLOQE2JI new file mode 100644 index 0000000..81380d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/spawn.h-2UDL9DLOQE2JI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/NSPanel.h-6W9TUKA79GJJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/NSPanel.h-6W9TUKA79GJJ new file mode 100644 index 0000000..77f63ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/NSPanel.h-6W9TUKA79GJJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ new file mode 100644 index 0000000..3ec34bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JK/NSMenu.h-15O9KIKSL5JJK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JK/NSMenu.h-15O9KIKSL5JJK new file mode 100644 index 0000000..33514b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JK/NSMenu.h-15O9KIKSL5JJK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL new file mode 100644 index 0000000..173f16f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM new file mode 100644 index 0000000..b0fbcf6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM new file mode 100644 index 0000000..025965f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/NSSplitView.h-1Z94SQ9L4KQJN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/NSSplitView.h-1Z94SQ9L4KQJN new file mode 100644 index 0000000..c624a19 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/NSSplitView.h-1Z94SQ9L4KQJN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/UNNotificationActionIcon.h-2SZ9GE0WYXSJN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/UNNotificationActionIcon.h-2SZ9GE0WYXSJN new file mode 100644 index 0000000..9a4b5b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JN/UNNotificationActionIcon.h-2SZ9GE0WYXSJN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP new file mode 100644 index 0000000..b0e192f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/MTLCaptureScope.h-100NGPZPUKPJP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/MTLCaptureScope.h-100NGPZPUKPJP new file mode 100644 index 0000000..1e9304d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/MTLCaptureScope.h-100NGPZPUKPJP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP new file mode 100644 index 0000000..0d50bb9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP new file mode 100644 index 0000000..e13babe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP new file mode 100644 index 0000000..c6a19a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP new file mode 100644 index 0000000..8a82aa6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ new file mode 100644 index 0000000..1502529 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR new file mode 100644 index 0000000..6626800 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/NSTrackingArea.h-ZO9O8GXY2HJS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/NSTrackingArea.h-ZO9O8GXY2HJS new file mode 100644 index 0000000..11612c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/NSTrackingArea.h-ZO9O8GXY2HJS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS new file mode 100644 index 0000000..14e5496 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS new file mode 100644 index 0000000..fa46766 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/CGPDFDocument.h-1Z9QJ4VUGQGJU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/CGPDFDocument.h-1Z9QJ4VUGQGJU new file mode 100644 index 0000000..f40388d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/CGPDFDocument.h-1Z9QJ4VUGQGJU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/MTLFence.h-16IG36NPGPKJU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/MTLFence.h-16IG36NPGPKJU new file mode 100644 index 0000000..0b90289 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/MTLFence.h-16IG36NPGPKJU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU new file mode 100644 index 0000000..6cef17b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JV/OpenGLAvailability.h-2QLM5YHIAVFJV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JV/OpenGLAvailability.h-2QLM5YHIAVFJV new file mode 100644 index 0000000..5e4e6f2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JV/OpenGLAvailability.h-2QLM5YHIAVFJV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/NSDocumentController.h-2NHNV1KTOVPJW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/NSDocumentController.h-2NHNV1KTOVPJW new file mode 100644 index 0000000..8288c48 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/NSDocumentController.h-2NHNV1KTOVPJW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW new file mode 100644 index 0000000..e41ae54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX new file mode 100644 index 0000000..e17ca97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY new file mode 100644 index 0000000..f8eef19 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 new file mode 100644 index 0000000..e861ed8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/NSFilePromiseProvider.h-1HWUBGOP46SK1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/NSFilePromiseProvider.h-1HWUBGOP46SK1 new file mode 100644 index 0000000..2ce6b40 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/NSFilePromiseProvider.h-1HWUBGOP46SK1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 new file mode 100644 index 0000000..3d70282 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 new file mode 100644 index 0000000..31cc150 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 new file mode 100644 index 0000000..d9bdb0d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/NSSliderAccessory.h-RJ3XRI3DA7K3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/NSSliderAccessory.h-RJ3XRI3DA7K3 new file mode 100644 index 0000000..ef0befc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/NSSliderAccessory.h-RJ3XRI3DA7K3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 new file mode 100644 index 0000000..c57d809 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/NSDictionaryController.h-1RBAFILFAWVK4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/NSDictionaryController.h-1RBAFILFAWVK4 new file mode 100644 index 0000000..b7d7173 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/NSDictionaryController.h-1RBAFILFAWVK4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/SPRotation3DFloat.h-3I4Q7RZE6W2K4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/SPRotation3DFloat.h-3I4Q7RZE6W2K4 new file mode 100644 index 0000000..8936d23 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/SPRotation3DFloat.h-3I4Q7RZE6W2K4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 new file mode 100644 index 0000000..4c5b971 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 new file mode 100644 index 0000000..492805c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 new file mode 100644 index 0000000..ad244e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K8/NSPersistentDocument.h-1ALA0V2QMZFK8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K8/NSPersistentDocument.h-1ALA0V2QMZFK8 new file mode 100644 index 0000000..6fa9c94 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/K8/NSPersistentDocument.h-1ALA0V2QMZFK8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/NSImage.h-IMSV708O0XKA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/NSImage.h-IMSV708O0XKA new file mode 100644 index 0000000..e271c38 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/NSImage.h-IMSV708O0XKA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA new file mode 100644 index 0000000..acb3f2a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA new file mode 100644 index 0000000..8f02097 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB new file mode 100644 index 0000000..643c677 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB new file mode 100644 index 0000000..c2d4287 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB new file mode 100644 index 0000000..c8b02f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB new file mode 100644 index 0000000..ab4c5af Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB new file mode 100644 index 0000000..40bcd70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KC/SPRect3DFloat.h-3L2RY8QGN3CKC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KC/SPRect3DFloat.h-3L2RY8QGN3CKC new file mode 100644 index 0000000..84ca022 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KC/SPRect3DFloat.h-3L2RY8QGN3CKC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/CGPDFObject.h-1D8XRJ8JPCPKD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/CGPDFObject.h-1D8XRJ8JPCPKD new file mode 100644 index 0000000..59677ba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/CGPDFObject.h-1D8XRJ8JPCPKD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/NSAnimationContext.h-3HE76B3DOIWKD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/NSAnimationContext.h-3HE76B3DOIWKD new file mode 100644 index 0000000..158b345 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KD/NSAnimationContext.h-3HE76B3DOIWKD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE new file mode 100644 index 0000000..1f50de1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/NSTreeController.h-PNL5IBD1JAKE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/NSTreeController.h-PNL5IBD1JAKE new file mode 100644 index 0000000..4ee7202 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/NSTreeController.h-PNL5IBD1JAKE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE new file mode 100644 index 0000000..19c8766 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE new file mode 100644 index 0000000..864e8a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/CGPDFPage.h-3W156BVDB8UKF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/CGPDFPage.h-3W156BVDB8UKF new file mode 100644 index 0000000..87ef89a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/CGPDFPage.h-3W156BVDB8UKF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/NSTextViewportLayoutController.h-15X6IX0G15HKF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/NSTextViewportLayoutController.h-15X6IX0G15HKF new file mode 100644 index 0000000..ad6db7d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KF/NSTextViewportLayoutController.h-15X6IX0G15HKF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/CIFilterBuiltins.h-32R4VU9FF93KG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/CIFilterBuiltins.h-32R4VU9FF93KG new file mode 100644 index 0000000..759133f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/CIFilterBuiltins.h-32R4VU9FF93KG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG new file mode 100644 index 0000000..d373562 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG new file mode 100644 index 0000000..8bd0205 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSErrors.h-3FBTPL0MJDDKI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSErrors.h-3FBTPL0MJDDKI new file mode 100644 index 0000000..24053be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSErrors.h-3FBTPL0MJDDKI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSPersistentCloudKitContainer_Sharing.h-3DRXQQ2VO5BKI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSPersistentCloudKitContainer_Sharing.h-3DRXQQ2VO5BKI new file mode 100644 index 0000000..445c11d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/NSPersistentCloudKitContainer_Sharing.h-3DRXQQ2VO5BKI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI new file mode 100644 index 0000000..ecd36e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ new file mode 100644 index 0000000..98f98f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ new file mode 100644 index 0000000..2b529df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ new file mode 100644 index 0000000..7e09404 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ new file mode 100644 index 0000000..b83d887 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KK/MTLEvent.h-10RR6B90YYNKK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KK/MTLEvent.h-10RR6B90YYNKK new file mode 100644 index 0000000..6a313c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KK/MTLEvent.h-10RR6B90YYNKK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL new file mode 100644 index 0000000..158fa28 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/AXHearingUtilities.h-3IW0CPV7QT0KM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/AXHearingUtilities.h-3IW0CPV7QT0KM new file mode 100644 index 0000000..98a9bcd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/AXHearingUtilities.h-3IW0CPV7QT0KM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM new file mode 100644 index 0000000..c11b623 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ColorSyncDevice.h-1AQHB24RQ9FKN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ColorSyncDevice.h-1AQHB24RQ9FKN new file mode 100644 index 0000000..ae3fe8b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ColorSyncDevice.h-1AQHB24RQ9FKN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN new file mode 100644 index 0000000..74b1601 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSHelpManager.h-MDR1J8E05PKN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSHelpManager.h-MDR1J8E05PKN new file mode 100644 index 0000000..7782cf5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSHelpManager.h-MDR1J8E05PKN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN new file mode 100644 index 0000000..406ea94 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN new file mode 100644 index 0000000..28113ef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP new file mode 100644 index 0000000..6bbe539 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KQ/NSResponder.h-2ZT580CQ2V2KQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KQ/NSResponder.h-2ZT580CQ2V2KQ new file mode 100644 index 0000000..459a06c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KQ/NSResponder.h-2ZT580CQ2V2KQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR new file mode 100644 index 0000000..11bf305 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR new file mode 100644 index 0000000..9aee30a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS new file mode 100644 index 0000000..a7b344a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS new file mode 100644 index 0000000..0c28d16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT new file mode 100644 index 0000000..51b7aae Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/CGGradient.h-9UWDRY8F9BKU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/CGGradient.h-9UWDRY8F9BKU new file mode 100644 index 0000000..9bdb454 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/CGGradient.h-9UWDRY8F9BKU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU new file mode 100644 index 0000000..a04bf4f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV new file mode 100644 index 0000000..6591ce0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KW/NSMagnificationGestureRecognizer.h-1GOTEYFTZF4KW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KW/NSMagnificationGestureRecognizer.h-1GOTEYFTZF4KW new file mode 100644 index 0000000..6eff19a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KW/NSMagnificationGestureRecognizer.h-1GOTEYFTZF4KW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KX/Base.h-193ZAB0RN3BKX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KX/Base.h-193ZAB0RN3BKX new file mode 100644 index 0000000..f1bd4a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KX/Base.h-193ZAB0RN3BKX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KY/CAEmitterCell.h-1ORRHNMN33SKY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KY/CAEmitterCell.h-1ORRHNMN33SKY new file mode 100644 index 0000000..ffb6525 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KY/CAEmitterCell.h-1ORRHNMN33SKY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KZ/MTL4CommandEncoder.h-XRSXNVQGY7KZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KZ/MTL4CommandEncoder.h-XRSXNVQGY7KZ new file mode 100644 index 0000000..352c3ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/KZ/MTL4CommandEncoder.h-XRSXNVQGY7KZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 new file mode 100644 index 0000000..bbd774e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/matrix_types.h-2QHKBXG7DFJL2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/matrix_types.h-2QHKBXG7DFJL2 new file mode 100644 index 0000000..2d5ac93 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/matrix_types.h-2QHKBXG7DFJL2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 new file mode 100644 index 0000000..6339774 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 new file mode 100644 index 0000000..176b67f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 new file mode 100644 index 0000000..bb61bb1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 new file mode 100644 index 0000000..3274f6f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 new file mode 100644 index 0000000..970ac07 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/ImSDK.swift-4WJ7EPAHXFL5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/ImSDK.swift-4WJ7EPAHXFL5 new file mode 100644 index 0000000..413a0fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/ImSDK.swift-4WJ7EPAHXFL5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 new file mode 100644 index 0000000..9332050 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/NSAttributedString.h-LTE6AZ7KEML6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/NSAttributedString.h-LTE6AZ7KEML6 new file mode 100644 index 0000000..ace730e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/NSAttributedString.h-LTE6AZ7KEML6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 new file mode 100644 index 0000000..647d290 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 new file mode 100644 index 0000000..c750605 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSAccessibilityCustomAction.h-1T7Y501PUKBL7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSAccessibilityCustomAction.h-1T7Y501PUKBL7 new file mode 100644 index 0000000..8773259 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSAccessibilityCustomAction.h-1T7Y501PUKBL7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSPrinter.h-2VKMHERA5HSL7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSPrinter.h-2VKMHERA5HSL7 new file mode 100644 index 0000000..436f047 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/NSPrinter.h-2VKMHERA5HSL7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 new file mode 100644 index 0000000..ca40424 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/NSPopover.h-63PQM33C8IL8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/NSPopover.h-63PQM33C8IL8 new file mode 100644 index 0000000..837fcf5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/NSPopover.h-63PQM33C8IL8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/CGColorSpace.h-UJ9KEA0YMQLA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/CGColorSpace.h-UJ9KEA0YMQLA new file mode 100644 index 0000000..618cb56 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/CGColorSpace.h-UJ9KEA0YMQLA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA new file mode 100644 index 0000000..8b3c16b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA new file mode 100644 index 0000000..15fa85d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/CTFontCollection.h-10FEV0BH2IBLB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/CTFontCollection.h-10FEV0BH2IBLB new file mode 100644 index 0000000..9780af9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/CTFontCollection.h-10FEV0BH2IBLB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/NSLayoutConstraint.h-3QSYID6HD3XLB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/NSLayoutConstraint.h-3QSYID6HD3XLB new file mode 100644 index 0000000..c2147da Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LB/NSLayoutConstraint.h-3QSYID6HD3XLB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC new file mode 100644 index 0000000..b0ce020 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LD/NSNib.h-34TOE9W8FNNLD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LD/NSNib.h-34TOE9W8FNNLD new file mode 100644 index 0000000..713f6e4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LD/NSNib.h-34TOE9W8FNNLD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE new file mode 100644 index 0000000..cdfecc3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE new file mode 100644 index 0000000..b3680a3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/CAMetalLayer.h-3PE6IN2GX9YLF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/CAMetalLayer.h-3PE6IN2GX9YLF new file mode 100644 index 0000000..0fe4468 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/CAMetalLayer.h-3PE6IN2GX9YLF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/NSTextLayoutFragment.h-2TJLV30X2DNLF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/NSTextLayoutFragment.h-2TJLV30X2DNLF new file mode 100644 index 0000000..c5f7884 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LF/NSTextLayoutFragment.h-2TJLV30X2DNLF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG new file mode 100644 index 0000000..94d0c7a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/SFNTLayoutTypes.h-LDT7ZLMTPYLG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/SFNTLayoutTypes.h-LDT7ZLMTPYLG new file mode 100644 index 0000000..1b72a0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/SFNTLayoutTypes.h-LDT7ZLMTPYLG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/gl.h-3UN5HVYR93VLG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/gl.h-3UN5HVYR93VLG new file mode 100644 index 0000000..22f0a6d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/gl.h-3UN5HVYR93VLG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSDataAsset.h-225UP9RR86PLH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSDataAsset.h-225UP9RR86PLH new file mode 100644 index 0000000..0d293f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSDataAsset.h-225UP9RR86PLH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH new file mode 100644 index 0000000..6c153ec Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH new file mode 100644 index 0000000..e1c63db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSView.h-2RR1VFZSHERLH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSView.h-2RR1VFZSHERLH new file mode 100644 index 0000000..64e5007 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSView.h-2RR1VFZSHERLH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH new file mode 100644 index 0000000..5a5c9df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI new file mode 100644 index 0000000..ab0b805 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ new file mode 100644 index 0000000..d4c35ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSPersistentStoreRequest.h-3HT4SBHPYVBLL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSPersistentStoreRequest.h-3HT4SBHPYVBLL new file mode 100644 index 0000000..f19b9d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSPersistentStoreRequest.h-3HT4SBHPYVBLL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSTitlebarAccessoryViewController.h-23CA0GY2X9OLL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSTitlebarAccessoryViewController.h-23CA0GY2X9OLL new file mode 100644 index 0000000..7edda26 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LL/NSTitlebarAccessoryViewController.h-23CA0GY2X9OLL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/CGFont.h-3M4IV2TLY9XLM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/CGFont.h-3M4IV2TLY9XLM new file mode 100644 index 0000000..06d2479 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/CGFont.h-3M4IV2TLY9XLM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSPrintOperation.h-33WRKL9JKWYLM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSPrintOperation.h-33WRKL9JKWYLM new file mode 100644 index 0000000..1aed043 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSPrintOperation.h-33WRKL9JKWYLM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSRelationshipDescription.h-34SG1NS1INVLM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSRelationshipDescription.h-34SG1NS1INVLM new file mode 100644 index 0000000..b11ef9a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LM/NSRelationshipDescription.h-34SG1NS1INVLM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFontDescriptor.h-YZJ9RTY5KLLN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFontDescriptor.h-YZJ9RTY5KLLN new file mode 100644 index 0000000..e71b076 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFontDescriptor.h-YZJ9RTY5KLLN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFramesetter.h-1SD1YEIZBJ5LN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFramesetter.h-1SD1YEIZBJ5LN new file mode 100644 index 0000000..dfafadc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/CTFramesetter.h-1SD1YEIZBJ5LN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN new file mode 100644 index 0000000..b22ea13 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO new file mode 100644 index 0000000..f2ba87c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO new file mode 100644 index 0000000..96bf919 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP new file mode 100644 index 0000000..34f9f70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSAtomicStore.h-25E4MFQCMRCLQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSAtomicStore.h-25E4MFQCMRCLQ new file mode 100644 index 0000000..497f4cb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSAtomicStore.h-25E4MFQCMRCLQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSRunningApplication.h-1K01XT2B0UILQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSRunningApplication.h-1K01XT2B0UILQ new file mode 100644 index 0000000..9d3868f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/NSRunningApplication.h-1K01XT2B0UILQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ new file mode 100644 index 0000000..2fbac45 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW new file mode 100644 index 0000000..d4059b6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX new file mode 100644 index 0000000..f1c913d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY new file mode 100644 index 0000000..f10b5be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LZ/CAAnimation.h-3SMYGRBRHLELZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LZ/CAAnimation.h-3SMYGRBRHLELZ new file mode 100644 index 0000000..f2f6a33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/LZ/CAAnimation.h-3SMYGRBRHLELZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 new file mode 100644 index 0000000..f975567 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 new file mode 100644 index 0000000..7b948a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/MTLRenderCommandEncoder.h-1JXXRV8MXJM2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/MTLRenderCommandEncoder.h-1JXXRV8MXJM2 new file mode 100644 index 0000000..9a4c7d3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/MTLRenderCommandEncoder.h-1JXXRV8MXJM2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/NSSegmentedControl.h-2CVSNG3PC20M2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/NSSegmentedControl.h-2CVSNG3PC20M2 new file mode 100644 index 0000000..30a1324 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/NSSegmentedControl.h-2CVSNG3PC20M2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 new file mode 100644 index 0000000..946160e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 new file mode 100644 index 0000000..ff02904 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 new file mode 100644 index 0000000..69767c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/NSSliderTouchBarItem.h-2X7KUNGP3ESM5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/NSSliderTouchBarItem.h-2X7KUNGP3ESM5 new file mode 100644 index 0000000..802b71d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/NSSliderTouchBarItem.h-2X7KUNGP3ESM5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 new file mode 100644 index 0000000..d4f0220 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 new file mode 100644 index 0000000..43ddfb2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/NSColor.h-O5J3C84HSBM6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/NSColor.h-O5J3C84HSBM6 new file mode 100644 index 0000000..6c8b593 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/NSColor.h-O5J3C84HSBM6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 new file mode 100644 index 0000000..efdd5fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 new file mode 100644 index 0000000..449a3cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 new file mode 100644 index 0000000..2aa41bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 new file mode 100644 index 0000000..5868009 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 new file mode 100644 index 0000000..785257d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 new file mode 100644 index 0000000..14c62fd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/host_info.h-PRBJEVJ868M9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/host_info.h-PRBJEVJ868M9 new file mode 100644 index 0000000..5559a68 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/host_info.h-PRBJEVJ868M9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/UTCoreTypes.h-3CR8P5QBNC1MA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/UTCoreTypes.h-3CR8P5QBNC1MA new file mode 100644 index 0000000..abf71de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/UTCoreTypes.h-3CR8P5QBNC1MA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA new file mode 100644 index 0000000..6f82d01 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB new file mode 100644 index 0000000..25903cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC new file mode 100644 index 0000000..df37c8f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MD/atomic.h-31ZRXW8VCKKMD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MD/atomic.h-31ZRXW8VCKKMD new file mode 100644 index 0000000..247cd51 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MD/atomic.h-31ZRXW8VCKKMD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF new file mode 100644 index 0000000..f9e7967 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/NSEPSImageRep.h-1MLJO3XMJHZMF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/NSEPSImageRep.h-1MLJO3XMJHZMF new file mode 100644 index 0000000..1b68338 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/NSEPSImageRep.h-1MLJO3XMJHZMF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG new file mode 100644 index 0000000..e3dc037 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH new file mode 100644 index 0000000..c0e4de4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/UNNotificationSettings.h-125Y9LWQYFHMH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/UNNotificationSettings.h-125Y9LWQYFHMH new file mode 100644 index 0000000..3c602d4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/UNNotificationSettings.h-125Y9LWQYFHMH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH new file mode 100644 index 0000000..59ea876 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH new file mode 100644 index 0000000..11585f9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSDerivedAttributeDescription.h-2J3HVXU6FR4MI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSDerivedAttributeDescription.h-2J3HVXU6FR4MI new file mode 100644 index 0000000..d0dc55e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSDerivedAttributeDescription.h-2J3HVXU6FR4MI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSTextCheckingClient.h-3QVMK323E78MI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSTextCheckingClient.h-3QVMK323E78MI new file mode 100644 index 0000000..e0d0b98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MI/NSTextCheckingClient.h-3QVMK323E78MI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/AXError.h-GIRJ18QKDWMJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/AXError.h-GIRJ18QKDWMJ new file mode 100644 index 0000000..675d74c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/AXError.h-GIRJ18QKDWMJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/MTL4RenderCommandEncoder.h-1AYPIF13ATCMJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/MTL4RenderCommandEncoder.h-1AYPIF13ATCMJ new file mode 100644 index 0000000..b4519f5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/MTL4RenderCommandEncoder.h-1AYPIF13ATCMJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ new file mode 100644 index 0000000..1d2d2ee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ new file mode 100644 index 0000000..faef055 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MK/ProfileView.swift-1M981Q4RX9BMK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MK/ProfileView.swift-1M981Q4RX9BMK new file mode 100644 index 0000000..d5412e7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MK/ProfileView.swift-1M981Q4RX9BMK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/CIImageProcessor.h-3PJE11IBQ7IMM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/CIImageProcessor.h-3PJE11IBQ7IMM new file mode 100644 index 0000000..5588206 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/CIImageProcessor.h-3PJE11IBQ7IMM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/NSTableColumn.h-XPX4L643HSMM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/NSTableColumn.h-XPX4L643HSMM new file mode 100644 index 0000000..4bce8e9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MM/NSTableColumn.h-XPX4L643HSMM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/CGToneMapping.h-3VGJLIEO8YMN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/CGToneMapping.h-3VGJLIEO8YMN new file mode 100644 index 0000000..6bb527e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/CGToneMapping.h-3VGJLIEO8YMN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN new file mode 100644 index 0000000..be64bc4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN new file mode 100644 index 0000000..fe4d932 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO new file mode 100644 index 0000000..3853c6d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/ipp.h-3TYQA3ECQ15MP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/ipp.h-3TYQA3ECQ15MP new file mode 100644 index 0000000..d09d68c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/ipp.h-3TYQA3ECQ15MP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP new file mode 100644 index 0000000..e072794 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/SPProjectiveTransform3D.h-1UPCCXFPD4JMQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/SPProjectiveTransform3D.h-1UPCCXFPD4JMQ new file mode 100644 index 0000000..f763fb4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/SPProjectiveTransform3D.h-1UPCCXFPD4JMQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ new file mode 100644 index 0000000..f642c21 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ new file mode 100644 index 0000000..9d4e48c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS new file mode 100644 index 0000000..0615a59 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS new file mode 100644 index 0000000..e115798 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/TokenStore.swift-22RA175CXT9MS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/TokenStore.swift-22RA175CXT9MS new file mode 100644 index 0000000..4f4d957 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/TokenStore.swift-22RA175CXT9MS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/sidechannel.h-U28EPRDIBDMS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/sidechannel.h-U28EPRDIBDMS new file mode 100644 index 0000000..c056566 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/sidechannel.h-U28EPRDIBDMS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS new file mode 100644 index 0000000..54e9907 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT new file mode 100644 index 0000000..532347c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/MTLArgumentEncoder.h-9COGMRHB22MT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/MTLArgumentEncoder.h-9COGMRHB22MT new file mode 100644 index 0000000..e327ef2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/MTLArgumentEncoder.h-9COGMRHB22MT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU new file mode 100644 index 0000000..8b2faa0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX new file mode 100644 index 0000000..065e1c3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/CVOpenGLBufferPool.h-ET4O92DI26MY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/CVOpenGLBufferPool.h-ET4O92DI26MY new file mode 100644 index 0000000..dc7afa2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/CVOpenGLBufferPool.h-ET4O92DI26MY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/Store.h-XDW5UACXS5MY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/Store.h-XDW5UACXS5MY new file mode 100644 index 0000000..2fc34c7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MY/Store.h-XDW5UACXS5MY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ new file mode 100644 index 0000000..19f655e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ new file mode 100644 index 0000000..54da647 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N0/CVOpenGLTexture.h-YMR8CJCGRQN0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N0/CVOpenGLTexture.h-YMR8CJCGRQN0 new file mode 100644 index 0000000..d73e53c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N0/CVOpenGLTexture.h-YMR8CJCGRQN0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 new file mode 100644 index 0000000..f250f70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/UNNotificationTrigger.h-1VEZ83JGH3ON2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/UNNotificationTrigger.h-1VEZ83JGH3ON2 new file mode 100644 index 0000000..72ac9b8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/UNNotificationTrigger.h-1VEZ83JGH3ON2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/language.h-3SQBJQ8QUWBN2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/language.h-3SQBJQ8QUWBN2 new file mode 100644 index 0000000..44e95ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N2/language.h-3SQBJQ8QUWBN2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 new file mode 100644 index 0000000..77ae94d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/UTDefines.h-1OFIMNLM6WTN4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/UTDefines.h-1OFIMNLM6WTN4 new file mode 100644 index 0000000..c3f5f6f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/UTDefines.h-1OFIMNLM6WTN4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/NSDockTile.h-1GDEZUXRRUEN5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/NSDockTile.h-1GDEZUXRRUEN5 new file mode 100644 index 0000000..ad344a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/NSDockTile.h-1GDEZUXRRUEN5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 new file mode 100644 index 0000000..8611299 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N6/NSController.h-10JHDXGP77HN6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N6/NSController.h-10JHDXGP77HN6 new file mode 100644 index 0000000..10fb7d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N6/NSController.h-10JHDXGP77HN6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/NSTouch.h-S48TCY0WUN7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/NSTouch.h-S48TCY0WUN7 new file mode 100644 index 0000000..70569ce Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/NSTouch.h-S48TCY0WUN7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 new file mode 100644 index 0000000..1a4f4a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SpatialEnumerations.h-2MOME15PQGIN7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SpatialEnumerations.h-2MOME15PQGIN7 new file mode 100644 index 0000000..878168a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SpatialEnumerations.h-2MOME15PQGIN7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 new file mode 100644 index 0000000..f97f215 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N8/NSBackgroundExtensionView.h-25MOPYEJX9WN8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N8/NSBackgroundExtensionView.h-25MOPYEJX9WN8 new file mode 100644 index 0000000..f618c74 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N8/NSBackgroundExtensionView.h-25MOPYEJX9WN8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 new file mode 100644 index 0000000..27adc6b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA new file mode 100644 index 0000000..58dcc1f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/CAEDRMetadata.h-1XG0LJATVA4NB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/CAEDRMetadata.h-1XG0LJATVA4NB new file mode 100644 index 0000000..a2aa11a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/CAEDRMetadata.h-1XG0LJATVA4NB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/MTLRasterizationRate.h-21NVBC99HTDNB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/MTLRasterizationRate.h-21NVBC99HTDNB new file mode 100644 index 0000000..d626533 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/MTLRasterizationRate.h-21NVBC99HTDNB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB new file mode 100644 index 0000000..31912fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND new file mode 100644 index 0000000..fe53ac0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND new file mode 100644 index 0000000..283bf71 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/CGLContext.h-3IFYS0454NXNE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/CGLContext.h-3IFYS0454NXNE new file mode 100644 index 0000000..86adff7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/CGLContext.h-3IFYS0454NXNE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE new file mode 100644 index 0000000..2801b0f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF new file mode 100644 index 0000000..b08dbdd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF new file mode 100644 index 0000000..9dccab4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF new file mode 100644 index 0000000..320deee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG new file mode 100644 index 0000000..5255215 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH new file mode 100644 index 0000000..3a0d542 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH new file mode 100644 index 0000000..e727fa3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI new file mode 100644 index 0000000..2307d22 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/arm64e-apple-macos.swiftinterface-1XJVOBF0AFNI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/arm64e-apple-macos.swiftinterface-1XJVOBF0AFNI new file mode 100644 index 0000000..30a1771 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/arm64e-apple-macos.swiftinterface-1XJVOBF0AFNI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ new file mode 100644 index 0000000..110ddf5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ new file mode 100644 index 0000000..687ccd8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ new file mode 100644 index 0000000..8c729c2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ new file mode 100644 index 0000000..183bf05 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/MTLComputePipeline.h-12WY5QU3PNENK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/MTLComputePipeline.h-12WY5QU3PNENK new file mode 100644 index 0000000..0c07c38 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/MTLComputePipeline.h-12WY5QU3PNENK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK new file mode 100644 index 0000000..3d72fdd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/gltypes.h-YYE6TZOJ54NK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/gltypes.h-YYE6TZOJ54NK new file mode 100644 index 0000000..deef4b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/gltypes.h-YYE6TZOJ54NK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK new file mode 100644 index 0000000..79330de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/UNNotificationServiceExtension.h-3R6CCTMRDETNL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/UNNotificationServiceExtension.h-3R6CCTMRDETNL new file mode 100644 index 0000000..318780f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/UNNotificationServiceExtension.h-3R6CCTMRDETNL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL new file mode 100644 index 0000000..509c707 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM new file mode 100644 index 0000000..a84d8d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSIncrementalStore.h-2WF7VOOWGQKNN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSIncrementalStore.h-2WF7VOOWGQKNN new file mode 100644 index 0000000..99390ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSIncrementalStore.h-2WF7VOOWGQKNN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSUserInterfaceItemSearching.h-1DVZN987UM7NN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSUserInterfaceItemSearching.h-1DVZN987UM7NN new file mode 100644 index 0000000..de78d16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NN/NSUserInterfaceItemSearching.h-1DVZN987UM7NN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO new file mode 100644 index 0000000..cf2324a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/NSTextLineFragment.h-H5AK2FFH3TNP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/NSTextLineFragment.h-H5AK2FFH3TNP new file mode 100644 index 0000000..7c682d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/NSTextLineFragment.h-H5AK2FFH3TNP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP new file mode 100644 index 0000000..887048b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/NSFetchedResultsController.h-2A9470AAYXNQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/NSFetchedResultsController.h-2A9470AAYXNQ new file mode 100644 index 0000000..3434d0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/NSFetchedResultsController.h-2A9470AAYXNQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/SpatialTypeConversion.h-346AA5PHP9BNQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/SpatialTypeConversion.h-346AA5PHP9BNQ new file mode 100644 index 0000000..7461aeb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NQ/SpatialTypeConversion.h-346AA5PHP9BNQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR new file mode 100644 index 0000000..d61e8fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR new file mode 100644 index 0000000..92947dd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR new file mode 100644 index 0000000..a317957 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NS/MTL4CommandBuffer.h-3W4TKRK0SFVNS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NS/MTL4CommandBuffer.h-3W4TKRK0SFVNS new file mode 100644 index 0000000..cc0c82d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NS/MTL4CommandBuffer.h-3W4TKRK0SFVNS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/MTL4FunctionDescriptor.h-3O3FQQ8VAORNT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/MTL4FunctionDescriptor.h-3O3FQQ8VAORNT new file mode 100644 index 0000000..d05236c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/MTL4FunctionDescriptor.h-3O3FQQ8VAORNT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/NSPersistentCloudKitContainerEventRequest.h-2EK978NZIVMNT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/NSPersistentCloudKitContainerEventRequest.h-2EK978NZIVMNT new file mode 100644 index 0000000..5c23c92 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/NSPersistentCloudKitContainerEventRequest.h-2EK978NZIVMNT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/queue.h-26T3V1RGBJENT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/queue.h-26T3V1RGBJENT new file mode 100644 index 0000000..e1beb50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NT/queue.h-26T3V1RGBJENT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW new file mode 100644 index 0000000..f8ac640 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/NSSavePanel.h-2I7C1TFUJFENX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/NSSavePanel.h-2I7C1TFUJFENX new file mode 100644 index 0000000..846493a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/NSSavePanel.h-2I7C1TFUJFENX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX new file mode 100644 index 0000000..745df8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY new file mode 100644 index 0000000..9d9b667 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY new file mode 100644 index 0000000..c2a9a37 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ new file mode 100644 index 0000000..814a3c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/CIImageAccumulator.h-3QJGKXBN37TO1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/CIImageAccumulator.h-3QJGKXBN37TO1 new file mode 100644 index 0000000..64500b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/CIImageAccumulator.h-3QJGKXBN37TO1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 new file mode 100644 index 0000000..a851033 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 new file mode 100644 index 0000000..bbe353f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 new file mode 100644 index 0000000..16a7374 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 new file mode 100644 index 0000000..2ca1025 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/MTLCaptureManager.h-3CJFYU54EDLO4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/MTLCaptureManager.h-3CJFYU54EDLO4 new file mode 100644 index 0000000..87943d5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/MTLCaptureManager.h-3CJFYU54EDLO4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/NSFetchedPropertyDescription.h-2T30LAL2KTMO4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/NSFetchedPropertyDescription.h-2T30LAL2KTMO4 new file mode 100644 index 0000000..4d6b8cf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/NSFetchedPropertyDescription.h-2T30LAL2KTMO4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 new file mode 100644 index 0000000..0261331 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSArrayController.h-2F5ZN7P4O7QO8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSArrayController.h-2F5ZN7P4O7QO8 new file mode 100644 index 0000000..04c6740 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSArrayController.h-2F5ZN7P4O7QO8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 new file mode 100644 index 0000000..1238138 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 new file mode 100644 index 0000000..539edb0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 new file mode 100644 index 0000000..af8a382 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA new file mode 100644 index 0000000..45d0e6f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC new file mode 100644 index 0000000..d033974 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC new file mode 100644 index 0000000..831c0f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC new file mode 100644 index 0000000..1a36c22 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE new file mode 100644 index 0000000..49a5e86 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE new file mode 100644 index 0000000..a55ade7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE new file mode 100644 index 0000000..d2bf994 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE new file mode 100644 index 0000000..3d80826 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF new file mode 100644 index 0000000..6ff7cbe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OG/AXCustomContent.h-BG0WURCKUTOG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OG/AXCustomContent.h-BG0WURCKUTOG new file mode 100644 index 0000000..cd0fb73 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OG/AXCustomContent.h-BG0WURCKUTOG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH new file mode 100644 index 0000000..fe2cb47 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH new file mode 100644 index 0000000..e69f781 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/AXTechnology.h-1APWVLB3Q7DOI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/AXTechnology.h-1APWVLB3Q7DOI new file mode 100644 index 0000000..39aaa2e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/AXTechnology.h-1APWVLB3Q7DOI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/MTLBinaryArchive.h-302OBINQ809OI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/MTLBinaryArchive.h-302OBINQ809OI new file mode 100644 index 0000000..6c9fdd6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OI/MTLBinaryArchive.h-302OBINQ809OI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ new file mode 100644 index 0000000..1245aea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ new file mode 100644 index 0000000..311a96f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK new file mode 100644 index 0000000..e000922 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/NSViewLayoutRegion.h-3OZWF6F8EHOL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/NSViewLayoutRegion.h-3OZWF6F8EHOL new file mode 100644 index 0000000..25dfbcb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/NSViewLayoutRegion.h-3OZWF6F8EHOL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM new file mode 100644 index 0000000..e00f5d4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO new file mode 100644 index 0000000..35866a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO new file mode 100644 index 0000000..db0fdcb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP new file mode 100644 index 0000000..98e32a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/NSText.h-1MMVD4S2S8DOP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/NSText.h-1MMVD4S2S8DOP new file mode 100644 index 0000000..ccca996 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/NSText.h-1MMVD4S2S8DOP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR new file mode 100644 index 0000000..7ab7b72 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR new file mode 100644 index 0000000..e55d377 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/NSAppleScriptExtensions.h-SL44PAXM5HOR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/NSAppleScriptExtensions.h-SL44PAXM5HOR new file mode 100644 index 0000000..a6d74e7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/NSAppleScriptExtensions.h-SL44PAXM5HOR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OS/NSWindowController.h-1GBKBC3RPOXOS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OS/NSWindowController.h-1GBKBC3RPOXOS new file mode 100644 index 0000000..a7b149b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OS/NSWindowController.h-1GBKBC3RPOXOS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT new file mode 100644 index 0000000..4d6c93a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/ConversationListView.swift-1ZA68VZ1VWUOU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/ConversationListView.swift-1ZA68VZ1VWUOU new file mode 100644 index 0000000..5a8b191 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/ConversationListView.swift-1ZA68VZ1VWUOU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU new file mode 100644 index 0000000..0b8ee9b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU new file mode 100644 index 0000000..a555079 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW new file mode 100644 index 0000000..a6574eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX new file mode 100644 index 0000000..25204c4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY new file mode 100644 index 0000000..b8d5c7e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/NSDrawer.h-36CND63453DOY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/NSDrawer.h-36CND63453DOY new file mode 100644 index 0000000..c0b65a6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/NSDrawer.h-36CND63453DOY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSAlert.h-31X5D1GGO9BOZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSAlert.h-31X5D1GGO9BOZ new file mode 100644 index 0000000..a23a887 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSAlert.h-31X5D1GGO9BOZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSCustomTouchBarItem.h-N169ZU2Z3VOZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSCustomTouchBarItem.h-N169ZU2Z3VOZ new file mode 100644 index 0000000..97276d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/NSCustomTouchBarItem.h-N169ZU2Z3VOZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ new file mode 100644 index 0000000..860b836 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 new file mode 100644 index 0000000..2d16f1a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P2/UTAdditions.h-3CBN3XXP5L8P2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P2/UTAdditions.h-3CBN3XXP5L8P2 new file mode 100644 index 0000000..b6d8440 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P2/UTAdditions.h-3CBN3XXP5L8P2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 new file mode 100644 index 0000000..6a82d6a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 new file mode 100644 index 0000000..8645d06 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/CAFrameRateRange.h-27FG0D7A8K4P5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/CAFrameRateRange.h-27FG0D7A8K4P5 new file mode 100644 index 0000000..c0083d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/CAFrameRateRange.h-27FG0D7A8K4P5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/NSKeyValueBinding.h-GXZXJ1QN4HP5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/NSKeyValueBinding.h-GXZXJ1QN4HP5 new file mode 100644 index 0000000..398b124 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P5/NSKeyValueBinding.h-GXZXJ1QN4HP5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/CGPSConverter.h-ZS90UI0REWP6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/CGPSConverter.h-ZS90UI0REWP6 new file mode 100644 index 0000000..603d95b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/CGPSConverter.h-ZS90UI0REWP6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 new file mode 100644 index 0000000..5fd5375 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 new file mode 100644 index 0000000..1281744 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/NSButtonCell.h-3HESUUBHTEZP7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/NSButtonCell.h-3HESUUBHTEZP7 new file mode 100644 index 0000000..533743c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/NSButtonCell.h-3HESUUBHTEZP7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 new file mode 100644 index 0000000..2edef90 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB new file mode 100644 index 0000000..4ec958b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/geometry.h-2DC8QBE3BMXPB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/geometry.h-2DC8QBE3BMXPB new file mode 100644 index 0000000..e3cfd98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/geometry.h-2DC8QBE3BMXPB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC new file mode 100644 index 0000000..88787c3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/UNNotificationResponse.h-1CC2Y22FY0NPC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/UNNotificationResponse.h-1CC2Y22FY0NPC new file mode 100644 index 0000000..9401994 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/UNNotificationResponse.h-1CC2Y22FY0NPC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/quaternion.h-17KND9X89J5PC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/quaternion.h-17KND9X89J5PC new file mode 100644 index 0000000..d6af21b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/quaternion.h-17KND9X89J5PC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD new file mode 100644 index 0000000..7a56f1d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE new file mode 100644 index 0000000..afd364e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PF/NSPersistentHistoryTransaction.h-1GUGN2W1S9IPF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PF/NSPersistentHistoryTransaction.h-1GUGN2W1S9IPF new file mode 100644 index 0000000..2d631c2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PF/NSPersistentHistoryTransaction.h-1GUGN2W1S9IPF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG new file mode 100644 index 0000000..04c5590 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG new file mode 100644 index 0000000..6fce1f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/ATSUnicodeDirectAccess.h-1VT3UK2XNOOPH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/ATSUnicodeDirectAccess.h-1VT3UK2XNOOPH new file mode 100644 index 0000000..cd82967 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/ATSUnicodeDirectAccess.h-1VT3UK2XNOOPH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH new file mode 100644 index 0000000..0f0b4e7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH new file mode 100644 index 0000000..7231991 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PJ/NSCell.h-33023CWPXJ8PJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PJ/NSCell.h-33023CWPXJ8PJ new file mode 100644 index 0000000..b65203a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PJ/NSCell.h-33023CWPXJ8PJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PL/NSMenuItem.h-2ZY9O2G53AVPL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PL/NSMenuItem.h-2ZY9O2G53AVPL new file mode 100644 index 0000000..77de0db Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PL/NSMenuItem.h-2ZY9O2G53AVPL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM new file mode 100644 index 0000000..b649fbf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/NSColorPicking.h-2C49ANS0W2QPN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/NSColorPicking.h-2C49ANS0W2QPN new file mode 100644 index 0000000..4b89b2d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/NSColorPicking.h-2C49ANS0W2QPN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN new file mode 100644 index 0000000..2c364de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP new file mode 100644 index 0000000..e4db422 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP new file mode 100644 index 0000000..1b7f00e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PQ/NSMenuItemCell.h-3LHR1MMMV3XPQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PQ/NSMenuItemCell.h-3LHR1MMMV3XPQ new file mode 100644 index 0000000..2ba8b77 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PQ/NSMenuItemCell.h-3LHR1MMMV3XPQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PS/cups.h-4HENKHO4DMPS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PS/cups.h-4HENKHO4DMPS new file mode 100644 index 0000000..a53bb05 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PS/cups.h-4HENKHO4DMPS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU new file mode 100644 index 0000000..a759ac1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU new file mode 100644 index 0000000..d7baba6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PV/NSMigrationStage.h-1JZY456WBEWPV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PV/NSMigrationStage.h-1JZY456WBEWPV new file mode 100644 index 0000000..17b3bc9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PV/NSMigrationStage.h-1JZY456WBEWPV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/MTL4PipelineState.h-3PK7N30EXIJPX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/MTL4PipelineState.h-3PK7N30EXIJPX new file mode 100644 index 0000000..993e7ca Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/MTL4PipelineState.h-3PK7N30EXIJPX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX new file mode 100644 index 0000000..9297890 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSTextInputClient.h-T7V6DPIM8HPX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSTextInputClient.h-T7V6DPIM8HPX new file mode 100644 index 0000000..c4ec264 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSTextInputClient.h-T7V6DPIM8HPX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/CGLCurrent.h-2IDJE3EQGDZPY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/CGLCurrent.h-2IDJE3EQGDZPY new file mode 100644 index 0000000..8ab9410 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/CGLCurrent.h-2IDJE3EQGDZPY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/NSPredicateEditorRowTemplate.h-3ALLYQDZAUIPY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/NSPredicateEditorRowTemplate.h-3ALLYQDZAUIPY new file mode 100644 index 0000000..63c9636 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/PY/NSPredicateEditorRowTemplate.h-3ALLYQDZAUIPY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q0/SPAffineTransform3D.h-2T7HF1DQ3FIQ0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q0/SPAffineTransform3D.h-2T7HF1DQ3FIQ0 new file mode 100644 index 0000000..586d019 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q0/SPAffineTransform3D.h-2T7HF1DQ3FIQ0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/CGRenderingBufferProvider.h-1D6II6M0QOAQ2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/CGRenderingBufferProvider.h-1D6II6M0QOAQ2 new file mode 100644 index 0000000..cec5321 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/CGRenderingBufferProvider.h-1D6II6M0QOAQ2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 new file mode 100644 index 0000000..af217a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 new file mode 100644 index 0000000..8c5a92b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 new file mode 100644 index 0000000..ac5a387 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 new file mode 100644 index 0000000..513ef16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CVMetalTexture.h-1KEAP16PUJJQ5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CVMetalTexture.h-1KEAP16PUJJQ5 new file mode 100644 index 0000000..e5bb01f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CVMetalTexture.h-1KEAP16PUJJQ5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CipherSuite.h-LTHKVEEFFTQ5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CipherSuite.h-LTHKVEEFFTQ5 new file mode 100644 index 0000000..a382563 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/CipherSuite.h-LTHKVEEFFTQ5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 new file mode 100644 index 0000000..bd5de72 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/MTLIOCommandBuffer.h-3A5W9VZLDPAQ6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/MTLIOCommandBuffer.h-3A5W9VZLDPAQ6 new file mode 100644 index 0000000..3ed2044 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/MTLIOCommandBuffer.h-3A5W9VZLDPAQ6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 new file mode 100644 index 0000000..b12fb8a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSStatusBarButton.h-2TV5K71QA51Q6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSStatusBarButton.h-2TV5K71QA51Q6 new file mode 100644 index 0000000..73984cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSStatusBarButton.h-2TV5K71QA51Q6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 new file mode 100644 index 0000000..c42ce5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q7/NSWindowTab.h-3R75ADYBSZ5Q7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q7/NSWindowTab.h-3R75ADYBSZ5Q7 new file mode 100644 index 0000000..d38dc9c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q7/NSWindowTab.h-3R75ADYBSZ5Q7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 new file mode 100644 index 0000000..742bd70 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 new file mode 100644 index 0000000..bce863e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 new file mode 100644 index 0000000..f89345b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 new file mode 100644 index 0000000..8d39233 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/EntryBoundary.h-2XHRH3TGT8DQA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/EntryBoundary.h-2XHRH3TGT8DQA new file mode 100644 index 0000000..87b523e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/EntryBoundary.h-2XHRH3TGT8DQA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA new file mode 100644 index 0000000..7077d63 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QB/CGImageProperties.h-30VJYHSKRSKQB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QB/CGImageProperties.h-30VJYHSKRSKQB new file mode 100644 index 0000000..441bb74 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QB/CGImageProperties.h-30VJYHSKRSKQB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC new file mode 100644 index 0000000..46fedd3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/CVReturn.h-3ROSE88KNAQQD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/CVReturn.h-3ROSE88KNAQQD new file mode 100644 index 0000000..92d25ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/CVReturn.h-3ROSE88KNAQQD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/NSTypesetter.h-G7YIBOLKOWQD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/NSTypesetter.h-G7YIBOLKOWQD new file mode 100644 index 0000000..43d9b2c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/NSTypesetter.h-G7YIBOLKOWQD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD new file mode 100644 index 0000000..930725e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/CGColorConversionInfo.h-2CHTOL7ZDIHQE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/CGColorConversionInfo.h-2CHTOL7ZDIHQE new file mode 100644 index 0000000..6e94931 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/CGColorConversionInfo.h-2CHTOL7ZDIHQE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/NSSplitViewController.h-1YV2IZ4W4P7QE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/NSSplitViewController.h-1YV2IZ4W4P7QE new file mode 100644 index 0000000..4294860 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/NSSplitViewController.h-1YV2IZ4W4P7QE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE new file mode 100644 index 0000000..4ce52eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QG/NSSlider.h-2ZFUXLFGT3OQG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QG/NSSlider.h-2ZFUXLFGT3OQG new file mode 100644 index 0000000..0d2e935 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QG/NSSlider.h-2ZFUXLFGT3OQG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH new file mode 100644 index 0000000..629a4e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH new file mode 100644 index 0000000..3d8a18f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH new file mode 100644 index 0000000..c1b7eaa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH new file mode 100644 index 0000000..a24b632 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/overflow.h-3BGG2ES81BQH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/overflow.h-3BGG2ES81BQH new file mode 100644 index 0000000..ec2d368 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/overflow.h-3BGG2ES81BQH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QJ/arm64e-apple-macos.swiftinterface-1Z1ALCIGNJ3QJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QJ/arm64e-apple-macos.swiftinterface-1Z1ALCIGNJ3QJ new file mode 100644 index 0000000..7ab2025 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QJ/arm64e-apple-macos.swiftinterface-1Z1ALCIGNJ3QJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QK/gluContext.h-2E3NXLL3QY3QK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QK/gluContext.h-2E3NXLL3QY3QK new file mode 100644 index 0000000..36894fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QK/gluContext.h-2E3NXLL3QY3QK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QL/NSTokenFieldCell.h-3IASAZZYKFOQL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QL/NSTokenFieldCell.h-3IASAZZYKFOQL new file mode 100644 index 0000000..8aae22a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QL/NSTokenFieldCell.h-3IASAZZYKFOQL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM new file mode 100644 index 0000000..c8a68a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QN/NSColorSampler.h-PKUCYA4GX1QN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QN/NSColorSampler.h-PKUCYA4GX1QN new file mode 100644 index 0000000..ea41ab2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QN/NSColorSampler.h-PKUCYA4GX1QN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO new file mode 100644 index 0000000..17a818b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO new file mode 100644 index 0000000..1619f41 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/matrix.h-2QPO412Q4SHQO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/matrix.h-2QPO412Q4SHQO new file mode 100644 index 0000000..5caf8e0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/matrix.h-2QPO412Q4SHQO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSAppearance.h-2UPVDKA8JLWQP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSAppearance.h-2UPVDKA8JLWQP new file mode 100644 index 0000000..e16f519 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSAppearance.h-2UPVDKA8JLWQP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP new file mode 100644 index 0000000..82e3682 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ new file mode 100644 index 0000000..407e98d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/NSToolbarItemGroup.h-1FFJ46CXUTCQQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/NSToolbarItemGroup.h-1FFJ46CXUTCQQ new file mode 100644 index 0000000..370f767 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/NSToolbarItemGroup.h-1FFJ46CXUTCQQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR new file mode 100644 index 0000000..2fa551f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSAccessibilityProtocols.h-U1M1UH4C23QR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSAccessibilityProtocols.h-U1M1UH4C23QR new file mode 100644 index 0000000..460bc50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSAccessibilityProtocols.h-U1M1UH4C23QR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR new file mode 100644 index 0000000..c8d0d92 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/CIFilter.h-3A4HC2KK87JQU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/CIFilter.h-3A4HC2KK87JQU new file mode 100644 index 0000000..5128787 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/CIFilter.h-3A4HC2KK87JQU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/NSCustomMigrationStage.h-2RFX8VETU17QU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/NSCustomMigrationStage.h-2RFX8VETU17QU new file mode 100644 index 0000000..d5d0b44 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QU/NSCustomMigrationStage.h-2RFX8VETU17QU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW new file mode 100644 index 0000000..3bedd50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW new file mode 100644 index 0000000..f63d9f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/CIPlugInInterface.h-3B3D2MD4WEJQX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/CIPlugInInterface.h-3B3D2MD4WEJQX new file mode 100644 index 0000000..40a3bf8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/CIPlugInInterface.h-3B3D2MD4WEJQX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX new file mode 100644 index 0000000..0ccceb7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QY/SFNTTypes.h-3NGJ1UXNNHMQY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QY/SFNTTypes.h-3NGJ1UXNNHMQY new file mode 100644 index 0000000..2bd71fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/QY/SFNTTypes.h-3NGJ1UXNNHMQY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R0/OSLog.h-3DHKTMYG7JWR0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R0/OSLog.h-3DHKTMYG7JWR0 new file mode 100644 index 0000000..fd6e61d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R0/OSLog.h-3DHKTMYG7JWR0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R2/CGPDFScanner.h-1OCXHKYSKEWR2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R2/CGPDFScanner.h-1OCXHKYSKEWR2 new file mode 100644 index 0000000..bc70f42 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R2/CGPDFScanner.h-1OCXHKYSKEWR2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R3/NSStackView.h-1V245EAXQFCR3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R3/NSStackView.h-1V245EAXQFCR3 new file mode 100644 index 0000000..b6c795e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R3/NSStackView.h-1V245EAXQFCR3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 new file mode 100644 index 0000000..8fb1d8b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 new file mode 100644 index 0000000..bb8fef5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/CGDisplayConfiguration.h-2V6CZRNA1PHR6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/CGDisplayConfiguration.h-2V6CZRNA1PHR6 new file mode 100644 index 0000000..2e03f4d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/CGDisplayConfiguration.h-2V6CZRNA1PHR6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 new file mode 100644 index 0000000..d3d6e0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 new file mode 100644 index 0000000..6bd921c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 new file mode 100644 index 0000000..bf8444f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 new file mode 100644 index 0000000..cc35153 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 new file mode 100644 index 0000000..14d279a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/NSPreviewRepresentingActivityItem.h-23TBZNI619IR9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/NSPreviewRepresentingActivityItem.h-23TBZNI619IR9 new file mode 100644 index 0000000..e916652 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/NSPreviewRepresentingActivityItem.h-23TBZNI619IR9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 new file mode 100644 index 0000000..7e6da69 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA new file mode 100644 index 0000000..f2b4835 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA new file mode 100644 index 0000000..083b7d6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD new file mode 100644 index 0000000..b2a7e49 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/MTLStageInputOutputDescriptor.h-2IL8QNZQIA0RD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/MTLStageInputOutputDescriptor.h-2IL8QNZQIA0RD new file mode 100644 index 0000000..66fb5b8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/MTLStageInputOutputDescriptor.h-2IL8QNZQIA0RD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD new file mode 100644 index 0000000..ca7a120 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RE/SecProtocolTypes.h-3V75L2DYS34RE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RE/SecProtocolTypes.h-3V75L2DYS34RE new file mode 100644 index 0000000..d15155a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RE/SecProtocolTypes.h-3V75L2DYS34RE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF new file mode 100644 index 0000000..39337eb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF new file mode 100644 index 0000000..1db2467 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH new file mode 100644 index 0000000..4a5f2a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH new file mode 100644 index 0000000..7d27822 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH new file mode 100644 index 0000000..d936087 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH new file mode 100644 index 0000000..9450f23 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/AXNotificationConstants.h-1NOBTD5WR2ORI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/AXNotificationConstants.h-1NOBTD5WR2ORI new file mode 100644 index 0000000..84d7b9c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/AXNotificationConstants.h-1NOBTD5WR2ORI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI new file mode 100644 index 0000000..301cc2b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ new file mode 100644 index 0000000..bb0a81a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RK/NSSpeechRecognizer.h-AR9LAP7I8RRK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RK/NSSpeechRecognizer.h-AR9LAP7I8RRK new file mode 100644 index 0000000..865b593 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RK/NSSpeechRecognizer.h-AR9LAP7I8RRK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN new file mode 100644 index 0000000..e5fdea2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/MTLPixelFormat.h-1BG21FSYHUKRO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/MTLPixelFormat.h-1BG21FSYHUKRO new file mode 100644 index 0000000..2fa9b7c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/MTLPixelFormat.h-1BG21FSYHUKRO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO new file mode 100644 index 0000000..d1431d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/NSVisualEffectView.h-10YVQRI9V4TRP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/NSVisualEffectView.h-10YVQRI9V4TRP new file mode 100644 index 0000000..a383c6d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/NSVisualEffectView.h-10YVQRI9V4TRP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP new file mode 100644 index 0000000..cefb4e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ new file mode 100644 index 0000000..c13baa9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ new file mode 100644 index 0000000..48acd71 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR new file mode 100644 index 0000000..0b49caf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR new file mode 100644 index 0000000..7c47e64 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/CALayer.h-1QAKBHZPH34RT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/CALayer.h-1QAKBHZPH34RT new file mode 100644 index 0000000..55b0d33 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/CALayer.h-1QAKBHZPH34RT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/ChatViewModel.swift-NTR5OSVZZ1RT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/ChatViewModel.swift-NTR5OSVZZ1RT new file mode 100644 index 0000000..3ad78fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/ChatViewModel.swift-NTR5OSVZZ1RT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/NSTextView.h-2W2IVIYJWOERT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/NSTextView.h-2W2IVIYJWOERT new file mode 100644 index 0000000..30c51c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RT/NSTextView.h-2W2IVIYJWOERT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV new file mode 100644 index 0000000..6f2a62a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV new file mode 100644 index 0000000..a735400 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV new file mode 100644 index 0000000..5d51994 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RX/NSComboBoxCell.h-39K85TC73LZRX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RX/NSComboBoxCell.h-39K85TC73LZRX new file mode 100644 index 0000000..2014b0a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RX/NSComboBoxCell.h-39K85TC73LZRX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY new file mode 100644 index 0000000..fd18b99 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ new file mode 100644 index 0000000..20a9dfd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S0/NSTableViewRowAction.h-3BTGI8RW2JSS0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S0/NSTableViewRowAction.h-3BTGI8RW2JSS0 new file mode 100644 index 0000000..ba8b269 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S0/NSTableViewRowAction.h-3BTGI8RW2JSS0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 new file mode 100644 index 0000000..01be1b4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S2/NSCompositeAttributeDescription.h-3MR7DR3L664S2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S2/NSCompositeAttributeDescription.h-3MR7DR3L664S2 new file mode 100644 index 0000000..32e5343 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S2/NSCompositeAttributeDescription.h-3MR7DR3L664S2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/CVPixelBufferPool.h-2XNX1LAFQ27S3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/CVPixelBufferPool.h-2XNX1LAFQ27S3 new file mode 100644 index 0000000..69cbd0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/CVPixelBufferPool.h-2XNX1LAFQ27S3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/NSComboBox.h-2B6DFU238ZOS3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/NSComboBox.h-2B6DFU238ZOS3 new file mode 100644 index 0000000..7fc8947 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/NSComboBox.h-2B6DFU238ZOS3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 new file mode 100644 index 0000000..145e895 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 new file mode 100644 index 0000000..b2b73b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 new file mode 100644 index 0000000..af52021 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 new file mode 100644 index 0000000..7c5ff63 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/arm_vector_types.h-23HC032MZ1GS5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/arm_vector_types.h-23HC032MZ1GS5 new file mode 100644 index 0000000..bcca226 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/arm_vector_types.h-23HC032MZ1GS5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S6/NSPersistentContainer.h-1VLARI8S5R5S6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S6/NSPersistentContainer.h-1VLARI8S5R5S6 new file mode 100644 index 0000000..190fee6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S6/NSPersistentContainer.h-1VLARI8S5R5S6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 new file mode 100644 index 0000000..324c630 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 new file mode 100644 index 0000000..9f7ce0a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 new file mode 100644 index 0000000..bc7d2bc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA new file mode 100644 index 0000000..3630258 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SB/AXMathExpression.h-1WM231BVV9XSB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SB/AXMathExpression.h-1WM231BVV9XSB new file mode 100644 index 0000000..00639d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SB/AXMathExpression.h-1WM231BVV9XSB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/NSTableView.h-1BBUSQ6X7TPSC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/NSTableView.h-1BBUSQ6X7TPSC new file mode 100644 index 0000000..d523852 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/NSTableView.h-1BBUSQ6X7TPSC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC new file mode 100644 index 0000000..9da8058 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SD/LoginView.swift-LL11BU8QKFSD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SD/LoginView.swift-LL11BU8QKFSD new file mode 100644 index 0000000..ce29a65 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SD/LoginView.swift-LL11BU8QKFSD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE new file mode 100644 index 0000000..94f0371 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/IOSurfaceObjC.h-IB2AKAICJWSF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/IOSurfaceObjC.h-IB2AKAICJWSF new file mode 100644 index 0000000..4b12fe3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/IOSurfaceObjC.h-IB2AKAICJWSF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/NSSwitch.h-2EHIULO3WRXSF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/NSSwitch.h-2EHIULO3WRXSF new file mode 100644 index 0000000..c6c9a25 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SF/NSSwitch.h-2EHIULO3WRXSF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG new file mode 100644 index 0000000..2ec9437 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG new file mode 100644 index 0000000..b086849 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SH/AXColorUtilities.h-19WBS2ONMSISH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SH/AXColorUtilities.h-19WBS2ONMSISH new file mode 100644 index 0000000..2db7179 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SH/AXColorUtilities.h-19WBS2ONMSISH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI new file mode 100644 index 0000000..f74bb30 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI new file mode 100644 index 0000000..a3c5891 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI new file mode 100644 index 0000000..c0c6a03 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI new file mode 100644 index 0000000..da580a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ new file mode 100644 index 0000000..e11ba63 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK new file mode 100644 index 0000000..cbc68f6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL new file mode 100644 index 0000000..5d52267 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SM/CGImageSource.h-YB9MBNEDXKSM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SM/CGImageSource.h-YB9MBNEDXKSM new file mode 100644 index 0000000..d957118 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SM/CGImageSource.h-YB9MBNEDXKSM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SO/NSTextInsertionIndicator.h-1F08WNI4HLRSO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SO/NSTextInsertionIndicator.h-1F08WNI4HLRSO new file mode 100644 index 0000000..fab2078 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SO/NSTextInsertionIndicator.h-1F08WNI4HLRSO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR new file mode 100644 index 0000000..7f96087 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SU/CGAffineTransform.h-ASAVJ274DISU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SU/CGAffineTransform.h-ASAVJ274DISU new file mode 100644 index 0000000..bb36462 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SU/CGAffineTransform.h-ASAVJ274DISU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/Enumerator.h-3PGUP0Y2OAMSV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/Enumerator.h-3PGUP0Y2OAMSV new file mode 100644 index 0000000..bda57ad Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/Enumerator.h-3PGUP0Y2OAMSV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV new file mode 100644 index 0000000..2254cd9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SY/CADisplayLink.h-1JWMI3ZWMLFSY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SY/CADisplayLink.h-1JWMI3ZWMLFSY new file mode 100644 index 0000000..2e36c10 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/SY/CADisplayLink.h-1JWMI3ZWMLFSY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/CGITUToneMapping.h-3UMO0NYNPSGT0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/CGITUToneMapping.h-3UMO0NYNPSGT0 new file mode 100644 index 0000000..becac96 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/CGITUToneMapping.h-3UMO0NYNPSGT0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 new file mode 100644 index 0000000..9fa1e53 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 new file mode 100644 index 0000000..a210c18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 new file mode 100644 index 0000000..f600049 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 new file mode 100644 index 0000000..3f784fd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 new file mode 100644 index 0000000..08804a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 new file mode 100644 index 0000000..32b3512 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 new file mode 100644 index 0000000..500364b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 new file mode 100644 index 0000000..1e2f36c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 new file mode 100644 index 0000000..b0cfbd8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T3/SPVector3DFloat.h-N7U21QX97WT3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T3/SPVector3DFloat.h-N7U21QX97WT3 new file mode 100644 index 0000000..544a03e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T3/SPVector3DFloat.h-N7U21QX97WT3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/ConversationListView.swift-2MUKEEVEGVPT4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/ConversationListView.swift-2MUKEEVEGVPT4 new file mode 100644 index 0000000..acb26ff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/ConversationListView.swift-2MUKEEVEGVPT4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/NSUserInterfaceItemIdentification.h-2NO350YZEUWT4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/NSUserInterfaceItemIdentification.h-2NO350YZEUWT4 new file mode 100644 index 0000000..35c9378 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/NSUserInterfaceItemIdentification.h-2NO350YZEUWT4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 new file mode 100644 index 0000000..c773c00 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 new file mode 100644 index 0000000..4b159d0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/MTLDeviceCertification.h-4789TY1J3CT5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/MTLDeviceCertification.h-4789TY1J3CT5 new file mode 100644 index 0000000..cb25275 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/MTLDeviceCertification.h-4789TY1J3CT5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/NSTreeNode.h-QBWBIF6ZOCT5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/NSTreeNode.h-QBWBIF6ZOCT5 new file mode 100644 index 0000000..1094ec3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/NSTreeNode.h-QBWBIF6ZOCT5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 new file mode 100644 index 0000000..a1bd6ba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 new file mode 100644 index 0000000..bbf274c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/arm64e-apple-macos.swiftinterface_Collection-18WMGY87CF9T6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/arm64e-apple-macos.swiftinterface_Collection-18WMGY87CF9T6 new file mode 100644 index 0000000..9d56c22 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/arm64e-apple-macos.swiftinterface_Collection-18WMGY87CF9T6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 new file mode 100644 index 0000000..43c9a93 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T7/CGSession.h-8KGNXYX6VZT7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T7/CGSession.h-8KGNXYX6VZT7 new file mode 100644 index 0000000..16e65c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T7/CGSession.h-8KGNXYX6VZT7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 new file mode 100644 index 0000000..bcefb87 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 new file mode 100644 index 0000000..5aa7b8f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/MTLFunctionConstantValues.h-167JWVA14YJT9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/MTLFunctionConstantValues.h-167JWVA14YJT9 new file mode 100644 index 0000000..dd036aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/MTLFunctionConstantValues.h-167JWVA14YJT9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 new file mode 100644 index 0000000..ae2d979 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 new file mode 100644 index 0000000..c7c1146 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA new file mode 100644 index 0000000..d4076b9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/NSHapticFeedback.h-39BEUYCU9GMTA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/NSHapticFeedback.h-39BEUYCU9GMTA new file mode 100644 index 0000000..5e902f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/NSHapticFeedback.h-39BEUYCU9GMTA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA new file mode 100644 index 0000000..1c5a675 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/NSDatePickerCell.h-3N2U16WLWL7TB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/NSDatePickerCell.h-3N2U16WLWL7TB new file mode 100644 index 0000000..358a444 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/NSDatePickerCell.h-3N2U16WLWL7TB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC new file mode 100644 index 0000000..a28655a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC new file mode 100644 index 0000000..3918bed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC new file mode 100644 index 0000000..0f6e627 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/CGColor.h-1BTROJIE17PTD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/CGColor.h-1BTROJIE17PTD new file mode 100644 index 0000000..bf29c26 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/CGColor.h-1BTROJIE17PTD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/NSParagraphStyle.h-7QYQONTV5KTD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/NSParagraphStyle.h-7QYQONTV5KTD new file mode 100644 index 0000000..5f3404b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/NSParagraphStyle.h-7QYQONTV5KTD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD new file mode 100644 index 0000000..6c5d4f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/MTL4CommandAllocator.h-5WYTR1JLVCTG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/MTL4CommandAllocator.h-5WYTR1JLVCTG new file mode 100644 index 0000000..0375318 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/MTL4CommandAllocator.h-5WYTR1JLVCTG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG new file mode 100644 index 0000000..f13728a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG new file mode 100644 index 0000000..f62ce29 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/MTLResidencySet.h-JA1LXPDKT9TH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/MTLResidencySet.h-JA1LXPDKT9TH new file mode 100644 index 0000000..c2d85f2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/MTLResidencySet.h-JA1LXPDKT9TH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/SPSphericalCoordinates3DFloat.h-1KQTXRMH5V2TH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/SPSphericalCoordinates3DFloat.h-1KQTXRMH5V2TH new file mode 100644 index 0000000..5ba1329 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TH/SPSphericalCoordinates3DFloat.h-1KQTXRMH5V2TH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI new file mode 100644 index 0000000..5d1b1dc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK new file mode 100644 index 0000000..29e1a21 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/arm64e-apple-macos.swiftinterface-1R9PFP5L5QCTK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/arm64e-apple-macos.swiftinterface-1R9PFP5L5QCTK new file mode 100644 index 0000000..151d9c8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/arm64e-apple-macos.swiftinterface-1R9PFP5L5QCTK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TL/MTL4ComputePipeline.h-14KME84XY2XTL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TL/MTL4ComputePipeline.h-14KME84XY2XTL new file mode 100644 index 0000000..f42f12b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TL/MTL4ComputePipeline.h-14KME84XY2XTL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM new file mode 100644 index 0000000..98a7eea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP new file mode 100644 index 0000000..c098247 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/ColorSyncBase.h-4UPXK946XFTQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/ColorSyncBase.h-4UPXK946XFTQ new file mode 100644 index 0000000..dca33bc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/ColorSyncBase.h-4UPXK946XFTQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ new file mode 100644 index 0000000..498666e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ new file mode 100644 index 0000000..b97090a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR new file mode 100644 index 0000000..625e5a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/MTL4Archive.h-EY9LPQMWMTTR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/MTL4Archive.h-EY9LPQMWMTTR new file mode 100644 index 0000000..36e6c7b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/MTL4Archive.h-EY9LPQMWMTTR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSSecureTextField.h-2XC1J5IUKHYTR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSSecureTextField.h-2XC1J5IUKHYTR new file mode 100644 index 0000000..e165224 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSSecureTextField.h-2XC1J5IUKHYTR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSTrackingSeparatorToolbarItem.h-O8HMPZF1DHTR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSTrackingSeparatorToolbarItem.h-O8HMPZF1DHTR new file mode 100644 index 0000000..f125c18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/NSTrackingSeparatorToolbarItem.h-O8HMPZF1DHTR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS new file mode 100644 index 0000000..5a0e311 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT new file mode 100644 index 0000000..34ca26f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSRuleEditor.h-2XA5VZPH2L4TT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSRuleEditor.h-2XA5VZPH2L4TT new file mode 100644 index 0000000..3980d3d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSRuleEditor.h-2XA5VZPH2L4TT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT new file mode 100644 index 0000000..6e1479e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU new file mode 100644 index 0000000..2187700 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/glext.h-2Z9W8HC6G9RTU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/glext.h-2Z9W8HC6G9RTU new file mode 100644 index 0000000..b6c67b2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/glext.h-2Z9W8HC6G9RTU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV new file mode 100644 index 0000000..afff976 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW new file mode 100644 index 0000000..5a2e0dd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TX/NSPersistentStoreCoordinator.h-15FBTWKJ4O7TX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TX/NSPersistentStoreCoordinator.h-15FBTWKJ4O7TX new file mode 100644 index 0000000..0e3263d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TX/NSPersistentStoreCoordinator.h-15FBTWKJ4O7TX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY new file mode 100644 index 0000000..96edce7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TZ/ColorSyncTransform.h-2SN4482YQZPTZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TZ/ColorSyncTransform.h-2SN4482YQZPTZ new file mode 100644 index 0000000..5e71cc6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/TZ/ColorSyncTransform.h-2SN4482YQZPTZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 new file mode 100644 index 0000000..c26d811 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 new file mode 100644 index 0000000..7e9d6e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U1/Processes.h-343Z5TA6QP1U1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U1/Processes.h-343Z5TA6QP1U1 new file mode 100644 index 0000000..f0e7d7a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U1/Processes.h-343Z5TA6QP1U1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U2/NSLightweightMigrationStage.h-336DXEAAYUYU2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U2/NSLightweightMigrationStage.h-336DXEAAYUYU2 new file mode 100644 index 0000000..2b7cad1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U2/NSLightweightMigrationStage.h-336DXEAAYUYU2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 new file mode 100644 index 0000000..e14c025 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U4/NSMovie.h-2OBKAQPH6UGU4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U4/NSMovie.h-2OBKAQPH6UGU4 new file mode 100644 index 0000000..511361e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U4/NSMovie.h-2OBKAQPH6UGU4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/NSAtomicStoreCacheNode.h-33W3OETV7IJU5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/NSAtomicStoreCacheNode.h-33W3OETV7IJU5 new file mode 100644 index 0000000..83b0631 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/NSAtomicStoreCacheNode.h-33W3OETV7IJU5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 new file mode 100644 index 0000000..471548d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/NSFontPanel.h-21EFYHVIIX1U6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/NSFontPanel.h-21EFYHVIIX1U6 new file mode 100644 index 0000000..3c0efee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/NSFontPanel.h-21EFYHVIIX1U6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/versioning.h-1TAMMMZ3YBIU6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/versioning.h-1TAMMMZ3YBIU6 new file mode 100644 index 0000000..a0beb8c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U6/versioning.h-1TAMMMZ3YBIU6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 new file mode 100644 index 0000000..add69a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/Icons.h-1JLVR1I0ZB8U7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/Icons.h-1JLVR1I0ZB8U7 new file mode 100644 index 0000000..77a64e1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/Icons.h-1JLVR1I0ZB8U7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 new file mode 100644 index 0000000..67597a1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 new file mode 100644 index 0000000..a65162c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 new file mode 100644 index 0000000..2401bb1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/NSTabView.h-23EAHUWZG7U8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/NSTabView.h-23EAHUWZG7U8 new file mode 100644 index 0000000..9c25d2a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/NSTabView.h-23EAHUWZG7U8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 new file mode 100644 index 0000000..4a43a82 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 new file mode 100644 index 0000000..7338a3a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 new file mode 100644 index 0000000..4cd3afd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/glu.h-1J1PW2PJ0LEU9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/glu.h-1J1PW2PJ0LEU9 new file mode 100644 index 0000000..15809ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/glu.h-1J1PW2PJ0LEU9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 new file mode 100644 index 0000000..ea751c4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/NSLayoutAnchor.h-1TZDW7XLNEVUA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/NSLayoutAnchor.h-1TZDW7XLNEVUA new file mode 100644 index 0000000..f526e4e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/NSLayoutAnchor.h-1TZDW7XLNEVUA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA new file mode 100644 index 0000000..26a428a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA new file mode 100644 index 0000000..4be0987 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA new file mode 100644 index 0000000..df05d54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB new file mode 100644 index 0000000..ff2f313 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC new file mode 100644 index 0000000..6e9ce82 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD new file mode 100644 index 0000000..42ad46c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD new file mode 100644 index 0000000..0456eb3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UE/NSGridView.h-14MM6CPOG6EUE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UE/NSGridView.h-14MM6CPOG6EUE new file mode 100644 index 0000000..badc49f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UE/NSGridView.h-14MM6CPOG6EUE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF new file mode 100644 index 0000000..dd67602 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSPasteboard.h-2PQHXF2YD2VUF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSPasteboard.h-2PQHXF2YD2VUF new file mode 100644 index 0000000..98637be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSPasteboard.h-2PQHXF2YD2VUF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/SPRotationAxis3D.h-3ON0KC3LIOOUF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/SPRotationAxis3D.h-3ON0KC3LIOOUF new file mode 100644 index 0000000..8137c3f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/SPRotationAxis3D.h-3ON0KC3LIOOUF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF new file mode 100644 index 0000000..b683d45 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG new file mode 100644 index 0000000..49444e0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH new file mode 100644 index 0000000..f5344ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/AXAttributeConstants.h-3J3SEWO4I0NUI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/AXAttributeConstants.h-3J3SEWO4I0NUI new file mode 100644 index 0000000..d7e11c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/AXAttributeConstants.h-3J3SEWO4I0NUI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/CAOpenGLLayer.h-1585FEQTVAWUI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/CAOpenGLLayer.h-1585FEQTVAWUI new file mode 100644 index 0000000..d7eb3f1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UI/CAOpenGLLayer.h-1585FEQTVAWUI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK new file mode 100644 index 0000000..f3cb140 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/arm64e-apple-macos.swiftinterface-R0KJCBPKWRUK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/arm64e-apple-macos.swiftinterface-R0KJCBPKWRUK new file mode 100644 index 0000000..b72d312 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/arm64e-apple-macos.swiftinterface-R0KJCBPKWRUK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM new file mode 100644 index 0000000..a9c6664 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSClipView.h-1D3O2GPHX83UM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSClipView.h-1D3O2GPHX83UM new file mode 100644 index 0000000..0380fa0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSClipView.h-1D3O2GPHX83UM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSFetchIndexDescription.h-2W9VS3A9MLJUM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSFetchIndexDescription.h-2W9VS3A9MLJUM new file mode 100644 index 0000000..ed6a7ef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/NSFetchIndexDescription.h-2W9VS3A9MLJUM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM new file mode 100644 index 0000000..2348687 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN new file mode 100644 index 0000000..1c2c361 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/CTFrame.h-1RT1DJ5GM72UN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/CTFrame.h-1RT1DJ5GM72UN new file mode 100644 index 0000000..379c4e3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/CTFrame.h-1RT1DJ5GM72UN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN new file mode 100644 index 0000000..7b4238a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN new file mode 100644 index 0000000..6a37e84 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UO/NSPathComponentCell.h-3LSBO9TEMXYUO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UO/NSPathComponentCell.h-3LSBO9TEMXYUO new file mode 100644 index 0000000..406b660 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UO/NSPathComponentCell.h-3LSBO9TEMXYUO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/NSImageCell.h-BFFLKSFSXOUP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/NSImageCell.h-BFFLKSFSXOUP new file mode 100644 index 0000000..203e49d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/NSImageCell.h-BFFLKSFSXOUP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP new file mode 100644 index 0000000..ae493f3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR new file mode 100644 index 0000000..e0d0e9f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/NSStringDrawing.h-27VPGYYLX9XUR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/NSStringDrawing.h-27VPGYYLX9XUR new file mode 100644 index 0000000..7cae7b7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/NSStringDrawing.h-27VPGYYLX9XUR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR new file mode 100644 index 0000000..81b09e0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/CTFontManagerErrors.h-JPCBZU0DR4US b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/CTFontManagerErrors.h-JPCBZU0DR4US new file mode 100644 index 0000000..32f7ec3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/CTFontManagerErrors.h-JPCBZU0DR4US differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS new file mode 100644 index 0000000..464813f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/file.h-2ILV2ALA1GPUS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/file.h-2ILV2ALA1GPUS new file mode 100644 index 0000000..c28c23c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/file.h-2ILV2ALA1GPUS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/gl3.h-2UNSPQB1OG1US b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/gl3.h-2UNSPQB1OG1US new file mode 100644 index 0000000..d9a55a5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/US/gl3.h-2UNSPQB1OG1US differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/NSUserInterfaceCompression.h-1ASQSSC4CXPUT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/NSUserInterfaceCompression.h-1ASQSSC4CXPUT new file mode 100644 index 0000000..1cbd55d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/NSUserInterfaceCompression.h-1ASQSSC4CXPUT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT new file mode 100644 index 0000000..24419e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV new file mode 100644 index 0000000..28fb61c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV new file mode 100644 index 0000000..b954e17 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW new file mode 100644 index 0000000..593acff Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX new file mode 100644 index 0000000..fe906b3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UZ/AXFoundation.h-16ZWEBNVUA6UZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UZ/AXFoundation.h-16ZWEBNVUA6UZ new file mode 100644 index 0000000..87be535 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/UZ/AXFoundation.h-16ZWEBNVUA6UZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V0/NSAffineTransform.h-3FW4EF9GGM8V0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V0/NSAffineTransform.h-3FW4EF9GGM8V0 new file mode 100644 index 0000000..b5b815f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V0/NSAffineTransform.h-3FW4EF9GGM8V0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 new file mode 100644 index 0000000..2af60df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CAMediaTiming.h-3T2FHEK9G3JV2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CAMediaTiming.h-3T2FHEK9G3JV2 new file mode 100644 index 0000000..2fd0ece Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CAMediaTiming.h-3T2FHEK9G3JV2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 new file mode 100644 index 0000000..754449c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/CTLine.h-16XPAUNBZQJV3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/CTLine.h-16XPAUNBZQJV3 new file mode 100644 index 0000000..774786f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/CTLine.h-16XPAUNBZQJV3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 new file mode 100644 index 0000000..79cd522 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V4/CAMetalDisplayLink.h-3R4H6FZXBS9V4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V4/CAMetalDisplayLink.h-3R4H6FZXBS9V4 new file mode 100644 index 0000000..4f887f8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V4/CAMetalDisplayLink.h-3R4H6FZXBS9V4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V5/CGImage.h-2QIYKETUBFJV5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V5/CGImage.h-2QIYKETUBFJV5 new file mode 100644 index 0000000..40ecbbc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V5/CGImage.h-2QIYKETUBFJV5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CTRunDelegate.h-23NOJXLPN44V6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CTRunDelegate.h-23NOJXLPN44V6 new file mode 100644 index 0000000..7c0bc08 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CTRunDelegate.h-23NOJXLPN44V6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CVMetalBuffer.h-1NXXL6AC25MV6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CVMetalBuffer.h-1NXXL6AC25MV6 new file mode 100644 index 0000000..1054bf9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V6/CVMetalBuffer.h-1NXXL6AC25MV6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V7/types.h-B8F99CQ5EUV7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V7/types.h-B8F99CQ5EUV7 new file mode 100644 index 0000000..233fc0b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V7/types.h-B8F99CQ5EUV7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 new file mode 100644 index 0000000..602760e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 new file mode 100644 index 0000000..4b40daf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 new file mode 100644 index 0000000..070a6aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA new file mode 100644 index 0000000..47ee1a9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB new file mode 100644 index 0000000..5d6320d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD new file mode 100644 index 0000000..0598add Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VE/NSWindowScripting.h-D5S5OBH2LJVE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VE/NSWindowScripting.h-D5S5OBH2LJVE new file mode 100644 index 0000000..4195f13 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VE/NSWindowScripting.h-D5S5OBH2LJVE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF new file mode 100644 index 0000000..bda2f80 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSButtonTouchBarItem.h-14U73TE1396VF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSButtonTouchBarItem.h-14U73TE1396VF new file mode 100644 index 0000000..48c78bc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSButtonTouchBarItem.h-14U73TE1396VF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSLayoutGuide.h-1DGOQQHPJ39VF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSLayoutGuide.h-1DGOQQHPJ39VF new file mode 100644 index 0000000..1bd47ec Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/NSLayoutGuide.h-1DGOQQHPJ39VF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH new file mode 100644 index 0000000..a1ea006 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSCollectionViewTransitionLayout.h-1X3LLXNS4BNVI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSCollectionViewTransitionLayout.h-1X3LLXNS4BNVI new file mode 100644 index 0000000..9f90b89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSCollectionViewTransitionLayout.h-1X3LLXNS4BNVI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSSearchField.h-2HNYCBZ8QJSVI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSSearchField.h-2HNYCBZ8QJSVI new file mode 100644 index 0000000..bc8a32d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VI/NSSearchField.h-2HNYCBZ8QJSVI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/CATransaction.h-2MYODMJ5RVEVJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/CATransaction.h-2MYODMJ5RVEVJ new file mode 100644 index 0000000..39f733b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/CATransaction.h-2MYODMJ5RVEVJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/NSFormCell.h-3VH0U4L8JPRVJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/NSFormCell.h-3VH0U4L8JPRVJ new file mode 100644 index 0000000..5251e30 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/NSFormCell.h-3VH0U4L8JPRVJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ new file mode 100644 index 0000000..3b015fa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/NSInputManager.h-2ZBHC7Q4TYVVK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/NSInputManager.h-2ZBHC7Q4TYVVK new file mode 100644 index 0000000..01a13bc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/NSInputManager.h-2ZBHC7Q4TYVVK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK new file mode 100644 index 0000000..8a46523 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VM/MTLAccelerationStructure.h-3NQJEZBF2SLVM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VM/MTLAccelerationStructure.h-3NQJEZBF2SLVM new file mode 100644 index 0000000..1380f1e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VM/MTLAccelerationStructure.h-3NQJEZBF2SLVM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN new file mode 100644 index 0000000..b7aef16 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN new file mode 100644 index 0000000..302681a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO new file mode 100644 index 0000000..cf5f422 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO new file mode 100644 index 0000000..de03261 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/UNNotificationContent.h-V635JJAQ4SVQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/UNNotificationContent.h-V635JJAQ4SVQ new file mode 100644 index 0000000..0c6e594 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/UNNotificationContent.h-V635JJAQ4SVQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ new file mode 100644 index 0000000..801bd67 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/NSWindow.h-2Y72POJJGXUVR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/NSWindow.h-2Y72POJJGXUVR new file mode 100644 index 0000000..e0233ce Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/NSWindow.h-2Y72POJJGXUVR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/OpenGL.h-3ID31A3QB0VR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/OpenGL.h-3ID31A3QB0VR new file mode 100644 index 0000000..31b74e8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/OpenGL.h-3ID31A3QB0VR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/UNNotificationAttributedMessageContext.h-1TBYFY7WTKJVR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/UNNotificationAttributedMessageContext.h-1TBYFY7WTKJVR new file mode 100644 index 0000000..b3a93bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/UNNotificationAttributedMessageContext.h-1TBYFY7WTKJVR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR new file mode 100644 index 0000000..4d61cae Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/CIImage.h-20WVSS84IJIVS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/CIImage.h-20WVSS84IJIVS new file mode 100644 index 0000000..45617b9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/CIImage.h-20WVSS84IJIVS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/NSManagedObjectContext.h-2G6Q5ZFB4F0VS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/NSManagedObjectContext.h-2G6Q5ZFB4F0VS new file mode 100644 index 0000000..5c4fdb4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VS/NSManagedObjectContext.h-2G6Q5ZFB4F0VS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU new file mode 100644 index 0000000..bc5c92e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU new file mode 100644 index 0000000..ffbc0d1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSDirection.h-26E0ZOCAYPNVU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSDirection.h-26E0ZOCAYPNVU new file mode 100644 index 0000000..d9d8861 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSDirection.h-26E0ZOCAYPNVU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/CTDefines.h-3I8P3LAQ1XIVV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/CTDefines.h-3I8P3LAQ1XIVV new file mode 100644 index 0000000..c2f5950 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/CTDefines.h-3I8P3LAQ1XIVV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/MTLParallelRenderCommandEncoder.h-7JZ5Y31T1KVV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/MTLParallelRenderCommandEncoder.h-7JZ5Y31T1KVV new file mode 100644 index 0000000..398059a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/MTLParallelRenderCommandEncoder.h-7JZ5Y31T1KVV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV new file mode 100644 index 0000000..31b9890 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/NSItemProvider.h-3H8L45NKS6EVW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/NSItemProvider.h-3H8L45NKS6EVW new file mode 100644 index 0000000..88d93c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/NSItemProvider.h-3H8L45NKS6EVW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW new file mode 100644 index 0000000..93e6b21 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W0/MTLTensor.h-G0L3Y878YYW0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W0/MTLTensor.h-G0L3Y878YYW0 new file mode 100644 index 0000000..5894cd9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W0/MTLTensor.h-G0L3Y878YYW0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 new file mode 100644 index 0000000..08cf58a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSPrintInfo.h-2AFAQV0MG2TW1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSPrintInfo.h-2AFAQV0MG2TW1 new file mode 100644 index 0000000..cad4ac1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSPrintInfo.h-2AFAQV0MG2TW1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSTableHeaderView.h-2U6BKD3TOLRW1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSTableHeaderView.h-2U6BKD3TOLRW1 new file mode 100644 index 0000000..124e979 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/NSTableHeaderView.h-2U6BKD3TOLRW1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 new file mode 100644 index 0000000..4d16f48 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/MTLResourceStatePass.h-2DWQPSELIIFW2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/MTLResourceStatePass.h-2DWQPSELIIFW2 new file mode 100644 index 0000000..82c4c0e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/MTLResourceStatePass.h-2DWQPSELIIFW2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/NSCIImageRep.h-1XMJ4JQ75YQW2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/NSCIImageRep.h-1XMJ4JQ75YQW2 new file mode 100644 index 0000000..fb758a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/NSCIImageRep.h-1XMJ4JQ75YQW2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 new file mode 100644 index 0000000..61db7bd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 new file mode 100644 index 0000000..3dedfe2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CGEventTypes.h-14CJQD9RRQJW4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CGEventTypes.h-14CJQD9RRQJW4 new file mode 100644 index 0000000..9dcb857 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CGEventTypes.h-14CJQD9RRQJW4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/MTLIndirectCommandBuffer.h-397PW1LRATQW4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/MTLIndirectCommandBuffer.h-397PW1LRATQW4 new file mode 100644 index 0000000..45c85bf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/MTLIndirectCommandBuffer.h-397PW1LRATQW4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/NSDraggingItem.h-2NDEKZADD60W4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/NSDraggingItem.h-2NDEKZADD60W4 new file mode 100644 index 0000000..93e09d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/NSDraggingItem.h-2NDEKZADD60W4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 new file mode 100644 index 0000000..e221004 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSActionCell.h-1MJBHTGMJ65W5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSActionCell.h-1MJBHTGMJ65W5 new file mode 100644 index 0000000..f90bec1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSActionCell.h-1MJBHTGMJ65W5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSItemBadge.h-2IC9BYW4SPSW5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSItemBadge.h-2IC9BYW4SPSW5 new file mode 100644 index 0000000..118705a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W5/NSItemBadge.h-2IC9BYW4SPSW5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W6/backend.h-270YBTOT7JJW6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W6/backend.h-270YBTOT7JJW6 new file mode 100644 index 0000000..c8205c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W6/backend.h-270YBTOT7JJW6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSAdaptiveImageGlyph.h-232G6POB8SHW7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSAdaptiveImageGlyph.h-232G6POB8SHW7 new file mode 100644 index 0000000..3aff57c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSAdaptiveImageGlyph.h-232G6POB8SHW7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 new file mode 100644 index 0000000..1e2d9a8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/CVBase.h-1JFUCAJB04GW9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/CVBase.h-1JFUCAJB04GW9 new file mode 100644 index 0000000..02c62a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/CVBase.h-1JFUCAJB04GW9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 new file mode 100644 index 0000000..9b51892 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 new file mode 100644 index 0000000..44bf47b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 new file mode 100644 index 0000000..bd23051 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/gl3ext.h-9S0SSOW8WCWA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/gl3ext.h-9S0SSOW8WCWA new file mode 100644 index 0000000..5a7a8cd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/gl3ext.h-9S0SSOW8WCWA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA new file mode 100644 index 0000000..b3815ea Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD new file mode 100644 index 0000000..3411a21 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/CVMetalTextureCache.h-3NDPRZATNL9WE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/CVMetalTextureCache.h-3NDPRZATNL9WE new file mode 100644 index 0000000..530bd5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/CVMetalTextureCache.h-3NDPRZATNL9WE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE new file mode 100644 index 0000000..3dfeb86 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE new file mode 100644 index 0000000..fdb1bf6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG new file mode 100644 index 0000000..9d1f5af Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG new file mode 100644 index 0000000..c9295da Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WH/object.h-2NCD5YG3IU8WH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WH/object.h-2NCD5YG3IU8WH new file mode 100644 index 0000000..1ae8672 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WH/object.h-2NCD5YG3IU8WH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI new file mode 100644 index 0000000..a0d7f3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI new file mode 100644 index 0000000..a7cf809 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI new file mode 100644 index 0000000..0eba9a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK new file mode 100644 index 0000000..ef6c4a4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSPersistentCloudKitContainer_SwiftOverlay.h-E39D4A1JEYWK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSPersistentCloudKitContainer_SwiftOverlay.h-E39D4A1JEYWK new file mode 100644 index 0000000..d8fc516 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSPersistentCloudKitContainer_SwiftOverlay.h-E39D4A1JEYWK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK new file mode 100644 index 0000000..1de5d0c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WL/SPPose3DFloat.h-1F9O905CIZZWL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WL/SPPose3DFloat.h-1F9O905CIZZWL new file mode 100644 index 0000000..f9caee6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WL/SPPose3DFloat.h-1F9O905CIZZWL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/MTL4CommandQueue.h-1VLO61XK8PKWM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/MTL4CommandQueue.h-1VLO61XK8PKWM new file mode 100644 index 0000000..8661c24 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/MTL4CommandQueue.h-1VLO61XK8PKWM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM new file mode 100644 index 0000000..c64bd83 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/NSTextCheckingController.h-13NGRIUVOLKWO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/NSTextCheckingController.h-13NGRIUVOLKWO new file mode 100644 index 0000000..9781744 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/NSTextCheckingController.h-13NGRIUVOLKWO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO new file mode 100644 index 0000000..b4303e5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO new file mode 100644 index 0000000..8896cfe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSEntityMapping.h-2L0VNJ28A9SWP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSEntityMapping.h-2L0VNJ28A9SWP new file mode 100644 index 0000000..f6637aa Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSEntityMapping.h-2L0VNJ28A9SWP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSTextListElement.h-5NUDYJSK4PWP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSTextListElement.h-5NUDYJSK4PWP new file mode 100644 index 0000000..2aa89d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/NSTextListElement.h-5NUDYJSK4PWP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP new file mode 100644 index 0000000..7194a03 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WQ/CABase.h-1VF8YWNQZLGWQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WQ/CABase.h-1VF8YWNQZLGWQ new file mode 100644 index 0000000..b14e77e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WQ/CABase.h-1VF8YWNQZLGWQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR new file mode 100644 index 0000000..f37bf98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR new file mode 100644 index 0000000..9bb3941 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/MTLDynamicLibrary.h-153MLUFWBEVWT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/MTLDynamicLibrary.h-153MLUFWBEVWT new file mode 100644 index 0000000..e889600 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/MTLDynamicLibrary.h-153MLUFWBEVWT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/NSTouchBar.h-1OWRWNXARCPWT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/NSTouchBar.h-1OWRWNXARCPWT new file mode 100644 index 0000000..c927ab3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/NSTouchBar.h-1OWRWNXARCPWT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT new file mode 100644 index 0000000..188c2a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/MTLVisibleFunctionTable.h-1LRD8BFUO9SWU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/MTLVisibleFunctionTable.h-1LRD8BFUO9SWU new file mode 100644 index 0000000..fc1c45e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/MTLVisibleFunctionTable.h-1LRD8BFUO9SWU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU new file mode 100644 index 0000000..1fed6c6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/AXTextAttributedString.h-S4XI0C7KVNWV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/AXTextAttributedString.h-S4XI0C7KVNWV new file mode 100644 index 0000000..7aff094 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/AXTextAttributedString.h-S4XI0C7KVNWV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV new file mode 100644 index 0000000..73c06c8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSGroupTouchBarItem.h-2OWCKY44YCIWW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSGroupTouchBarItem.h-2OWCKY44YCIWW new file mode 100644 index 0000000..c7589f0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSGroupTouchBarItem.h-2OWCKY44YCIWW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSTableViewDiffableDataSource.h-2GXWX87IZ61WW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSTableViewDiffableDataSource.h-2GXWX87IZ61WW new file mode 100644 index 0000000..f8c75c3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/NSTableViewDiffableDataSource.h-2GXWX87IZ61WW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW new file mode 100644 index 0000000..8ce78e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/base.h-1AQN4BPZH87WW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/base.h-1AQN4BPZH87WW new file mode 100644 index 0000000..c6217c6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/base.h-1AQN4BPZH87WW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX new file mode 100644 index 0000000..6a3facd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ new file mode 100644 index 0000000..5a97458 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/MTL4BinaryFunctionDescriptor.h-RKNCDK47GTX0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/MTL4BinaryFunctionDescriptor.h-RKNCDK47GTX0 new file mode 100644 index 0000000..8693ad6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/MTL4BinaryFunctionDescriptor.h-RKNCDK47GTX0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/arm_bf16.h-1NYQITHQXK2X0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/arm_bf16.h-1NYQITHQXK2X0 new file mode 100644 index 0000000..54a27ab Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X0/arm_bf16.h-1NYQITHQXK2X0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 new file mode 100644 index 0000000..9e9ff6e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 new file mode 100644 index 0000000..68e3081 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSDraggingSession.h-1F08KNP8OHVX2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSDraggingSession.h-1F08KNP8OHVX2 new file mode 100644 index 0000000..30f08de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSDraggingSession.h-1F08KNP8OHVX2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSIncrementalStoreNode.h-1N8XZARJ89X2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSIncrementalStoreNode.h-1N8XZARJ89X2 new file mode 100644 index 0000000..0278d5c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/NSIncrementalStoreNode.h-1N8XZARJ89X2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X3/MTL4StitchedFunctionDescriptor.h-GI16ILP769X3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X3/MTL4StitchedFunctionDescriptor.h-GI16ILP769X3 new file mode 100644 index 0000000..061522f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X3/MTL4StitchedFunctionDescriptor.h-GI16ILP769X3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X4/NSCollectionViewLayout.h-224J7JTNU1OX4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X4/NSCollectionViewLayout.h-224J7JTNU1OX4 new file mode 100644 index 0000000..c19e4c2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X4/NSCollectionViewLayout.h-224J7JTNU1OX4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/MTLAccelerationStructureTypes.h-2LR20R4C7S7X5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/MTLAccelerationStructureTypes.h-2LR20R4C7S7X5 new file mode 100644 index 0000000..4f2b467 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/MTLAccelerationStructureTypes.h-2LR20R4C7S7X5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/PMErrors.h-1FEHMTOBROOX5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/PMErrors.h-1FEHMTOBROOX5 new file mode 100644 index 0000000..6fe19d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X5/PMErrors.h-1FEHMTOBROOX5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 new file mode 100644 index 0000000..a058bc3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/CVHostTime.h-67CK02F203X7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/CVHostTime.h-67CK02F203X7 new file mode 100644 index 0000000..3c09815 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/CVHostTime.h-67CK02F203X7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 new file mode 100644 index 0000000..fb78df3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X9/NSPDFPanel.h-238BBG2GDLCX9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X9/NSPDFPanel.h-238BBG2GDLCX9 new file mode 100644 index 0000000..c109813 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/X9/NSPDFPanel.h-238BBG2GDLCX9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIContext.h-24W75K0BSO4XA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIContext.h-24W75K0BSO4XA new file mode 100644 index 0000000..5486227 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIContext.h-24W75K0BSO4XA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIPlugIn.h-WRDVWG6HNRXA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIPlugIn.h-WRDVWG6HNRXA new file mode 100644 index 0000000..be4950b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XA/CIPlugIn.h-WRDVWG6HNRXA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC new file mode 100644 index 0000000..81980ed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/MTLAccelerationStructureCommandEncoder.h-352ZI6SEA20XC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/MTLAccelerationStructureCommandEncoder.h-352ZI6SEA20XC new file mode 100644 index 0000000..a5c8a8e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/MTLAccelerationStructureCommandEncoder.h-352ZI6SEA20XC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XD/NSRulerMarker.h-9PNL1KZMEAXD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XD/NSRulerMarker.h-9PNL1KZMEAXD new file mode 100644 index 0000000..f6c6f3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XD/NSRulerMarker.h-9PNL1KZMEAXD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XE/CGDisplayFade.h-EUWZ2MIZAAXE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XE/CGDisplayFade.h-EUWZ2MIZAAXE new file mode 100644 index 0000000..7822287 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XE/CGDisplayFade.h-EUWZ2MIZAAXE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF new file mode 100644 index 0000000..cc8e14e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/NSApplicationScripting.h-2XMYPMDGQYDXG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/NSApplicationScripting.h-2XMYPMDGQYDXG new file mode 100644 index 0000000..4a6d532 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/NSApplicationScripting.h-2XMYPMDGQYDXG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG new file mode 100644 index 0000000..2a20fb3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG new file mode 100644 index 0000000..c4040c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XI/SPVector3D.h-B7J0I7YPAKXI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XI/SPVector3D.h-B7J0I7YPAKXI new file mode 100644 index 0000000..a82b96a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XI/SPVector3D.h-B7J0I7YPAKXI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK new file mode 100644 index 0000000..cc08a59 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/CIBarcodeDescriptor.h-1K4ZEAWAWFZXL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/CIBarcodeDescriptor.h-1K4ZEAWAWFZXL new file mode 100644 index 0000000..36900a0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/CIBarcodeDescriptor.h-1K4ZEAWAWFZXL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/Pasteboard.h-2FTQ179KB9QXL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/Pasteboard.h-2FTQ179KB9QXL new file mode 100644 index 0000000..1f9c958 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XL/Pasteboard.h-2FTQ179KB9QXL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM new file mode 100644 index 0000000..eabeffc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM new file mode 100644 index 0000000..bc09720 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO new file mode 100644 index 0000000..229e7ba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO new file mode 100644 index 0000000..d5e8abb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/CVImageBuffer.h-328P78TFIYDXP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/CVImageBuffer.h-328P78TFIYDXP new file mode 100644 index 0000000..d7d3a97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/CVImageBuffer.h-328P78TFIYDXP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP new file mode 100644 index 0000000..16082d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP new file mode 100644 index 0000000..6395fda Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/CVDisplayLink.h-2J1JZ0M98BPXQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/CVDisplayLink.h-2J1JZ0M98BPXQ new file mode 100644 index 0000000..090daf3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/CVDisplayLink.h-2J1JZ0M98BPXQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ new file mode 100644 index 0000000..0ed717a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR new file mode 100644 index 0000000..2b10d00 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/MTLDefines.h-21K1I35XWKUXR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/MTLDefines.h-21K1I35XWKUXR new file mode 100644 index 0000000..0037c79 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/MTLDefines.h-21K1I35XWKUXR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/NSObjectController.h-W9VGDVPPB4XR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/NSObjectController.h-W9VGDVPPB4XR new file mode 100644 index 0000000..b2b3df8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/NSObjectController.h-W9VGDVPPB4XR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR new file mode 100644 index 0000000..902a1dd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XT/MTLResourceStateCommandEncoder.h-1SHXXSYO9ALXT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XT/MTLResourceStateCommandEncoder.h-1SHXXSYO9ALXT new file mode 100644 index 0000000..82cddb0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XT/MTLResourceStateCommandEncoder.h-1SHXXSYO9ALXT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU new file mode 100644 index 0000000..c337502 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/NSCursor.h-36XZPU2YGK4XU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/NSCursor.h-36XZPU2YGK4XU new file mode 100644 index 0000000..aa3f5bb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/NSCursor.h-36XZPU2YGK4XU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV new file mode 100644 index 0000000..2255a6c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/NSUserDefaultsController.h-2YAHCRJ9K8SXV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/NSUserDefaultsController.h-2YAHCRJ9K8SXV new file mode 100644 index 0000000..46c31cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/NSUserDefaultsController.h-2YAHCRJ9K8SXV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX new file mode 100644 index 0000000..6ebac89 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX new file mode 100644 index 0000000..28ca2a6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CATransformLayer.h-3JT0LRDGTRGXY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CATransformLayer.h-3JT0LRDGTRGXY new file mode 100644 index 0000000..c401f55 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CATransformLayer.h-3JT0LRDGTRGXY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY new file mode 100644 index 0000000..54c8ded Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/MTLLogState.h-38ZN9FEEDTPXZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/MTLLogState.h-38ZN9FEEDTPXZ new file mode 100644 index 0000000..08d205d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/MTLLogState.h-38ZN9FEEDTPXZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/PMPrintSettingsKeys.h-3I7A96H59CXXZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/PMPrintSettingsKeys.h-3I7A96H59CXXZ new file mode 100644 index 0000000..ea9ee17 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/XZ/PMPrintSettingsKeys.h-3I7A96H59CXXZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSBatchUpdateRequest.h-2OO4KFFFL02Y0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSBatchUpdateRequest.h-2OO4KFFFL02Y0 new file mode 100644 index 0000000..8657409 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSBatchUpdateRequest.h-2OO4KFFFL02Y0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSTokenField.h-32TKY6AKL5QY0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSTokenField.h-32TKY6AKL5QY0 new file mode 100644 index 0000000..9522f1d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSTokenField.h-32TKY6AKL5QY0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 new file mode 100644 index 0000000..6f0c817 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 new file mode 100644 index 0000000..bf3245a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 new file mode 100644 index 0000000..0c9ffed Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 new file mode 100644 index 0000000..a575d81 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/NSAccessibilityCustomRotor.h-3I6HDKGF68AY1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/NSAccessibilityCustomRotor.h-3I6HDKGF68AY1 new file mode 100644 index 0000000..624d6e2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/NSAccessibilityCustomRotor.h-3I6HDKGF68AY1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 new file mode 100644 index 0000000..ed2df11 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 new file mode 100644 index 0000000..006f166 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y3/NSBatchInsertRequest.h-OO1H876PD0Y3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y3/NSBatchInsertRequest.h-OO1H876PD0Y3 new file mode 100644 index 0000000..2ea3f69 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y3/NSBatchInsertRequest.h-OO1H876PD0Y3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 new file mode 100644 index 0000000..4ecac1f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 new file mode 100644 index 0000000..cdeb6de Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 new file mode 100644 index 0000000..eeb91d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 new file mode 100644 index 0000000..6c772a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/AuthViewModel.swift-ZNLWVELZYFYA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/AuthViewModel.swift-ZNLWVELZYFYA new file mode 100644 index 0000000..ecf7848 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/AuthViewModel.swift-ZNLWVELZYFYA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGEvent.h-10K6A4C9VWEYA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGEvent.h-10K6A4C9VWEYA new file mode 100644 index 0000000..1503451 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGEvent.h-10K6A4C9VWEYA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGImageMetadata.h-26UKEWGIYSMYA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGImageMetadata.h-26UKEWGIYSMYA new file mode 100644 index 0000000..9289fb6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGImageMetadata.h-26UKEWGIYSMYA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGPDFString.h-J46L309O2KYA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGPDFString.h-J46L309O2KYA new file mode 100644 index 0000000..0a4c338 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/CGPDFString.h-J46L309O2KYA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/NSSpellChecker.h-6OHX1O84YVYA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/NSSpellChecker.h-6OHX1O84YVYA new file mode 100644 index 0000000..ba8f15f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YA/NSSpellChecker.h-6OHX1O84YVYA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/AppKitErrors.h-1ESAXHGG8MUYB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/AppKitErrors.h-1ESAXHGG8MUYB new file mode 100644 index 0000000..87428d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/AppKitErrors.h-1ESAXHGG8MUYB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/CGWindowLevel.h-9E5BWYR6PBYB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/CGWindowLevel.h-9E5BWYR6PBYB new file mode 100644 index 0000000..cf09d30 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YB/CGWindowLevel.h-9E5BWYR6PBYB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/MTLBlitCommandEncoder.h-MQMNNGBZ38YC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/MTLBlitCommandEncoder.h-MQMNNGBZ38YC new file mode 100644 index 0000000..cd8f118 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/MTLBlitCommandEncoder.h-MQMNNGBZ38YC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/NSATSTypesetter.h-1UHIO8LBCRCYC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/NSATSTypesetter.h-1UHIO8LBCRCYC new file mode 100644 index 0000000..dc432c5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YC/NSATSTypesetter.h-1UHIO8LBCRCYC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YD/MTLFunctionStitching.h-1HL2J9DHESXYD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YD/MTLFunctionStitching.h-1HL2J9DHESXYD new file mode 100644 index 0000000..61c21f6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YD/MTLFunctionStitching.h-1HL2J9DHESXYD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGLDevice.h-1CCBK4BUZADYE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGLDevice.h-1CCBK4BUZADYE new file mode 100644 index 0000000..3a07803 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGLDevice.h-1CCBK4BUZADYE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGPDFOperatorTable.h-1W0FP7B226ZYE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGPDFOperatorTable.h-1W0FP7B226ZYE new file mode 100644 index 0000000..2cd2888 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/CGPDFOperatorTable.h-1W0FP7B226ZYE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE new file mode 100644 index 0000000..e993166 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YF/MTLVertexDescriptor.h-239NUDU8MI2YF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YF/MTLVertexDescriptor.h-239NUDU8MI2YF new file mode 100644 index 0000000..edd4c31 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YF/MTLVertexDescriptor.h-239NUDU8MI2YF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/NSWritingToolsCoordinatorAnimationParameters.h-1MPO9JUTIOSYG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/NSWritingToolsCoordinatorAnimationParameters.h-1MPO9JUTIOSYG new file mode 100644 index 0000000..b785c03 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/NSWritingToolsCoordinatorAnimationParameters.h-1MPO9JUTIOSYG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG new file mode 100644 index 0000000..3f49555 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH new file mode 100644 index 0000000..5b1f9c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YJ/NSLayoutManager.h-1NCTI8W0GEIYJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YJ/NSLayoutManager.h-1NCTI8W0GEIYJ new file mode 100644 index 0000000..3c6ecee Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YJ/NSLayoutManager.h-1NCTI8W0GEIYJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YM/NSStepperTouchBarItem.h-350SMY4FE97YM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YM/NSStepperTouchBarItem.h-350SMY4FE97YM new file mode 100644 index 0000000..ac1c2fc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YM/NSStepperTouchBarItem.h-350SMY4FE97YM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YP/SPRay3D.h-3J92JOS6SMQYP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YP/SPRay3D.h-3J92JOS6SMQYP new file mode 100644 index 0000000..71bd609 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YP/SPRay3D.h-3J92JOS6SMQYP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/MTL4MeshRenderPipeline.h-3J2IHC2AUAGYQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/MTL4MeshRenderPipeline.h-3J2IHC2AUAGYQ new file mode 100644 index 0000000..4f00002 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/MTL4MeshRenderPipeline.h-3J2IHC2AUAGYQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ new file mode 100644 index 0000000..03db300 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/CAConstraintLayoutManager.h-8W9RSE82HBYR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/CAConstraintLayoutManager.h-8W9RSE82HBYR new file mode 100644 index 0000000..65771a2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/CAConstraintLayoutManager.h-8W9RSE82HBYR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR new file mode 100644 index 0000000..6bc333c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/CoreText.h-2LQGDXMS0KMYS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/CoreText.h-2LQGDXMS0KMYS new file mode 100644 index 0000000..d4ca994 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/CoreText.h-2LQGDXMS0KMYS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/signpost.h-36EYX1Y14A3YS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/signpost.h-36EYX1Y14A3YS new file mode 100644 index 0000000..efa3d72 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YS/signpost.h-36EYX1Y14A3YS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT new file mode 100644 index 0000000..fda9bef Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT new file mode 100644 index 0000000..499eb63 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/LoginView.swift-2U6N8AUFQNBYU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/LoginView.swift-2U6N8AUFQNBYU new file mode 100644 index 0000000..06d6416 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/LoginView.swift-2U6N8AUFQNBYU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU new file mode 100644 index 0000000..549d575 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/CAScrollLayer.h-1TA9XM9DU6KYV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/CAScrollLayer.h-1TA9XM9DU6KYV new file mode 100644 index 0000000..839becf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/CAScrollLayer.h-1TA9XM9DU6KYV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV new file mode 100644 index 0000000..02aca3b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/NSTextAlternatives.h-SY02SHAPEBYV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/NSTextAlternatives.h-SY02SHAPEBYV new file mode 100644 index 0000000..59eee18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/NSTextAlternatives.h-SY02SHAPEBYV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV new file mode 100644 index 0000000..e5b0e2a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV new file mode 100644 index 0000000..6848f18 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW new file mode 100644 index 0000000..49f79d7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW new file mode 100644 index 0000000..539681c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW new file mode 100644 index 0000000..d146012 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW new file mode 100644 index 0000000..168f297 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX new file mode 100644 index 0000000..2cc39a9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY new file mode 100644 index 0000000..fbdd550 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY new file mode 100644 index 0000000..fb9d08b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSButton.h-4KAOUU66OEYY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSButton.h-4KAOUU66OEYY new file mode 100644 index 0000000..c3ae9a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSButton.h-4KAOUU66OEYY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSGraphicsContext.h-3UQJTGX3M2RYY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSGraphicsContext.h-3UQJTGX3M2RYY new file mode 100644 index 0000000..19d0706 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSGraphicsContext.h-3UQJTGX3M2RYY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY new file mode 100644 index 0000000..b52db97 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YZ/conversion.h-3DX4TNJSIVGYZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YZ/conversion.h-3DX4TNJSIVGYZ new file mode 100644 index 0000000..9d6428e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/YZ/conversion.h-3DX4TNJSIVGYZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 new file mode 100644 index 0000000..80ac77f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 new file mode 100644 index 0000000..d786447 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/UNNotificationAction.h-3LJKM1T93R6Z1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/UNNotificationAction.h-3LJKM1T93R6Z1 new file mode 100644 index 0000000..8553352 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/UNNotificationAction.h-3LJKM1T93R6Z1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/CAEmitterLayer.h-1KJRVLD8896Z2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/CAEmitterLayer.h-1KJRVLD8896Z2 new file mode 100644 index 0000000..d74388d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/CAEmitterLayer.h-1KJRVLD8896Z2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 new file mode 100644 index 0000000..ef379ce Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 new file mode 100644 index 0000000..90bc7b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 new file mode 100644 index 0000000..b9279be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/NSGraphics.h-XYOSLSZZX1Z7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/NSGraphics.h-XYOSLSZZX1Z7 new file mode 100644 index 0000000..feb0ac2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/NSGraphics.h-XYOSLSZZX1Z7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 new file mode 100644 index 0000000..9cc9ca6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 new file mode 100644 index 0000000..7b6e0be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/CTFont.h-1CEAQQPOIQVZ8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/CTFont.h-1CEAQQPOIQVZ8 new file mode 100644 index 0000000..82c2591 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/CTFont.h-1CEAQQPOIQVZ8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/NSTableHeaderCell.h-1UCFL09SAWZ8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/NSTableHeaderCell.h-1UCFL09SAWZ8 new file mode 100644 index 0000000..88c5125 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z8/NSTableHeaderCell.h-1UCFL09SAWZ8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 new file mode 100644 index 0000000..74136d4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 new file mode 100644 index 0000000..c9b32ca Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 new file mode 100644 index 0000000..b43d449 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/CTTypesetter.h-2UQ0F7YR8TRZA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/CTTypesetter.h-2UQ0F7YR8TRZA new file mode 100644 index 0000000..4f231a3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/CTTypesetter.h-2UQ0F7YR8TRZA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/MTLComputePass.h-1MIDFPD5BJ3ZA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/MTLComputePass.h-1MIDFPD5BJ3ZA new file mode 100644 index 0000000..5b23890 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZA/MTLComputePass.h-1MIDFPD5BJ3ZA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/CGConvertColorDataWithFormat.h-2V4YKTV9S34ZB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/CGConvertColorDataWithFormat.h-2V4YKTV9S34ZB new file mode 100644 index 0000000..61274c7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/CGConvertColorDataWithFormat.h-2V4YKTV9S34ZB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/NSPersistentStoreDescription.h-3HC40I3RIWWZB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/NSPersistentStoreDescription.h-3HC40I3RIWWZB new file mode 100644 index 0000000..a277170 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/NSPersistentStoreDescription.h-3HC40I3RIWWZB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB new file mode 100644 index 0000000..02c2631 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB new file mode 100644 index 0000000..8640e31 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC new file mode 100644 index 0000000..6e097c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/arm64e-apple-macos.swiftinterface-Z81LBEB9QPZC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/arm64e-apple-macos.swiftinterface-Z81LBEB9QPZC new file mode 100644 index 0000000..3272bd4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/arm64e-apple-macos.swiftinterface-Z81LBEB9QPZC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC new file mode 100644 index 0000000..f5d62e3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC new file mode 100644 index 0000000..420075c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/MTL4ComputeCommandEncoder.h-2PY1JQJPJ81ZD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/MTL4ComputeCommandEncoder.h-2PY1JQJPJ81ZD new file mode 100644 index 0000000..8d976d9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/MTL4ComputeCommandEncoder.h-2PY1JQJPJ81ZD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/NSControl.h-RFGOTKYC2NZD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/NSControl.h-RFGOTKYC2NZD new file mode 100644 index 0000000..07982dd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/NSControl.h-RFGOTKYC2NZD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD new file mode 100644 index 0000000..fb252b1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/CGPDFDictionary.h-2ZDW6R5PEBIZE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/CGPDFDictionary.h-2ZDW6R5PEBIZE new file mode 100644 index 0000000..d9b12d2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/CGPDFDictionary.h-2ZDW6R5PEBIZE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSMatrix.h-WPOAFUJMH8ZE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSMatrix.h-WPOAFUJMH8ZE new file mode 100644 index 0000000..22e7691 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSMatrix.h-WPOAFUJMH8ZE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE new file mode 100644 index 0000000..fee6ff6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE new file mode 100644 index 0000000..2f30076 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/CGDirectDisplayMetal.h-1TPJHC088D1ZF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/CGDirectDisplayMetal.h-1TPJHC088D1ZF new file mode 100644 index 0000000..d192db8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/CGDirectDisplayMetal.h-1TPJHC088D1ZF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/NSColorWell.h-3DUXMQG004JZF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/NSColorWell.h-3DUXMQG004JZF new file mode 100644 index 0000000..1572ed9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZF/NSColorWell.h-3DUXMQG004JZF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/AXWebConstants.h-35VA0WEFUQMZG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/AXWebConstants.h-35VA0WEFUQMZG new file mode 100644 index 0000000..740e356 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/AXWebConstants.h-35VA0WEFUQMZG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG new file mode 100644 index 0000000..f459cdc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG new file mode 100644 index 0000000..da29210 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG new file mode 100644 index 0000000..24dd7fb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/CGShading.h-3NTVPXJFZZ1ZH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/CGShading.h-3NTVPXJFZZ1ZH new file mode 100644 index 0000000..b4614b4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/CGShading.h-3NTVPXJFZZ1ZH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH new file mode 100644 index 0000000..f8ad16f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZI/NSGlassEffectView.h-X78G0WWLHZI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZI/NSGlassEffectView.h-X78G0WWLHZI new file mode 100644 index 0000000..bd2d452 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZI/NSGlassEffectView.h-X78G0WWLHZI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ new file mode 100644 index 0000000..c2f6c6a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZL/MTL4SpecializedFunctionDescriptor.h-2C0X28WSZASZL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZL/MTL4SpecializedFunctionDescriptor.h-2C0X28WSZASZL new file mode 100644 index 0000000..36cb46b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZL/MTL4SpecializedFunctionDescriptor.h-2C0X28WSZASZL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZN/_symbol_aliasing.h-MK3LMA66BKZN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZN/_symbol_aliasing.h-MK3LMA66BKZN new file mode 100644 index 0000000..8fd45f6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZN/_symbol_aliasing.h-MK3LMA66BKZN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO new file mode 100644 index 0000000..617bcdf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/NSPersistentHistoryChangeRequest.h-7Z6SG55OGFZO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/NSPersistentHistoryChangeRequest.h-7Z6SG55OGFZO new file mode 100644 index 0000000..5971d37 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/NSPersistentHistoryChangeRequest.h-7Z6SG55OGFZO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/NSNibOutletConnector.h-880SR9HC1GZP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/NSNibOutletConnector.h-880SR9HC1GZP new file mode 100644 index 0000000..aac960f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/NSNibOutletConnector.h-880SR9HC1GZP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP new file mode 100644 index 0000000..dd58815 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZQ/NSMediaLibraryBrowserController.h-224ICW5S4D8ZQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZQ/NSMediaLibraryBrowserController.h-224ICW5S4D8ZQ new file mode 100644 index 0000000..636a1df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZQ/NSMediaLibraryBrowserController.h-224ICW5S4D8ZQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR new file mode 100644 index 0000000..f04f995 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR new file mode 100644 index 0000000..6a51c98 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR new file mode 100644 index 0000000..58c848f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS new file mode 100644 index 0000000..0629187 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/NSSearchToolbarItem.h-3TPPM3N9U28ZS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/NSSearchToolbarItem.h-3TPPM3N9U28ZS new file mode 100644 index 0000000..6450d01 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/NSSearchToolbarItem.h-3TPPM3N9U28ZS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/IOPM.h-4E6U4WEU2NZT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/IOPM.h-4E6U4WEU2NZT new file mode 100644 index 0000000..5caba10 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/IOPM.h-4E6U4WEU2NZT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSOpenPanel.h-L93XC5TDRFZT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSOpenPanel.h-L93XC5TDRFZT new file mode 100644 index 0000000..a36643d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSOpenPanel.h-L93XC5TDRFZT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSTabViewController.h-1KWF2WVWB3GZT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSTabViewController.h-1KWF2WVWB3GZT new file mode 100644 index 0000000..391ac25 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/NSTabViewController.h-1KWF2WVWB3GZT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/SPAngle.h-BX2WF08P5ZZT b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/SPAngle.h-BX2WF08P5ZZT new file mode 100644 index 0000000..3dd17e0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZT/SPAngle.h-BX2WF08P5ZZT differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW new file mode 100644 index 0000000..65eb0b4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSFontAssetRequest.h-2MC9NFE9R02ZX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSFontAssetRequest.h-2MC9NFE9R02ZX new file mode 100644 index 0000000..4793a55 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSFontAssetRequest.h-2MC9NFE9R02ZX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSOpenGLLayer.h-UWTG03XPWJZX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSOpenGLLayer.h-UWTG03XPWJZX new file mode 100644 index 0000000..bdabbac Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/NSOpenGLLayer.h-UWTG03XPWJZX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX new file mode 100644 index 0000000..cd88664 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX new file mode 100644 index 0000000..f799da1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY new file mode 100644 index 0000000..34817bd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/AXValue.h-1LTJU47ZRHVZZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/AXValue.h-1LTJU47ZRHVZZ new file mode 100644 index 0000000..afd6392 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/AXValue.h-1LTJU47ZRHVZZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSColorPickerTouchBarItem.h-2WE59SJJU6QZZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSColorPickerTouchBarItem.h-2WE59SJJU6QZZ new file mode 100644 index 0000000..81050e3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSColorPickerTouchBarItem.h-2WE59SJJU6QZZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ new file mode 100644 index 0000000..035a980 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ new file mode 100644 index 0000000..44a6435 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Accessibility-RCJSN2GG3RAR.pcm-2HUVZFQ68WNDS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Accessibility-RCJSN2GG3RAR.pcm-2HUVZFQ68WNDS new file mode 100644 index 0000000..652a404 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Accessibility-RCJSN2GG3RAR.pcm-2HUVZFQ68WNDS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApiClient.swift.o-2UR0FFR8E375F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApiClient.swift.o-2UR0FFR8E375F new file mode 100644 index 0000000..02d6e3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApiClient.swift.o-2UR0FFR8E375F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AppKit-2VI8NB39I5AT6.pcm-3OZ7BVPPQIQYR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AppKit-2VI8NB39I5AT6.pcm-3OZ7BVPPQIQYR new file mode 100644 index 0000000..b546f8d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AppKit-2VI8NB39I5AT6.pcm-3OZ7BVPPQIQYR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApplicationServices-3NXEUUZF9JJBD.pcm-Z346XS0EG3Z6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApplicationServices-3NXEUUZF9JJBD.pcm-Z346XS0EG3Z6 new file mode 100644 index 0000000..ca32c22 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ApplicationServices-3NXEUUZF9JJBD.pcm-Z346XS0EG3Z6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AuthViewModel.swift.o-1C5G1RAV8PCCN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AuthViewModel.swift.o-1C5G1RAV8PCCN new file mode 100644 index 0000000..0a5b736 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/AuthViewModel.swift.o-1C5G1RAV8PCCN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-7Z9RDX9NSU0Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-7Z9RDX9NSU0Z new file mode 100644 index 0000000..50f45da Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-7Z9RDX9NSU0Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CUPS-1HLHMKUB322XA.pcm-W5SCNAG2GI7X b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CUPS-1HLHMKUB322XA.pcm-W5SCNAG2GI7X new file mode 100644 index 0000000..ac5e00e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CUPS-1HLHMKUB322XA.pcm-W5SCNAG2GI7X differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatView.swift.o-16DQXY1RN8AKX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatView.swift.o-16DQXY1RN8AKX new file mode 100644 index 0000000..4861889 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatView.swift.o-16DQXY1RN8AKX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatViewModel.swift.o-1V7GW638BGN2G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatViewModel.swift.o-1V7GW638BGN2G new file mode 100644 index 0000000..122e699 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ChatViewModel.swift.o-1V7GW638BGN2G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ColorSync-3EIM4S8RXNRVI.pcm-1WU1ZRPB0E03J b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ColorSync-3EIM4S8RXNRVI.pcm-1WU1ZRPB0E03J new file mode 100644 index 0000000..bce7ca7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ColorSync-3EIM4S8RXNRVI.pcm-1WU1ZRPB0E03J differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationListView.swift.o-1OMZA6YAUIWO7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationListView.swift.o-1OMZA6YAUIWO7 new file mode 100644 index 0000000..456c4df Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationListView.swift.o-1OMZA6YAUIWO7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationViewModel.swift.o-1I2LJ34MN6YH1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationViewModel.swift.o-1I2LJ34MN6YH1 new file mode 100644 index 0000000..6e880e6 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ConversationViewModel.swift.o-1I2LJ34MN6YH1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreData-1KHK1L2CYC2N6.pcm-4MAOCT12ASP1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreData-1KHK1L2CYC2N6.pcm-4MAOCT12ASP1 new file mode 100644 index 0000000..a31ed2d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreData-1KHK1L2CYC2N6.pcm-4MAOCT12ASP1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2W91XFQZARY4D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2W91XFQZARY4D new file mode 100644 index 0000000..7c62a91 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2W91XFQZARY4D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreGraphics-1PSDCAYCIV3T9.pcm-2OP0DXGM62WFZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreGraphics-1PSDCAYCIV3T9.pcm-2OP0DXGM62WFZ new file mode 100644 index 0000000..7950cfb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreGraphics-1PSDCAYCIV3T9.pcm-2OP0DXGM62WFZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreImage-39ZO87840M5PP.pcm-2EA3IGCBO82TS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreImage-39ZO87840M5PP.pcm-2EA3IGCBO82TS new file mode 100644 index 0000000..5766d3c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreImage-39ZO87840M5PP.pcm-2EA3IGCBO82TS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-JTAA10U1VCAJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-JTAA10U1VCAJ new file mode 100644 index 0000000..ea4de6c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-JTAA10U1VCAJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreText-3FAL1B4J38DIR.pcm-886XESRXN3OS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreText-3FAL1B4J38DIR.pcm-886XESRXN3OS new file mode 100644 index 0000000..fecdffe Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreText-3FAL1B4J38DIR.pcm-886XESRXN3OS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreTransferable-27T896KGHFB3R.pcm-2GPJLESIFS8HF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreTransferable-27T896KGHFB3R.pcm-2GPJLESIFS8HF new file mode 100644 index 0000000..a72a979 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreTransferable-27T896KGHFB3R.pcm-2GPJLESIFS8HF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreVideo-DBBGB2LXU3HG.pcm-1AO9UGXMUVWVG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreVideo-DBBGB2LXU3HG.pcm-1AO9UGXMUVWVG new file mode 100644 index 0000000..928fb96 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreVideo-DBBGB2LXU3HG.pcm-1AO9UGXMUVWVG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-1ITEAEMWE4AOH b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-1ITEAEMWE4AOH new file mode 100644 index 0000000..ee8e3a7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-1ITEAEMWE4AOH differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DemoModels.swift.o-24BW2R9IPCE60 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DemoModels.swift.o-24BW2R9IPCE60 new file mode 100644 index 0000000..34edecb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DemoModels.swift.o-24BW2R9IPCE60 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm-1MUSBK9JUBY0S b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm-1MUSBK9JUBY0S new file mode 100644 index 0000000..07e852a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DeveloperToolsSupport-3SUCMSK9ZS2JA.pcm-1MUSBK9JUBY0S differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2BXSXG7LUI0UG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2BXSXG7LUI0UG new file mode 100644 index 0000000..7c7e892 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2BXSXG7LUI0UG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-KRGUWYE4ZHS6 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-KRGUWYE4ZHS6 new file mode 100644 index 0000000..ced9fba Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-KRGUWYE4ZHS6 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-27K3TAAUX48VW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-27K3TAAUX48VW new file mode 100644 index 0000000..7849245 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-27K3TAAUX48VW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-20SLY1H6W3157 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-20SLY1H6W3157 new file mode 100644 index 0000000..6de1b50 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-20SLY1H6W3157 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOSurface-26455DPS9NDS0.pcm-2LZMUJ5ELR4AB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOSurface-26455DPS9NDS0.pcm-2LZMUJ5ELR4AB new file mode 100644 index 0000000..6bad228 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/IOSurface-26455DPS9NDS0.pcm-2LZMUJ5ELR4AB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImClient.swift.o-1TQSROFQKGN4T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImClient.swift.o-1TQSROFQKGN4T new file mode 100644 index 0000000..35c6fb4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImClient.swift.o-1TQSROFQKGN4T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImSDK.swift.o-VRMFVTRPTQHU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImSDK.swift.o-VRMFVTRPTQHU new file mode 100644 index 0000000..dc3b3c8 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImSDK.swift.o-VRMFVTRPTQHU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImTypes.swift.o-QAZ1WBFBCIVW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImTypes.swift.o-QAZ1WBFBCIVW new file mode 100644 index 0000000..1d8eed4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImTypes.swift.o-QAZ1WBFBCIVW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImageIO-2ZSF831VT29UB.pcm-2XIKMSL67IU2B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImageIO-2ZSF831VT29UB.pcm-2XIKMSL67IU2B new file mode 100644 index 0000000..29b074c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ImageIO-2ZSF831VT29UB.pcm-2XIKMSL67IU2B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/LoginView.swift.o-2WPLMH3QIOL1D b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/LoginView.swift.o-2WPLMH3QIOL1D new file mode 100644 index 0000000..2c45138 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/LoginView.swift.o-2WPLMH3QIOL1D differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1H5GDAP9MHYYS b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1H5GDAP9MHYYS new file mode 100644 index 0000000..bb97c25 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1H5GDAP9MHYYS differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Metal-1GCZV9N85NJOH.pcm-2CMBU87D2BRBJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Metal-1GCZV9N85NJOH.pcm-2CMBU87D2BRBJ new file mode 100644 index 0000000..8bc500c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Metal-1GCZV9N85NJOH.pcm-2CMBU87D2BRBJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OSLog-218FBXNFJGY61.pcm-3PVCWBNPOX5VC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OSLog-218FBXNFJGY61.pcm-3PVCWBNPOX5VC new file mode 100644 index 0000000..ed46d74 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OSLog-218FBXNFJGY61.pcm-3PVCWBNPOX5VC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-MBLXW21BHVR7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-MBLXW21BHVR7 new file mode 100644 index 0000000..1f0787b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-MBLXW21BHVR7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OpenGL-H89XJT7GTCP.pcm-3NJ3BOUWMGQAQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OpenGL-H89XJT7GTCP.pcm-3NJ3BOUWMGQAQ new file mode 100644 index 0000000..c4cd122 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/OpenGL-H89XJT7GTCP.pcm-3NJ3BOUWMGQAQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ProfileView.swift.o-RR6YLBPHH25F b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ProfileView.swift.o-RR6YLBPHH25F new file mode 100644 index 0000000..8d5e872 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ProfileView.swift.o-RR6YLBPHH25F differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/PushSDK.swift.o-3AA37P6Q1Y8EO b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/PushSDK.swift.o-3AA37P6Q1Y8EO new file mode 100644 index 0000000..5fd88af Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/PushSDK.swift.o-3AA37P6Q1Y8EO differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/QuartzCore-39A8LQKF980J1.pcm-2NZBH93J95BUD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/QuartzCore-39A8LQKF980J1.pcm-2NZBH93J95BUD new file mode 100644 index 0000000..ce59166 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/QuartzCore-39A8LQKF980J1.pcm-2NZBH93J95BUD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SDKConfig.swift.o-3TKK12HASP0NQ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SDKConfig.swift.o-3TKK12HASP0NQ new file mode 100644 index 0000000..e563f08 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SDKConfig.swift.o-3TKK12HASP0NQ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-1G3CVCHXYBAEI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-1G3CVCHXYBAEI new file mode 100644 index 0000000..27ae11e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-1G3CVCHXYBAEI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Spatial-1JZLH83HN83CS.pcm-3R7KGMIJLG95T b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Spatial-1JZLH83HN83CS.pcm-3R7KGMIJLG95T new file mode 100644 index 0000000..c618d7a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Spatial-1JZLH83HN83CS.pcm-3R7KGMIJLG95T differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUI-3DCHKT5UWXXCX.pcm-1RK4ECI4S1JS3 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUI-3DCHKT5UWXXCX.pcm-1RK4ECI4S1JS3 new file mode 100644 index 0000000..124b5d5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUI-3DCHKT5UWXXCX.pcm-1RK4ECI4S1JS3 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUICore-86HIVXUC6WOA.pcm-2HLABC3DVMUHW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUICore-86HIVXUC6WOA.pcm-2HLABC3DVMUHW new file mode 100644 index 0000000..444543f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/SwiftUICore-86HIVXUC6WOA.pcm-2HLABC3DVMUHW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Symbols-3KC1789KJFX94.pcm-UXLJT5Y5KCRF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Symbols-3KC1789KJFX94.pcm-UXLJT5Y5KCRF new file mode 100644 index 0000000..2281408 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/Symbols-3KC1789KJFX94.pcm-UXLJT5Y5KCRF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/TokenStore.swift.o-14JRNDTD7CN6K b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/TokenStore.swift.o-14JRNDTD7CN6K new file mode 100644 index 0000000..3d26ffd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/TokenStore.swift.o-14JRNDTD7CN6K differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm-2AGTTGRAC5SOU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm-2AGTTGRAC5SOU new file mode 100644 index 0000000..54fb0cc Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UniformTypeIdentifiers-1OLJP4K3PLM48.pcm-2AGTTGRAC5SOU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateCheckView.swift.o-3V9NI4NNUR0U7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateCheckView.swift.o-3V9NI4NNUR0U7 new file mode 100644 index 0000000..a37f929 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateCheckView.swift.o-3V9NI4NNUR0U7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateSDK.swift.o-AO9MR3MMJPIY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateSDK.swift.o-AO9MR3MMJPIY new file mode 100644 index 0000000..78c5d83 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UpdateSDK.swift.o-AO9MR3MMJPIY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UserNotifications-1OEHKMXJYMYON.pcm-1R0HGQPHK9SKC b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UserNotifications-1OEHKMXJYMYON.pcm-1R0HGQPHK9SKC new file mode 100644 index 0000000..c4b920a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/UserNotifications-1OEHKMXJYMYON.pcm-1R0HGQPHK9SKC differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3JJRVQ5RNM3G7 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3JJRVQ5RNM3G7 new file mode 100644 index 0000000..04053bd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3JJRVQ5RNM3G7 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmDemoApp.swift.o-OFWIYVR0A5CY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmDemoApp.swift.o-OFWIYVR0A5CY new file mode 100644 index 0000000..4a6167a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmDemoApp.swift.o-OFWIYVR0A5CY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmSDK.swift.o-221O490R9VCON b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmSDK.swift.o-221O490R9VCON new file mode 100644 index 0000000..acca61e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/XuqmSDK.swift.o-221O490R9VCON differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-3B8P1EPH2177N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-3B8P1EPH2177N new file mode 100644 index 0000000..9f7b625 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-3B8P1EPH2177N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-1U13WY5Q2WYYU b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-1U13WY5Q2WYYU new file mode 100644 index 0000000..8b53564 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-1U13WY5Q2WYYU differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm-36Z3Z8RHURV3A b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm-36Z3Z8RHURV3A new file mode 100644 index 0000000..52f0f84 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_intrinsics-2OQWMRBVRD4OJ.pcm-36Z3Z8RHURV3A differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1DEB0KLP5LF0Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1DEB0KLP5LF0Z new file mode 100644 index 0000000..636c90c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1DEB0KLP5LF0Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3M6XRLAXW42IJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3M6XRLAXW42IJ new file mode 100644 index 0000000..0b0e1f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3M6XRLAXW42IJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-AAKTED4K434B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-AAKTED4K434B new file mode 100644 index 0000000..e03fa4b Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-AAKTED4K434B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm-2WOXVUZZ3DLU5 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm-2WOXVUZZ3DLU5 new file mode 100644 index 0000000..3c9ad4c Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdatomic-2OQWMRBVRD4OJ.pcm-2WOXVUZZ3DLU5 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2GZSQ6MJTXHRJ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2GZSQ6MJTXHRJ new file mode 100644 index 0000000..7eac9bd Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2GZSQ6MJTXHRJ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-3D93WZKCZ25SR b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-3D93WZKCZ25SR new file mode 100644 index 0000000..8729ff3 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-3D93WZKCZ25SR differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1SZTEB6W8OERP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1SZTEB6W8OERP new file mode 100644 index 0000000..cac5d07 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1SZTEB6W8OERP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm-2LW3CYPZBJVPP b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm-2LW3CYPZBJVPP new file mode 100644 index 0000000..6c61c07 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_tgmath-2OQWMRBVRD4OJ.pcm-2LW3CYPZBJVPP differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-2WNNY4LWP097B b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-2WNNY4LWP097B new file mode 100644 index 0000000..082ed07 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-2WNNY4LWP097B differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3EHUW8BFMMRX4 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3EHUW8BFMMRX4 new file mode 100644 index 0000000..09037f4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3EHUW8BFMMRX4 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-1SVDYUTZB7RRE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-1SVDYUTZB7RRE new file mode 100644 index 0000000..91e6876 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-1SVDYUTZB7RRE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3HYURYXJBKILI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3HYURYXJBKILI new file mode 100644 index 0000000..a385b93 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3HYURYXJBKILI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1FZWSV4ZFXSL1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1FZWSV4ZFXSL1 new file mode 100644 index 0000000..bcc7597 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1FZWSV4ZFXSL1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1GI70IXH4CC5N b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1GI70IXH4CC5N new file mode 100644 index 0000000..9e8c328 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1GI70IXH4CC5N differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1JYUDQRT9U987 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1JYUDQRT9U987 new file mode 100644 index 0000000..783e98f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1JYUDQRT9U987 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1OB9V64XOKL4W b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1OB9V64XOKL4W new file mode 100644 index 0000000..a9d50e0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1OB9V64XOKL4W differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ZNY0OAXCJXQA b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ZNY0OAXCJXQA new file mode 100644 index 0000000..577aef5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ZNY0OAXCJXQA differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-21U74CI6DWXR2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-21U74CI6DWXR2 new file mode 100644 index 0000000..70f7a60 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-21U74CI6DWXR2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25TF2LW9L9K87 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25TF2LW9L9K87 new file mode 100644 index 0000000..aa5ea6d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25TF2LW9L9K87 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2645RQF3S0AD9 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2645RQF3S0AD9 new file mode 100644 index 0000000..fe0dccb Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2645RQF3S0AD9 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2D01ET5UXKRRM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2D01ET5UXKRRM new file mode 100644 index 0000000..4884365 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2D01ET5UXKRRM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2I46XG5EBSJKG b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2I46XG5EBSJKG new file mode 100644 index 0000000..135c2b5 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2I46XG5EBSJKG differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2NSX4VK0DROFE b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2NSX4VK0DROFE new file mode 100644 index 0000000..3958dc4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2NSX4VK0DROFE differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QT7KBJL35V7P b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QT7KBJL35V7P new file mode 100644 index 0000000..0f3690a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QT7KBJL35V7P differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-318JM1PUGJK26 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-318JM1PUGJK26 new file mode 100644 index 0000000..bf6fe7d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-318JM1PUGJK26 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-34HRZ7OVFZN0Q b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-34HRZ7OVFZN0Q new file mode 100644 index 0000000..70d600a Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-34HRZ7OVFZN0Q differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3B6B5TKWLU35Z b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3B6B5TKWLU35Z new file mode 100644 index 0000000..f5f0dd0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3B6B5TKWLU35Z differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GLLKIKYGD6U2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GLLKIKYGD6U2 new file mode 100644 index 0000000..1dfc9c0 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GLLKIKYGD6U2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GSVG9KVK0OZ2 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GSVG9KVK0OZ2 new file mode 100644 index 0000000..09ea9c9 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3GSVG9KVK0OZ2 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3I8D6UFKBZJIF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3I8D6UFKBZJIF new file mode 100644 index 0000000..36c0121 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3I8D6UFKBZJIF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3L96RNAD6PQIY b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3L96RNAD6PQIY new file mode 100644 index 0000000..84cee54 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3L96RNAD6PQIY differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3O02XK3Q57MS1 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3O02XK3Q57MS1 new file mode 100644 index 0000000..8efa0f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3O02XK3Q57MS1 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3OR6SIH0V8MXI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3OR6SIH0V8MXI new file mode 100644 index 0000000..e743610 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3OR6SIH0V8MXI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TDIEQ33M89LD b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TDIEQ33M89LD new file mode 100644 index 0000000..deadfaf Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TDIEQ33M89LD differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TMQNUX5LCAM8 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TMQNUX5LCAM8 new file mode 100644 index 0000000..674b42e Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3TMQNUX5LCAM8 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-8ATL308LTFDZ b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-8ATL308LTFDZ new file mode 100644 index 0000000..9169460 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-8ATL308LTFDZ differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CIEMHZOMGKQI b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CIEMHZOMGKQI new file mode 100644 index 0000000..f65ec8f Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CIEMHZOMGKQI differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CMA8PZGFZ7ID b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CMA8PZGFZ7ID new file mode 100644 index 0000000..31a2308 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-CMA8PZGFZ7ID differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-TA5MD1K362UX b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-TA5MD1K362UX new file mode 100644 index 0000000..65d1383 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-TA5MD1K362UX differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-W43KE13KW1G b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-W43KE13KW1G new file mode 100644 index 0000000..4c7b7d4 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-W43KE13KW1G differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-11ADZBIPA8QSB b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-11ADZBIPA8QSB new file mode 100644 index 0000000..bdc9d43 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-11ADZBIPA8QSB differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2E33CY4UYT1UM b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2E33CY4UYT1UM new file mode 100644 index 0000000..b734f3d Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2E33CY4UYT1UM differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3QOENT3KJ9VVK b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3QOENT3KJ9VVK new file mode 100644 index 0000000..7822a77 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3QOENT3KJ9VVK differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os-2MV8OP7R98AN8.pcm-YAGBJQF5DPKF b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os-2MV8OP7R98AN8.pcm-YAGBJQF5DPKF new file mode 100644 index 0000000..34de8c1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os-2MV8OP7R98AN8.pcm-YAGBJQF5DPKF differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-3G5NY1IOCSI8O b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-3G5NY1IOCSI8O new file mode 100644 index 0000000..3d13614 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-3G5NY1IOCSI8O differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-J4R45JHMY1BN b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-J4R45JHMY1BN new file mode 100644 index 0000000..e4f20b2 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-J4R45JHMY1BN differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-3P9WAQ30AD6KL b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-3P9WAQ30AD6KL new file mode 100644 index 0000000..db4fb72 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-3P9WAQ30AD6KL differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3DS99T09G04TW b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3DS99T09G04TW new file mode 100644 index 0000000..aef5cc1 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3DS99T09G04TW differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/simd-KY25Q80SBOHY.pcm-2ZB4TZEVIPZ39 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/simd-KY25Q80SBOHY.pcm-2ZB4TZEVIPZ39 new file mode 100644 index 0000000..0e271be Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/simd-KY25Q80SBOHY.pcm-2ZB4TZEVIPZ39 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ADHSIQ0HTOS0 b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ADHSIQ0HTOS0 new file mode 100644 index 0000000..3b5f8f7 Binary files /dev/null and b/XuqmDemo/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ADHSIQ0HTOS0 differ diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/XuqmDemo/.build/arm64-apple-macosx/debug/plugin-tools-description.json new file mode 100644 index 0000000..ca10411 --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/plugin-tools-description.json @@ -0,0 +1,654 @@ +{ + "builtTestProducts" : [ + + ], + "copyCommands" : { + + }, + "explicitTargetDependencyImportCheckingMode" : { + "none" : { + + } + }, + "generatedSourceTargetSet" : [ + + ], + "pluginDescriptions" : [ + + ], + "swiftCommands" : { + "C.XuqmDemo-arm64-apple-macosx-debug.module" : { + "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "fileList" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources", + "importPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "inputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + } + ], + "isLibrary" : true, + "moduleName" : "XuqmDemo", + "moduleOutputPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule", + "objects" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o" + ], + "otherArguments" : [ + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h", + "-swift-version", + "5", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmdemo" + ], + "outputFileMapPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json", + "outputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule" + } + ], + "prepareForIndexing" : false, + "sources" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + ], + "tempsPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build", + "wholeModuleOptimization" : false + }, + "C.XuqmSDK-arm64-apple-macosx-debug.module" : { + "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "fileList" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources", + "importPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "inputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + } + ], + "isLibrary" : true, + "moduleName" : "XuqmSDK", + "moduleOutputPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule", + "objects" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o" + ], + "otherArguments" : [ + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h", + "-swift-version", + "5", + "-enable-experimental-feature", + "StrictConcurrency", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmgroup_iossdk" + ], + "outputFileMapPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json", + "outputs" : [ + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule" + } + ], + "prepareForIndexing" : false, + "sources" : [ + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + ], + "tempsPath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build", + "wholeModuleOptimization" : false + } + }, + "swiftFrontendCommands" : { + + }, + "swiftTargetScanArgs" : { + "XuqmDemo" : [ + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "-module-name", + "XuqmDemo", + "-package-name", + "xuqmdemo", + "-c", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift", + "-I", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h", + "-swift-version", + "5", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmdemo", + "-driver-use-frontend-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + ], + "XuqmSDK" : [ + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", + "-module-name", + "XuqmSDK", + "-package-name", + "xuqmgroup_iossdk", + "-c", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift", + "-I", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules", + "-target", + "arm64-apple-macosx13.0", + "-incremental", + "-enable-batch-mode", + "-serialize-diagnostics", + "-index-store-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store", + "-Onone", + "-enable-testing", + "-j14", + "-DSWIFT_PACKAGE", + "-DDEBUG", + "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", + "-module-cache-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache", + "-parseable-output", + "-parse-as-library", + "-emit-objc-header", + "-emit-objc-header-path", + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h", + "-swift-version", + "5", + "-enable-experimental-feature", + "StrictConcurrency", + "-plugin-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", + "-sdk", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-F", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-I", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-L", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", + "-g", + "-Xcc", + "-isysroot", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk", + "-Xcc", + "-F", + "-Xcc", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", + "-Xcc", + "-fPIC", + "-Xcc", + "-g", + "-package-name", + "xuqmgroup_iossdk", + "-driver-use-frontend-path", + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + ] + }, + "targetDependencyMap" : { + "XuqmDemo" : [ + "XuqmSDK" + ], + "XuqmSDK" : [ + + ] + }, + "testDiscoveryCommands" : { + + }, + "testEntryPointCommands" : { + + }, + "traitConfiguration" : { + "default" : { + + } + }, + "writeCommands" : { + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" : { + "alwaysOutOfDate" : false, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" : { + "alwaysOutOfDate" : false, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift" + }, + { + "kind" : "file", + "name" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + }, + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { + "alwaysOutOfDate" : true, + "inputs" : [ + { + "kind" : "virtual", + "name" : "" + }, + { + "kind" : "file", + "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" + } + ], + "outputFilePath" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + } + } +} \ No newline at end of file diff --git a/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt new file mode 100644 index 0000000..113c5ab --- /dev/null +++ b/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt @@ -0,0 +1,2 @@ +Apple Swift version 6.3.1 (swiftlang-6.3.1.1.2 clang-2100.0.123.102) +Target: arm64-apple-macosx26.0 diff --git a/XuqmDemo/.build/build.db b/XuqmDemo/.build/build.db new file mode 100644 index 0000000..154aa72 Binary files /dev/null and b/XuqmDemo/.build/build.db differ diff --git a/XuqmDemo/.build/debug b/XuqmDemo/.build/debug new file mode 120000 index 0000000..9733fca --- /dev/null +++ b/XuqmDemo/.build/debug @@ -0,0 +1 @@ +arm64-apple-macosx/debug \ No newline at end of file diff --git a/XuqmDemo/.build/debug.yaml b/XuqmDemo/.build/debug.yaml new file mode 100644 index 0000000..443cd73 --- /dev/null +++ b/XuqmDemo/.build/debug.yaml @@ -0,0 +1,66 @@ +client: + name: basic + file-system: device-agnostic +tools: {} +targets: + "PackageStructure": [""] + "XuqmDemo-arm64-apple-macosx-debug.module": [""] + "XuqmSDK-arm64-apple-macosx-debug.module": [""] + "main": [""] + "test": [""] +default: "main" +nodes: + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/": + is-directory-structure: true + content-exclusion-patterns: [".git",".build"] +commands: + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources": + tool: write-auxiliary-file + inputs: ["","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources"] + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources": + tool: write-auxiliary-file + inputs: ["","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources"] + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": + tool: write-auxiliary-file + inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] + always-out-of-date: "true" + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + + "": + tool: phony + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule"] + outputs: [""] + + "": + tool: phony + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule"] + outputs: [""] + + "C.XuqmDemo-arm64-apple-macosx-debug.module": + tool: shell + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule"] + description: "Compiling Swift Module 'XuqmDemo' (10 sources)" + args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","XuqmDemo","-emit-dependencies","-emit-module","-emit-module-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule","-output-file-map","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources","-I","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx13.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j14","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","xuqmdemo"] + + "C.XuqmSDK-arm64-apple-macosx-debug.module": + tool: shell + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule"] + description: "Compiling Swift Module 'XuqmSDK' (9 sources)" + args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","XuqmSDK","-emit-dependencies","-emit-module","-emit-module-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule","-output-file-map","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources","-I","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx13.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j14","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h","-swift-version","5","-enable-experimental-feature","StrictConcurrency","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","xuqmgroup_iossdk"] + + "PackageStructure": + tool: package-structure-tool + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Package.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Package.resolved"] + outputs: [""] + description: "Planning build" + allow-missing-inputs: true + diff --git a/XuqmDemo/.build/plugin-tools.yaml b/XuqmDemo/.build/plugin-tools.yaml new file mode 100644 index 0000000..443cd73 --- /dev/null +++ b/XuqmDemo/.build/plugin-tools.yaml @@ -0,0 +1,66 @@ +client: + name: basic + file-system: device-agnostic +tools: {} +targets: + "PackageStructure": [""] + "XuqmDemo-arm64-apple-macosx-debug.module": [""] + "XuqmSDK-arm64-apple-macosx-debug.module": [""] + "main": [""] + "test": [""] +default: "main" +nodes: + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/": + is-directory-structure: true + content-exclusion-patterns: [".git",".build"] +commands: + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources": + tool: write-auxiliary-file + inputs: ["","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources"] + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources" + + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources": + tool: write-auxiliary-file + inputs: ["","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources"] + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources" + + "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": + tool: write-auxiliary-file + inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] + always-out-of-date: "true" + description: "Write auxiliary file /Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" + + "": + tool: phony + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule"] + outputs: [""] + + "": + tool: phony + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule"] + outputs: [""] + + "C.XuqmDemo-arm64-apple-macosx-debug.module": + tool: shell + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Models/DemoModels.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/AuthViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ChatViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/ViewModels/ConversationViewModel.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ChatView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ConversationListView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/LoginView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/ProfileView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/Views/UpdateCheckView.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/XuqmDemoApp.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/DemoModels.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/AuthViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationViewModel.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ChatView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ConversationListView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/LoginView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/ProfileView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/UpdateCheckView.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/XuqmDemoApp.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule"] + description: "Compiling Swift Module 'XuqmDemo' (10 sources)" + args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","XuqmDemo","-emit-dependencies","-emit-module","-emit-module-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmDemo.swiftmodule","-output-file-map","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/sources","-I","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx13.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j14","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmDemo.build/include/XuqmDemo-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","xuqmdemo"] + + "C.XuqmSDK-arm64-apple-macosx-debug.module": + tool: shell + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/ApiClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/SDKConfig.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/TokenStore.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Core/XuqmSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImClient.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/IM/ImTypes.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Push/PushSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/Sources/XuqmSDK/Update/UpdateSDK.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources"] + outputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ApiClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/SDKConfig.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/TokenStore.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/XuqmSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImClient.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/ImTypes.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/PushSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/UpdateSDK.swift.o","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule"] + description: "Compiling Swift Module 'XuqmSDK' (9 sources)" + args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","XuqmSDK","-emit-dependencies","-emit-module","-emit-module-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules/XuqmSDK.swiftmodule","-output-file-map","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/sources","-I","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx13.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j14","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/.build/arm64-apple-macosx/debug/XuqmSDK.build/include/XuqmSDK-Swift.h","-swift-version","5","-enable-experimental-feature","StrictConcurrency","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","xuqmgroup_iossdk"] + + "PackageStructure": + tool: package-structure-tool + inputs: ["/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Sources/","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Package.swift","/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK/XuqmDemo/Package.resolved"] + outputs: [""] + description: "Planning build" + allow-missing-inputs: true + diff --git a/XuqmDemo/.build/workspace-state.json b/XuqmDemo/.build/workspace-state.json new file mode 100644 index 0000000..eb7d81a --- /dev/null +++ b/XuqmDemo/.build/workspace-state.json @@ -0,0 +1,27 @@ +{ + "object" : { + "artifacts" : [ + + ], + "dependencies" : [ + { + "basedOn" : null, + "packageRef" : { + "identity" : "xuqmgroup-iossdk", + "kind" : "fileSystem", + "location" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK", + "name" : "XuqmSDK" + }, + "state" : { + "name" : "fileSystem", + "path" : "/Users/xuqinmin/Projects/XuqmGroup/XuqmGroup-iOSSDK" + }, + "subpath" : "xuqmgroup-iossdk" + } + ], + "prebuilts" : [ + + ] + }, + "version" : 7 +} \ No newline at end of file