├── .DS_Store ├── Messenger.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── afrazsiddiqui.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── afrazsiddiqui.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Messenger.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── afrazsiddiqui.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Messenger ├── Controllers │ ├── ChatViewController.swift │ ├── ConversationsViewController.swift │ ├── LocationPickerViewController.swift │ ├── Login │ │ ├── LoginViewController.swift │ │ └── RegisterViewController.swift │ ├── NewConversationViewController.swift │ ├── PhotoViewerViewController.swift │ └── ProfileViewController.swift ├── GoogleService-Info.plist ├── Info.plist ├── Models │ ├── ChatModels.swift │ ├── ConversationsModels.swift │ ├── ProfileViewModel.swift │ └── SearchResult.swift ├── Resources │ ├── AppDelegate.swift │ ├── DatabaseManager.swift │ ├── Extensions.swift │ ├── SceneDelegate.swift │ └── StorageManager.swift └── Views │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-83.5@2x.png │ │ ├── icon-small-50.png │ │ ├── icon-small-50@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── ios-marketing.png │ │ ├── notification-icon@2x.png │ │ ├── notification-icon@3x.png │ │ ├── notification-icon~ipad.png │ │ └── notification-icon~ipad@2x.png │ ├── Contents.json │ ├── logo-1.imageset │ │ ├── Contents.json │ │ └── logo.png │ ├── logo.imageset │ │ ├── Contents.json │ │ └── logo.png │ └── video_placeholder.imageset │ │ ├── Contents.json │ │ └── placeholder.png │ ├── ConversationTableViewCell.swift │ ├── NewConversationCell.swift │ └── Storyboards │ └── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Podfile ├── Podfile.lock ├── Pods ├── AppAuth │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AppAuth.h │ │ ├── AppAuth │ │ └── iOS │ │ │ ├── OIDAuthState+IOS.h │ │ │ ├── OIDAuthState+IOS.m │ │ │ ├── OIDAuthorizationService+IOS.h │ │ │ ├── OIDAuthorizationService+IOS.m │ │ │ ├── OIDExternalUserAgentCatalyst.h │ │ │ ├── OIDExternalUserAgentCatalyst.m │ │ │ ├── OIDExternalUserAgentIOS.h │ │ │ ├── OIDExternalUserAgentIOS.m │ │ │ ├── OIDExternalUserAgentIOSCustomBrowser.h │ │ │ └── OIDExternalUserAgentIOSCustomBrowser.m │ │ ├── AppAuthCore.h │ │ └── AppAuthCore │ │ ├── OIDAuthState.h │ │ ├── OIDAuthState.m │ │ ├── OIDAuthStateChangeDelegate.h │ │ ├── OIDAuthStateErrorDelegate.h │ │ ├── OIDAuthorizationRequest.h │ │ ├── OIDAuthorizationRequest.m │ │ ├── OIDAuthorizationResponse.h │ │ ├── OIDAuthorizationResponse.m │ │ ├── OIDAuthorizationService.h │ │ ├── OIDAuthorizationService.m │ │ ├── OIDClientMetadataParameters.h │ │ ├── OIDClientMetadataParameters.m │ │ ├── OIDDefines.h │ │ ├── OIDEndSessionRequest.h │ │ ├── OIDEndSessionRequest.m │ │ ├── OIDEndSessionResponse.h │ │ ├── OIDEndSessionResponse.m │ │ ├── OIDError.h │ │ ├── OIDError.m │ │ ├── OIDErrorUtilities.h │ │ ├── OIDErrorUtilities.m │ │ ├── OIDExternalUserAgent.h │ │ ├── OIDExternalUserAgentRequest.h │ │ ├── OIDExternalUserAgentSession.h │ │ ├── OIDFieldMapping.h │ │ ├── OIDFieldMapping.m │ │ ├── OIDGrantTypes.h │ │ ├── OIDGrantTypes.m │ │ ├── OIDIDToken.h │ │ ├── OIDIDToken.m │ │ ├── OIDRegistrationRequest.h │ │ ├── OIDRegistrationRequest.m │ │ ├── OIDRegistrationResponse.h │ │ ├── OIDRegistrationResponse.m │ │ ├── OIDResponseTypes.h │ │ ├── OIDResponseTypes.m │ │ ├── OIDScopeUtilities.h │ │ ├── OIDScopeUtilities.m │ │ ├── OIDScopes.h │ │ ├── OIDScopes.m │ │ ├── OIDServiceConfiguration.h │ │ ├── OIDServiceConfiguration.m │ │ ├── OIDServiceDiscovery.h │ │ ├── OIDServiceDiscovery.m │ │ ├── OIDTokenRequest.h │ │ ├── OIDTokenRequest.m │ │ ├── OIDTokenResponse.h │ │ ├── OIDTokenResponse.m │ │ ├── OIDTokenUtilities.h │ │ ├── OIDTokenUtilities.m │ │ ├── OIDURLQueryComponent.h │ │ ├── OIDURLQueryComponent.m │ │ ├── OIDURLSessionProvider.h │ │ └── OIDURLSessionProvider.m ├── FBSDKCoreKit │ ├── FBSDKCoreKit │ │ └── FBSDKCoreKit │ │ │ ├── AppEvents │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppEvents.m │ │ │ └── Internal │ │ │ │ ├── AAM │ │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ │ └── FBSDKMetadataIndexer.m │ │ │ │ ├── Codeless │ │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ │ ├── FBSDKCodelessIndexer.m │ │ │ │ ├── FBSDKCodelessParameterComponent.h │ │ │ │ ├── FBSDKCodelessParameterComponent.m │ │ │ │ ├── FBSDKCodelessPathComponent.h │ │ │ │ ├── FBSDKCodelessPathComponent.m │ │ │ │ ├── FBSDKEventBinding.h │ │ │ │ ├── FBSDKEventBinding.m │ │ │ │ ├── FBSDKEventBindingManager.h │ │ │ │ └── FBSDKEventBindingManager.m │ │ │ │ ├── EventDeactivation │ │ │ │ ├── FBSDKEventDeactivationManager.h │ │ │ │ └── FBSDKEventDeactivationManager.m │ │ │ │ ├── FBSDKAppEvents+Internal.h │ │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ │ ├── FBSDKAppEventsDeviceInfo.m │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ ├── FBSDKAppEventsState.m │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ ├── FBSDKAppEventsStateManager.m │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ ├── FBSDKAppEventsUtility.m │ │ │ │ ├── FBSDKHybridAppEventsScriptMessageHandler.h │ │ │ │ ├── FBSDKHybridAppEventsScriptMessageHandler.m │ │ │ │ ├── FBSDKPaymentObserver.h │ │ │ │ ├── FBSDKPaymentObserver.m │ │ │ │ ├── FBSDKTimeSpentData.h │ │ │ │ ├── FBSDKTimeSpentData.m │ │ │ │ ├── FBSDKUserDataStore.h │ │ │ │ ├── FBSDKUserDataStore.m │ │ │ │ ├── Integrity │ │ │ │ ├── FBSDKIntegrityManager.h │ │ │ │ ├── FBSDKIntegrityManager.m │ │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ │ └── FBSDKRestrictiveDataFilterManager.m │ │ │ │ ├── ML │ │ │ │ ├── FBSDKMLMacros.h │ │ │ │ ├── FBSDKModelManager.h │ │ │ │ ├── FBSDKModelManager.mm │ │ │ │ ├── FBSDKModelParser.h │ │ │ │ ├── FBSDKModelParser.mm │ │ │ │ ├── FBSDKModelRuntime.hpp │ │ │ │ ├── FBSDKModelUtility.h │ │ │ │ ├── FBSDKModelUtility.m │ │ │ │ └── FBSDKTensor.hpp │ │ │ │ ├── SuggestedEvents │ │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ │ ├── FBSDKFeatureExtractor.m │ │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ │ └── FBSDKSuggestedEventsIndexer.m │ │ │ │ └── ViewHierarchy │ │ │ │ ├── FBSDKViewHierarchy.h │ │ │ │ ├── FBSDKViewHierarchy.m │ │ │ │ └── FBSDKViewHierarchyMacros.h │ │ │ ├── AppLink │ │ │ ├── FBSDKAppLink.h │ │ │ ├── FBSDKAppLink.m │ │ │ ├── FBSDKAppLinkNavigation.h │ │ │ ├── FBSDKAppLinkNavigation.m │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ ├── FBSDKAppLinkResolver.m │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ ├── FBSDKAppLinkReturnToRefererController.h │ │ │ ├── FBSDKAppLinkReturnToRefererController.m │ │ │ ├── FBSDKAppLinkReturnToRefererView.h │ │ │ ├── FBSDKAppLinkReturnToRefererView.m │ │ │ ├── FBSDKAppLinkTarget.h │ │ │ ├── FBSDKAppLinkTarget.m │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKAppLinkUtility.m │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ ├── FBSDKWebViewAppLinkResolver.m │ │ │ └── Internal │ │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ │ └── FBSDKMeasurementEventListener.m │ │ │ ├── Basics │ │ │ ├── Instrument │ │ │ │ ├── FBSDKCrashHandler.h │ │ │ │ ├── FBSDKCrashHandler.m │ │ │ │ ├── FBSDKCrashObserving.h │ │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ │ └── FBSDKLibAnalyzer.m │ │ │ └── Internal │ │ │ │ ├── FBSDKBasicUtility.h │ │ │ │ ├── FBSDKBasicUtility.m │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ ├── FBSDKTypeUtility.m │ │ │ │ ├── FBSDKURLSession.h │ │ │ │ ├── FBSDKURLSession.m │ │ │ │ ├── FBSDKURLSessionTask.h │ │ │ │ └── FBSDKURLSessionTask.m │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAccessToken.m │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ ├── FBSDKApplicationDelegate.m │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKButton.m │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKConstants.m │ │ │ ├── FBSDKCopying.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKDeviceButton.h │ │ │ ├── FBSDKDeviceButton.m │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ ├── FBSDKDeviceViewControllerBase.m │ │ │ ├── FBSDKMeasurementEvent.h │ │ │ ├── FBSDKMeasurementEvent.m │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKProfile.h │ │ │ ├── FBSDKProfile.m │ │ │ ├── FBSDKProfilePictureView.h │ │ │ ├── FBSDKProfilePictureView.m │ │ │ ├── FBSDKSettings.h │ │ │ ├── FBSDKSettings.m │ │ │ ├── FBSDKTestUsersManager.h │ │ │ ├── FBSDKTestUsersManager.m │ │ │ ├── FBSDKURL.h │ │ │ ├── FBSDKURL.m │ │ │ ├── FBSDKUtility.h │ │ │ ├── FBSDKUtility.m │ │ │ ├── GraphAPI │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.m │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequest.m │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestConnection.m │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ └── FBSDKGraphRequestDataAttachment.m │ │ │ ├── Internal │ │ │ ├── Base64 │ │ │ │ ├── FBSDKBase64.h │ │ │ │ └── FBSDKBase64.m │ │ │ ├── BridgeAPI │ │ │ │ ├── FBSDKBridgeAPI.h │ │ │ │ ├── FBSDKBridgeAPI.m │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ ├── FBSDKBridgeAPIRequest+Private.h │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ ├── FBSDKBridgeAPIRequest.m │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ ├── FBSDKBridgeAPIResponse.m │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ └── ProtocolVersions │ │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.m │ │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.m │ │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV2.h │ │ │ │ │ └── FBSDKBridgeAPIProtocolWebV2.m │ │ │ ├── Cryptography │ │ │ │ ├── FBSDKCrypto.h │ │ │ │ └── FBSDKCrypto.m │ │ │ ├── Device │ │ │ │ ├── FBSDKDeviceButton+Internal.h │ │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ │ ├── FBSDKDeviceDialogView.m │ │ │ │ ├── FBSDKDeviceUtilities.h │ │ │ │ ├── FBSDKDeviceUtilities.m │ │ │ │ ├── FBSDKDeviceViewControllerBase+Internal.h │ │ │ │ ├── FBSDKModalFormPresentationController.h │ │ │ │ ├── FBSDKModalFormPresentationController.m │ │ │ │ ├── FBSDKSmartDeviceDialogView.h │ │ │ │ └── FBSDKSmartDeviceDialogView.m │ │ │ ├── ErrorRecovery │ │ │ │ ├── FBSDKErrorRecoveryAttempter.h │ │ │ │ ├── FBSDKErrorRecoveryAttempter.m │ │ │ │ ├── _FBSDKTemporaryErrorRecoveryAttempter.h │ │ │ │ └── _FBSDKTemporaryErrorRecoveryAttempter.m │ │ │ ├── FBSDKAppLinkReturnToRefererView_Internal.h │ │ │ ├── FBSDKAppLink_Internal.h │ │ │ ├── FBSDKApplicationDelegate+Internal.h │ │ │ ├── FBSDKApplicationObserving.h │ │ │ ├── FBSDKAudioResourceLoader.h │ │ │ ├── FBSDKAudioResourceLoader.m │ │ │ ├── FBSDKContainerViewController.h │ │ │ ├── FBSDKContainerViewController.m │ │ │ ├── FBSDKCoreKit+Internal.h │ │ │ ├── FBSDKDeviceRequestsHelper.h │ │ │ ├── FBSDKDeviceRequestsHelper.m │ │ │ ├── FBSDKDynamicFrameworkLoader.h │ │ │ ├── FBSDKError.h │ │ │ ├── FBSDKError.m │ │ │ ├── FBSDKFeatureManager.h │ │ │ ├── FBSDKFeatureManager.m │ │ │ ├── FBSDKImageDownloader.h │ │ │ ├── FBSDKImageDownloader.m │ │ │ ├── FBSDKInternalUtility.h │ │ │ ├── FBSDKInternalUtility.m │ │ │ ├── FBSDKLogger.h │ │ │ ├── FBSDKLogger.m │ │ │ ├── FBSDKMath.h │ │ │ ├── FBSDKMath.m │ │ │ ├── FBSDKMeasurementEvent_Internal.h │ │ │ ├── FBSDKMonotonicTime.h │ │ │ ├── FBSDKMonotonicTime.m │ │ │ ├── FBSDKProfile+Internal.h │ │ │ ├── FBSDKSettings+Internal.h │ │ │ ├── FBSDKSwizzler.h │ │ │ ├── FBSDKSwizzler.m │ │ │ ├── FBSDKTriStateBOOL.h │ │ │ ├── FBSDKTriStateBOOL.m │ │ │ ├── FBSDKURL_Internal.h │ │ │ ├── Instrument │ │ │ │ ├── CrashReport │ │ │ │ │ ├── FBSDKCrashObserver.h │ │ │ │ │ ├── FBSDKCrashObserver.m │ │ │ │ │ ├── FBSDKCrashShield.h │ │ │ │ │ └── FBSDKCrashShield.m │ │ │ │ ├── ErrorReport │ │ │ │ │ ├── FBSDKErrorReport.h │ │ │ │ │ └── FBSDKErrorReport.m │ │ │ │ ├── FBSDKInstrumentManager.h │ │ │ │ └── FBSDKInstrumentManager.m │ │ │ ├── Monitoring │ │ │ │ ├── FBSDKMethodUsageMonitor.h │ │ │ │ ├── FBSDKMethodUsageMonitor.m │ │ │ │ ├── FBSDKMethodUsageMonitorEntry.h │ │ │ │ ├── FBSDKMethodUsageMonitorEntry.m │ │ │ │ ├── FBSDKMonitor.h │ │ │ │ ├── FBSDKMonitor.m │ │ │ │ ├── FBSDKMonitorEntry.h │ │ │ │ ├── FBSDKMonitorHeaders.h │ │ │ │ ├── FBSDKMonitorNetworker.h │ │ │ │ ├── FBSDKMonitorNetworker.m │ │ │ │ ├── FBSDKMonitorStore.h │ │ │ │ ├── FBSDKMonitorStore.m │ │ │ │ ├── FBSDKMonitoringConfiguration.h │ │ │ │ ├── FBSDKMonitoringConfiguration.m │ │ │ │ ├── FBSDKPerformanceMonitor.h │ │ │ │ ├── FBSDKPerformanceMonitor.m │ │ │ │ ├── FBSDKPerformanceMonitorEntry.h │ │ │ │ └── FBSDKPerformanceMonitorEntry.m │ │ │ ├── Network │ │ │ │ ├── FBSDKGraphRequest+Internal.h │ │ │ │ ├── FBSDKGraphRequestBody.h │ │ │ │ ├── FBSDKGraphRequestBody.m │ │ │ │ ├── FBSDKGraphRequestConnection+Internal.h │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ ├── FBSDKGraphRequestMetadata.m │ │ │ │ ├── FBSDKGraphRequestPiggybackManager.h │ │ │ │ └── FBSDKGraphRequestPiggybackManager.m │ │ │ ├── ServerConfiguration │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ ├── FBSDKDialogConfiguration.m │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ ├── FBSDKErrorConfiguration.m │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.m │ │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ │ ├── FBSDKGateKeeperManager.m │ │ │ │ ├── FBSDKServerConfiguration+Internal.h │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ ├── FBSDKServerConfiguration.m │ │ │ │ ├── FBSDKServerConfigurationManager+Internal.h │ │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ │ └── FBSDKServerConfigurationManager.m │ │ │ ├── TokenCaching │ │ │ │ ├── FBSDKAccessTokenCache.h │ │ │ │ ├── FBSDKAccessTokenCache.m │ │ │ │ ├── FBSDKAccessTokenCaching.h │ │ │ │ ├── FBSDKAccessTokenExpirer.h │ │ │ │ ├── FBSDKAccessTokenExpirer.m │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ ├── FBSDKKeychainStore.m │ │ │ │ ├── FBSDKKeychainStoreViaBundleID.h │ │ │ │ └── FBSDKKeychainStoreViaBundleID.m │ │ │ ├── UI │ │ │ │ ├── FBSDKButton+Subclass.h │ │ │ │ ├── FBSDKCloseIcon.h │ │ │ │ ├── FBSDKCloseIcon.m │ │ │ │ ├── FBSDKColor.h │ │ │ │ ├── FBSDKColor.m │ │ │ │ ├── FBSDKIcon.h │ │ │ │ ├── FBSDKIcon.m │ │ │ │ ├── FBSDKLogo.h │ │ │ │ ├── FBSDKLogo.m │ │ │ │ ├── FBSDKMaleSilhouetteIcon.h │ │ │ │ ├── FBSDKMaleSilhouetteIcon.m │ │ │ │ ├── FBSDKUIUtility.h │ │ │ │ ├── FBSDKViewImpressionTracker.h │ │ │ │ └── FBSDKViewImpressionTracker.m │ │ │ └── WebDialog │ │ │ │ ├── FBSDKWebDialog.h │ │ │ │ ├── FBSDKWebDialog.m │ │ │ │ ├── FBSDKWebDialogView.h │ │ │ │ └── FBSDKWebDialogView.m │ │ │ ├── Internal_NoARC │ │ │ └── FBSDKDynamicFrameworkLoader.m │ │ │ └── Swift │ │ │ ├── AccessToken.swift │ │ │ ├── Permission.swift │ │ │ └── Settings.swift │ ├── FacebookSDKStrings.bundle │ │ └── Resources │ │ │ ├── af.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ar.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── bn.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── cs.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── da.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── de.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── el.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── en.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── en_GB.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── es.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── es_ES.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── fi.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── fil.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── fr.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── gu.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── he.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── hi.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── hr.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── hu.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── id.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── it.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ja.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── kn.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ko.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ml.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── mr.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ms.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── nb.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── nl.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── pa.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── pl.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── pt.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── pt_PT.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ru.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── sk.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── sv.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── ta.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── te.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── th.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── tr.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── vi.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── zh.lproj │ │ │ └── FacebookSDK.strings │ │ │ ├── zh_Hant_HK.lproj │ │ │ └── FacebookSDK.strings │ │ │ └── zh_Hant_TW.lproj │ │ │ └── FacebookSDK.strings │ ├── LICENSE │ └── README.md ├── FBSDKLoginKit │ ├── FBSDKLoginKit │ │ └── FBSDKLoginKit │ │ │ ├── FBSDKCoreKitImport.h │ │ │ ├── FBSDKDeviceLoginCodeInfo.h │ │ │ ├── FBSDKDeviceLoginCodeInfo.m │ │ │ ├── FBSDKDeviceLoginManager.h │ │ │ ├── FBSDKDeviceLoginManager.m │ │ │ ├── FBSDKDeviceLoginManagerResult.h │ │ │ ├── FBSDKDeviceLoginManagerResult.m │ │ │ ├── FBSDKLoginButton.h │ │ │ ├── FBSDKLoginButton.m │ │ │ ├── FBSDKLoginConstants.h │ │ │ ├── FBSDKLoginConstants.m │ │ │ ├── FBSDKLoginKit.h │ │ │ ├── FBSDKLoginManager.h │ │ │ ├── FBSDKLoginManager.m │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ ├── FBSDKLoginManagerLoginResult.m │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ ├── FBSDKLoginTooltipView.m │ │ │ ├── FBSDKTooltipView.h │ │ │ ├── FBSDKTooltipView.m │ │ │ ├── Internal │ │ │ ├── FBSDKDeviceLoginCodeInfo+Internal.h │ │ │ ├── FBSDKDeviceLoginManagerResult+Internal.h │ │ │ ├── FBSDKLoginCompletion+Internal.h │ │ │ ├── FBSDKLoginCompletion.h │ │ │ ├── FBSDKLoginCompletion.m │ │ │ ├── FBSDKLoginError.h │ │ │ ├── FBSDKLoginError.m │ │ │ ├── FBSDKLoginKit+Internal.h │ │ │ ├── FBSDKLoginManager+Internal.h │ │ │ ├── FBSDKLoginManagerLogger.h │ │ │ ├── FBSDKLoginManagerLogger.m │ │ │ ├── FBSDKLoginManagerLoginResult+Internal.h │ │ │ ├── FBSDKLoginUtility.h │ │ │ ├── FBSDKLoginUtility.m │ │ │ ├── _FBSDKLoginRecoveryAttempter.h │ │ │ └── _FBSDKLoginRecoveryAttempter.m │ │ │ └── Swift │ │ │ ├── FBLoginButton.swift │ │ │ └── LoginManager.swift │ ├── LICENSE │ └── README.md ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FIRAnalyticsConnector.framework │ │ ├── FIRAnalyticsConnector │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseAnalyticsInterop │ ├── Interop │ │ └── Analytics │ │ │ └── Public │ │ │ ├── FIRAnalyticsInterop.h │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ ├── FIRInteropEventNames.h │ │ │ └── FIRInteropParameterNames.h │ ├── LICENSE │ └── README.md ├── FirebaseAuth │ ├── FirebaseAuth │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ └── Sources │ │ │ ├── Auth │ │ │ ├── FIRActionCodeSettings.m │ │ │ ├── FIRAuth.m │ │ │ ├── FIRAuthDataResult.m │ │ │ ├── FIRAuthDataResult_Internal.h │ │ │ ├── FIRAuthDispatcher.h │ │ │ ├── FIRAuthDispatcher.m │ │ │ ├── FIRAuthGlobalWorkQueue.h │ │ │ ├── FIRAuthGlobalWorkQueue.m │ │ │ ├── FIRAuthOperationType.h │ │ │ ├── FIRAuthSerialTaskQueue.h │ │ │ ├── FIRAuthSerialTaskQueue.m │ │ │ ├── FIRAuthSettings.m │ │ │ ├── FIRAuthTokenResult.m │ │ │ ├── FIRAuthTokenResult_Internal.h │ │ │ └── FIRAuth_Internal.h │ │ │ ├── AuthProvider │ │ │ ├── Email │ │ │ │ ├── FIREmailAuthProvider.m │ │ │ │ ├── FIREmailPasswordAuthCredential.h │ │ │ │ └── FIREmailPasswordAuthCredential.m │ │ │ ├── FIRAuthCredential.m │ │ │ ├── FIRAuthCredential_Internal.h │ │ │ ├── FIRAuthProvider.m │ │ │ ├── Facebook │ │ │ │ ├── FIRFacebookAuthCredential.h │ │ │ │ ├── FIRFacebookAuthCredential.m │ │ │ │ └── FIRFacebookAuthProvider.m │ │ │ ├── GameCenter │ │ │ │ ├── FIRGameCenterAuthCredential.h │ │ │ │ ├── FIRGameCenterAuthCredential.m │ │ │ │ └── FIRGameCenterAuthProvider.m │ │ │ ├── GitHub │ │ │ │ ├── FIRGitHubAuthCredential.h │ │ │ │ ├── FIRGitHubAuthCredential.m │ │ │ │ └── FIRGitHubAuthProvider.m │ │ │ ├── Google │ │ │ │ ├── FIRGoogleAuthCredential.h │ │ │ │ ├── FIRGoogleAuthCredential.m │ │ │ │ └── FIRGoogleAuthProvider.m │ │ │ ├── OAuth │ │ │ │ ├── FIROAuthCredential.m │ │ │ │ ├── FIROAuthCredential_Internal.h │ │ │ │ └── FIROAuthProvider.m │ │ │ ├── Phone │ │ │ │ ├── FIRPhoneAuthCredential.m │ │ │ │ ├── FIRPhoneAuthCredential_Internal.h │ │ │ │ └── FIRPhoneAuthProvider.m │ │ │ └── Twitter │ │ │ │ ├── FIRTwitterAuthCredential.h │ │ │ │ ├── FIRTwitterAuthCredential.m │ │ │ │ └── FIRTwitterAuthProvider.m │ │ │ ├── Backend │ │ │ ├── FIRAuthBackend+MultiFactor.h │ │ │ ├── FIRAuthBackend+MultiFactor.m │ │ │ ├── FIRAuthBackend.h │ │ │ ├── FIRAuthBackend.m │ │ │ ├── FIRAuthRPCRequest.h │ │ │ ├── FIRAuthRPCResponse.h │ │ │ ├── FIRAuthRequestConfiguration.h │ │ │ ├── FIRAuthRequestConfiguration.m │ │ │ ├── FIRIdentityToolkitRequest.h │ │ │ ├── FIRIdentityToolkitRequest.m │ │ │ └── RPC │ │ │ │ ├── FIRCreateAuthURIRequest.h │ │ │ │ ├── FIRCreateAuthURIRequest.m │ │ │ │ ├── FIRCreateAuthURIResponse.h │ │ │ │ ├── FIRCreateAuthURIResponse.m │ │ │ │ ├── FIRDeleteAccountRequest.h │ │ │ │ ├── FIRDeleteAccountRequest.m │ │ │ │ ├── FIRDeleteAccountResponse.h │ │ │ │ ├── FIRDeleteAccountResponse.m │ │ │ │ ├── FIREmailLinkSignInRequest.h │ │ │ │ ├── FIREmailLinkSignInRequest.m │ │ │ │ ├── FIREmailLinkSignInResponse.h │ │ │ │ ├── FIREmailLinkSignInResponse.m │ │ │ │ ├── FIRGetAccountInfoRequest.h │ │ │ │ ├── FIRGetAccountInfoRequest.m │ │ │ │ ├── FIRGetAccountInfoResponse.h │ │ │ │ ├── FIRGetAccountInfoResponse.m │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.h │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.m │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.h │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.m │ │ │ │ ├── FIRGetProjectConfigRequest.h │ │ │ │ ├── FIRGetProjectConfigRequest.m │ │ │ │ ├── FIRGetProjectConfigResponse.h │ │ │ │ ├── FIRGetProjectConfigResponse.m │ │ │ │ ├── FIRResetPasswordRequest.h │ │ │ │ ├── FIRResetPasswordRequest.m │ │ │ │ ├── FIRResetPasswordResponse.h │ │ │ │ ├── FIRResetPasswordResponse.m │ │ │ │ ├── FIRSecureTokenRequest.h │ │ │ │ ├── FIRSecureTokenRequest.m │ │ │ │ ├── FIRSecureTokenResponse.h │ │ │ │ ├── FIRSecureTokenResponse.m │ │ │ │ ├── FIRSendVerificationCodeRequest.h │ │ │ │ ├── FIRSendVerificationCodeRequest.m │ │ │ │ ├── FIRSendVerificationCodeResponse.h │ │ │ │ ├── FIRSendVerificationCodeResponse.m │ │ │ │ ├── FIRSetAccountInfoRequest.h │ │ │ │ ├── FIRSetAccountInfoRequest.m │ │ │ │ ├── FIRSetAccountInfoResponse.h │ │ │ │ ├── FIRSetAccountInfoResponse.m │ │ │ │ ├── FIRSignInWithGameCenterRequest.h │ │ │ │ ├── FIRSignInWithGameCenterRequest.m │ │ │ │ ├── FIRSignInWithGameCenterResponse.h │ │ │ │ ├── FIRSignInWithGameCenterResponse.m │ │ │ │ ├── FIRSignUpNewUserRequest.h │ │ │ │ ├── FIRSignUpNewUserRequest.m │ │ │ │ ├── FIRSignUpNewUserResponse.h │ │ │ │ ├── FIRSignUpNewUserResponse.m │ │ │ │ ├── FIRVerifyAssertionRequest.h │ │ │ │ ├── FIRVerifyAssertionRequest.m │ │ │ │ ├── FIRVerifyAssertionResponse.h │ │ │ │ ├── FIRVerifyAssertionResponse.m │ │ │ │ ├── FIRVerifyClientRequest.h │ │ │ │ ├── FIRVerifyClientRequest.m │ │ │ │ ├── FIRVerifyClientResponse.h │ │ │ │ ├── FIRVerifyClientResponse.m │ │ │ │ ├── FIRVerifyCustomTokenRequest.h │ │ │ │ ├── FIRVerifyCustomTokenRequest.m │ │ │ │ ├── FIRVerifyCustomTokenResponse.h │ │ │ │ ├── FIRVerifyCustomTokenResponse.m │ │ │ │ ├── FIRVerifyPasswordRequest.h │ │ │ │ ├── FIRVerifyPasswordRequest.m │ │ │ │ ├── FIRVerifyPasswordResponse.h │ │ │ │ ├── FIRVerifyPasswordResponse.m │ │ │ │ ├── FIRVerifyPhoneNumberRequest.h │ │ │ │ ├── FIRVerifyPhoneNumberRequest.m │ │ │ │ ├── FIRVerifyPhoneNumberResponse.h │ │ │ │ ├── FIRVerifyPhoneNumberResponse.m │ │ │ │ ├── MultiFactor │ │ │ │ ├── Enroll │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentRequest.h │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentRequest.m │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentResponse.h │ │ │ │ │ ├── FIRFinalizeMFAEnrollmentResponse.m │ │ │ │ │ ├── FIRStartMFAEnrollmentRequest.h │ │ │ │ │ ├── FIRStartMFAEnrollmentRequest.m │ │ │ │ │ ├── FIRStartMFAEnrollmentResponse.h │ │ │ │ │ └── FIRStartMFAEnrollmentResponse.m │ │ │ │ ├── SignIn │ │ │ │ │ ├── FIRFinalizeMFASignInRequest.h │ │ │ │ │ ├── FIRFinalizeMFASignInRequest.m │ │ │ │ │ ├── FIRFinalizeMFASignInResponse.h │ │ │ │ │ ├── FIRFinalizeMFASignInResponse.m │ │ │ │ │ ├── FIRStartMFASignInRequest.h │ │ │ │ │ ├── FIRStartMFASignInRequest.m │ │ │ │ │ ├── FIRStartMFASignInResponse.h │ │ │ │ │ └── FIRStartMFASignInResponse.m │ │ │ │ └── Unenroll │ │ │ │ │ ├── FIRWithdrawMFARequest.h │ │ │ │ │ ├── FIRWithdrawMFARequest.m │ │ │ │ │ ├── FIRWithdrawMFAResponse.h │ │ │ │ │ └── FIRWithdrawMFAResponse.m │ │ │ │ └── Proto │ │ │ │ ├── FIRAuthProto.h │ │ │ │ ├── FIRAuthProtoMFAEnrollment.h │ │ │ │ ├── FIRAuthProtoMFAEnrollment.m │ │ │ │ └── Phone │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneRequestInfo.h │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneRequestInfo.m │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneResponseInfo.h │ │ │ │ ├── FIRAuthProtoFinalizeMFAPhoneResponseInfo.m │ │ │ │ ├── FIRAuthProtoStartMFAPhoneRequestInfo.h │ │ │ │ ├── FIRAuthProtoStartMFAPhoneRequestInfo.m │ │ │ │ ├── FIRAuthProtoStartMFAPhoneResponseInfo.h │ │ │ │ └── FIRAuthProtoStartMFAPhoneResponseInfo.m │ │ │ ├── FirebaseAuthVersion.m │ │ │ ├── MultiFactor │ │ │ ├── FIRMultiFactor+Internal.h │ │ │ ├── FIRMultiFactor.m │ │ │ ├── FIRMultiFactorAssertion+Internal.h │ │ │ ├── FIRMultiFactorAssertion.m │ │ │ ├── FIRMultiFactorConstants.m │ │ │ ├── FIRMultiFactorInfo+Internal.h │ │ │ ├── FIRMultiFactorInfo.m │ │ │ ├── FIRMultiFactorResolver+Internal.h │ │ │ ├── FIRMultiFactorResolver.m │ │ │ ├── FIRMultiFactorSession+Internal.h │ │ │ ├── FIRMultiFactorSession.m │ │ │ └── Phone │ │ │ │ ├── FIRPhoneMultiFactorAssertion+Internal.h │ │ │ │ ├── FIRPhoneMultiFactorAssertion.m │ │ │ │ ├── FIRPhoneMultiFactorGenerator.m │ │ │ │ ├── FIRPhoneMultiFactorInfo+Internal.h │ │ │ │ └── FIRPhoneMultiFactorInfo.m │ │ │ ├── Public │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRFederatedAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIRMultiFactor.h │ │ │ ├── FIRMultiFactorAssertion.h │ │ │ ├── FIRMultiFactorInfo.h │ │ │ ├── FIRMultiFactorResolver.h │ │ │ ├── FIRMultiFactorSession.h │ │ │ ├── FIROAuthCredential.h │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRPhoneMultiFactorAssertion.h │ │ │ ├── FIRPhoneMultiFactorGenerator.h │ │ │ ├── FIRPhoneMultiFactorInfo.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ │ ├── Storage │ │ │ ├── FIRAuthKeychainServices.h │ │ │ ├── FIRAuthKeychainServices.m │ │ │ ├── FIRAuthUserDefaults.h │ │ │ └── FIRAuthUserDefaults.m │ │ │ ├── SystemService │ │ │ ├── FIRAuthAPNSToken.h │ │ │ ├── FIRAuthAPNSToken.m │ │ │ ├── FIRAuthAPNSTokenManager.h │ │ │ ├── FIRAuthAPNSTokenManager.m │ │ │ ├── FIRAuthAppCredential.h │ │ │ ├── FIRAuthAppCredential.m │ │ │ ├── FIRAuthAppCredentialManager.h │ │ │ ├── FIRAuthAppCredentialManager.m │ │ │ ├── FIRAuthNotificationManager.h │ │ │ ├── FIRAuthNotificationManager.m │ │ │ ├── FIRAuthStoredUserManager.h │ │ │ ├── FIRAuthStoredUserManager.m │ │ │ ├── FIRSecureTokenService.h │ │ │ └── FIRSecureTokenService.m │ │ │ ├── User │ │ │ ├── FIRAdditionalUserInfo.m │ │ │ ├── FIRAdditionalUserInfo_Internal.h │ │ │ ├── FIRUser.m │ │ │ ├── FIRUserInfoImpl.h │ │ │ ├── FIRUserInfoImpl.m │ │ │ ├── FIRUserMetadata.m │ │ │ ├── FIRUserMetadata_Internal.h │ │ │ └── FIRUser_Internal.h │ │ │ └── Utilities │ │ │ ├── FIRAuthDefaultUIDelegate.h │ │ │ ├── FIRAuthDefaultUIDelegate.m │ │ │ ├── FIRAuthErrorUtils.h │ │ │ ├── FIRAuthErrorUtils.m │ │ │ ├── FIRAuthExceptionUtils.h │ │ │ ├── FIRAuthExceptionUtils.m │ │ │ ├── FIRAuthInternalErrors.h │ │ │ ├── FIRAuthURLPresenter.h │ │ │ ├── FIRAuthURLPresenter.m │ │ │ ├── FIRAuthWebUtils.h │ │ │ ├── FIRAuthWebUtils.m │ │ │ ├── FIRAuthWebView.h │ │ │ ├── FIRAuthWebView.m │ │ │ ├── FIRAuthWebViewController.h │ │ │ ├── FIRAuthWebViewController.m │ │ │ ├── NSData+FIRBase64.h │ │ │ └── NSData+FIRBase64.m │ ├── LICENSE │ └── README.md ├── FirebaseAuthInterop │ ├── Interop │ │ └── Auth │ │ │ └── Public │ │ │ └── FIRAuthInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.h │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ └── FIROptionsInternal.h │ │ │ └── Public │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── firebasecore.nanopb.c │ │ │ └── firebasecore.nanopb.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnosticsInterop │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCrashlytics │ ├── Crashlytics │ │ ├── Crashlytics │ │ │ ├── Components │ │ │ │ ├── FIRCLSApplication.h │ │ │ │ ├── FIRCLSApplication.m │ │ │ │ ├── FIRCLSBinaryImage.h │ │ │ │ ├── FIRCLSBinaryImage.m │ │ │ │ ├── FIRCLSContext.h │ │ │ │ ├── FIRCLSContext.m │ │ │ │ ├── FIRCLSCrashedMarkerFile.c │ │ │ │ ├── FIRCLSCrashedMarkerFile.h │ │ │ │ ├── FIRCLSGlobals.h │ │ │ │ ├── FIRCLSHost.h │ │ │ │ ├── FIRCLSHost.m │ │ │ │ ├── FIRCLSProcess.c │ │ │ │ ├── FIRCLSProcess.h │ │ │ │ ├── FIRCLSUserLogging.h │ │ │ │ └── FIRCLSUserLogging.m │ │ │ ├── Controllers │ │ │ │ ├── FIRCLSNetworkClient.h │ │ │ │ ├── FIRCLSNetworkClient.m │ │ │ │ ├── FIRCLSReportManager.h │ │ │ │ ├── FIRCLSReportManager.m │ │ │ │ ├── FIRCLSReportManager_Private.h │ │ │ │ ├── FIRCLSReportUploader.h │ │ │ │ ├── FIRCLSReportUploader.m │ │ │ │ └── FIRCLSReportUploader_Private.h │ │ │ ├── DataCollection │ │ │ │ ├── FIRCLSDataCollectionArbiter.h │ │ │ │ ├── FIRCLSDataCollectionArbiter.m │ │ │ │ ├── FIRCLSDataCollectionToken.h │ │ │ │ └── FIRCLSDataCollectionToken.m │ │ │ ├── FIRCLSURLSession │ │ │ │ ├── FIRCLSURLSession.h │ │ │ │ ├── FIRCLSURLSession.m │ │ │ │ ├── FIRCLSURLSessionAvailability.h │ │ │ │ ├── FIRCLSURLSessionConfiguration.h │ │ │ │ ├── FIRCLSURLSessionConfiguration.m │ │ │ │ ├── FIRCLSURLSession_PrivateMethods.h │ │ │ │ └── Tasks │ │ │ │ │ ├── FIRCLSURLSessionDataTask.h │ │ │ │ │ ├── FIRCLSURLSessionDataTask.m │ │ │ │ │ ├── FIRCLSURLSessionDataTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask.h │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask.m │ │ │ │ │ ├── FIRCLSURLSessionDownloadTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionTask.h │ │ │ │ │ ├── FIRCLSURLSessionTask.m │ │ │ │ │ ├── FIRCLSURLSessionTask_PrivateMethods.h │ │ │ │ │ ├── FIRCLSURLSessionUploadTask.h │ │ │ │ │ └── FIRCLSURLSessionUploadTask.m │ │ │ ├── FIRCLSUserDefaults │ │ │ │ ├── FIRCLSUserDefaults.h │ │ │ │ ├── FIRCLSUserDefaults.m │ │ │ │ └── FIRCLSUserDefaults_private.h │ │ │ ├── FIRCrashlytics.m │ │ │ ├── FIRExceptionModel.m │ │ │ ├── FIRStackFrame.m │ │ │ ├── Handlers │ │ │ │ ├── FIRCLSException.h │ │ │ │ ├── FIRCLSException.mm │ │ │ │ ├── FIRCLSHandler.h │ │ │ │ ├── FIRCLSHandler.m │ │ │ │ ├── FIRCLSMachException.c │ │ │ │ ├── FIRCLSMachException.h │ │ │ │ ├── FIRCLSSignal.c │ │ │ │ └── FIRCLSSignal.h │ │ │ ├── Helpers │ │ │ │ ├── FIRAEvent+Internal.h │ │ │ │ ├── FIRAEvent+Internal.m │ │ │ │ ├── FIRAEvent.h │ │ │ │ ├── FIRAValue.h │ │ │ │ ├── FIRCLSAllocate.c │ │ │ │ ├── FIRCLSAllocate.h │ │ │ │ ├── FIRCLSDefines.h │ │ │ │ ├── FIRCLSFCRAnalytics.h │ │ │ │ ├── FIRCLSFCRAnalytics.m │ │ │ │ ├── FIRCLSFeatures.h │ │ │ │ ├── FIRCLSFile.h │ │ │ │ ├── FIRCLSFile.m │ │ │ │ ├── FIRCLSInternalLogging.c │ │ │ │ ├── FIRCLSInternalLogging.h │ │ │ │ ├── FIRCLSLogger.h │ │ │ │ ├── FIRCLSLogger.m │ │ │ │ ├── FIRCLSProfiling.c │ │ │ │ ├── FIRCLSProfiling.h │ │ │ │ ├── FIRCLSThreadState.c │ │ │ │ ├── FIRCLSThreadState.h │ │ │ │ ├── FIRCLSUtility.h │ │ │ │ └── FIRCLSUtility.m │ │ │ ├── Models │ │ │ │ ├── FIRCLSExecutionIdentifierModel.h │ │ │ │ ├── FIRCLSExecutionIdentifierModel.m │ │ │ │ ├── FIRCLSFileManager.h │ │ │ │ ├── FIRCLSFileManager.m │ │ │ │ ├── FIRCLSInstallIdentifierModel.h │ │ │ │ ├── FIRCLSInstallIdentifierModel.m │ │ │ │ ├── FIRCLSInternalReport.h │ │ │ │ ├── FIRCLSInternalReport.m │ │ │ │ ├── FIRCLSReport.h │ │ │ │ ├── FIRCLSReport.m │ │ │ │ ├── FIRCLSReport_Private.h │ │ │ │ ├── FIRCLSSettings.h │ │ │ │ ├── FIRCLSSettings.m │ │ │ │ ├── FIRCLSSymbolResolver.h │ │ │ │ ├── FIRCLSSymbolResolver.m │ │ │ │ └── Record │ │ │ │ │ ├── FIRCLSRecordApplication.h │ │ │ │ │ ├── FIRCLSRecordApplication.m │ │ │ │ │ ├── FIRCLSRecordBase.h │ │ │ │ │ ├── FIRCLSRecordBase.m │ │ │ │ │ ├── FIRCLSRecordHost.h │ │ │ │ │ ├── FIRCLSRecordHost.m │ │ │ │ │ ├── FIRCLSRecordIdentity.h │ │ │ │ │ ├── FIRCLSRecordIdentity.m │ │ │ │ │ ├── FIRCLSReportAdapter.h │ │ │ │ │ ├── FIRCLSReportAdapter.m │ │ │ │ │ └── FIRCLSReportAdapter_Private.h │ │ │ ├── Operations │ │ │ │ ├── FIRCLSAsyncOperation.h │ │ │ │ ├── FIRCLSAsyncOperation.m │ │ │ │ ├── FIRCLSAsyncOperation_Private.h │ │ │ │ ├── Reports │ │ │ │ │ ├── FIRCLSPackageReportOperation.h │ │ │ │ │ ├── FIRCLSPackageReportOperation.m │ │ │ │ │ ├── FIRCLSProcessReportOperation.h │ │ │ │ │ └── FIRCLSProcessReportOperation.m │ │ │ │ └── Symbolication │ │ │ │ │ ├── FIRCLSDemangleOperation.h │ │ │ │ │ ├── FIRCLSDemangleOperation.mm │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.h │ │ │ │ │ ├── FIRCLSSerializeSymbolicatedFramesOperation.m │ │ │ │ │ ├── FIRCLSSymbolicationOperation.h │ │ │ │ │ ├── FIRCLSSymbolicationOperation.m │ │ │ │ │ ├── FIRCLSThreadArrayOperation.h │ │ │ │ │ └── FIRCLSThreadArrayOperation.m │ │ │ ├── Private │ │ │ │ ├── FIRExceptionModel_Private.h │ │ │ │ └── FIRStackFrame_Private.h │ │ │ ├── Public │ │ │ │ ├── FIRCrashlytics.h │ │ │ │ ├── FIRExceptionModel.h │ │ │ │ ├── FIRStackFrame.h │ │ │ │ └── FirebaseCrashlytics.h │ │ │ ├── Settings │ │ │ │ ├── FIRCLSSettingsOnboardingManager.h │ │ │ │ ├── FIRCLSSettingsOnboardingManager.m │ │ │ │ ├── Models │ │ │ │ │ ├── FIRCLSApplicationIdentifierModel.h │ │ │ │ │ └── FIRCLSApplicationIdentifierModel.m │ │ │ │ └── Operations │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.h │ │ │ │ │ ├── FIRCLSDownloadAndSaveSettingsOperation.m │ │ │ │ │ ├── FIRCLSNetworkOperation.h │ │ │ │ │ ├── FIRCLSNetworkOperation.m │ │ │ │ │ ├── FIRCLSOnboardingOperation.h │ │ │ │ │ └── FIRCLSOnboardingOperation.m │ │ │ └── Unwind │ │ │ │ ├── Compact │ │ │ │ ├── FIRCLSCompactUnwind.c │ │ │ │ ├── FIRCLSCompactUnwind.h │ │ │ │ └── FIRCLSCompactUnwind_Private.h │ │ │ │ ├── Dwarf │ │ │ │ ├── FIRCLSDataParsing.c │ │ │ │ ├── FIRCLSDataParsing.h │ │ │ │ ├── FIRCLSDwarfExpressionMachine.c │ │ │ │ ├── FIRCLSDwarfExpressionMachine.h │ │ │ │ ├── FIRCLSDwarfUnwind.c │ │ │ │ ├── FIRCLSDwarfUnwind.h │ │ │ │ └── FIRCLSDwarfUnwindRegisters.h │ │ │ │ ├── FIRCLSUnwind.c │ │ │ │ ├── FIRCLSUnwind.h │ │ │ │ ├── FIRCLSUnwind_arch.h │ │ │ │ ├── FIRCLSUnwind_arm.c │ │ │ │ ├── FIRCLSUnwind_x86.c │ │ │ │ └── FIRCLSUnwind_x86.h │ │ ├── LICENSE │ │ ├── Protogen │ │ │ └── nanopb │ │ │ │ ├── crashlytics.nanopb.c │ │ │ │ └── crashlytics.nanopb.h │ │ ├── README.md │ │ ├── Shared │ │ │ ├── FIRCLSByteUtility.h │ │ │ ├── FIRCLSByteUtility.m │ │ │ ├── FIRCLSConstants.h │ │ │ ├── FIRCLSConstants.m │ │ │ ├── FIRCLSFABHost.h │ │ │ ├── FIRCLSFABHost.m │ │ │ ├── FIRCLSMachO │ │ │ │ ├── FIRCLSCodeMapping.h │ │ │ │ ├── FIRCLSCodeMapping.m │ │ │ │ ├── FIRCLSMachO.h │ │ │ │ ├── FIRCLSMachO.m │ │ │ │ ├── FIRCLSMachOBinary.h │ │ │ │ ├── FIRCLSMachOBinary.m │ │ │ │ ├── FIRCLSMachOSlice.h │ │ │ │ ├── FIRCLSMachOSlice.m │ │ │ │ ├── FIRCLSdSYM.h │ │ │ │ └── FIRCLSdSYM.m │ │ │ ├── FIRCLSNetworking │ │ │ │ ├── FIRCLSFABNetworkClient.h │ │ │ │ ├── FIRCLSFABNetworkClient.m │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.h │ │ │ │ ├── FIRCLSMultipartMimeStreamEncoder.m │ │ │ │ ├── FIRCLSNetworkResponseHandler.h │ │ │ │ ├── FIRCLSNetworkResponseHandler.m │ │ │ │ ├── FIRCLSURLBuilder.h │ │ │ │ └── FIRCLSURLBuilder.m │ │ │ ├── FIRCLSOperation │ │ │ │ ├── FIRCLSCompoundOperation.h │ │ │ │ ├── FIRCLSCompoundOperation.m │ │ │ │ ├── FIRCLSFABAsyncOperation.h │ │ │ │ ├── FIRCLSFABAsyncOperation.m │ │ │ │ ├── FIRCLSFABAsyncOperation_Private.h │ │ │ │ └── FIRCLSOperation.h │ │ │ ├── FIRCLSUUID.h │ │ │ └── FIRCLSUUID.m │ │ └── third_party │ │ │ └── libunwind │ │ │ └── dwarf.h │ ├── README.md │ ├── run │ └── upload-symbols ├── FirebaseDatabase │ ├── Firebase │ │ └── Database │ │ │ ├── Api │ │ │ ├── FIRDataSnapshot.m │ │ │ ├── FIRDatabase.m │ │ │ ├── FIRDatabaseComponent.h │ │ │ ├── FIRDatabaseComponent.m │ │ │ ├── FIRDatabaseConfig.h │ │ │ ├── FIRDatabaseConfig.m │ │ │ ├── FIRDatabaseQuery.m │ │ │ ├── FIRMutableData.m │ │ │ ├── FIRServerValue.m │ │ │ ├── FIRTransactionResult.m │ │ │ └── Private │ │ │ │ ├── FIRDataSnapshot_Private.h │ │ │ │ ├── FIRDatabaseQuery_Private.h │ │ │ │ ├── FIRDatabaseReference_Private.h │ │ │ │ ├── FIRDatabase_Private.h │ │ │ │ ├── FIRMutableData_Private.h │ │ │ │ ├── FIRTransactionResult_Private.h │ │ │ │ └── FTypedefs_Private.h │ │ │ ├── Constants │ │ │ ├── FConstants.h │ │ │ └── FConstants.m │ │ │ ├── Core │ │ │ ├── FCompoundHash.h │ │ │ ├── FCompoundHash.m │ │ │ ├── FListenProvider.h │ │ │ ├── FListenProvider.m │ │ │ ├── FPersistentConnection.h │ │ │ ├── FPersistentConnection.m │ │ │ ├── FQueryParams.h │ │ │ ├── FQueryParams.m │ │ │ ├── FQuerySpec.h │ │ │ ├── FQuerySpec.m │ │ │ ├── FRangeMerge.h │ │ │ ├── FRangeMerge.m │ │ │ ├── FRepo.h │ │ │ ├── FRepo.m │ │ │ ├── FRepoInfo.h │ │ │ ├── FRepoInfo.m │ │ │ ├── FRepoManager.h │ │ │ ├── FRepoManager.m │ │ │ ├── FRepo_Private.h │ │ │ ├── FServerValues.h │ │ │ ├── FServerValues.m │ │ │ ├── FSnapshotHolder.h │ │ │ ├── FSnapshotHolder.m │ │ │ ├── FSparseSnapshotTree.h │ │ │ ├── FSparseSnapshotTree.m │ │ │ ├── FSyncPoint.h │ │ │ ├── FSyncPoint.m │ │ │ ├── FSyncTree.h │ │ │ ├── FSyncTree.m │ │ │ ├── FWriteRecord.h │ │ │ ├── FWriteRecord.m │ │ │ ├── FWriteTree.h │ │ │ ├── FWriteTree.m │ │ │ ├── FWriteTreeRef.h │ │ │ ├── FWriteTreeRef.m │ │ │ ├── Operation │ │ │ │ ├── FAckUserWrite.h │ │ │ │ ├── FAckUserWrite.m │ │ │ │ ├── FMerge.h │ │ │ │ ├── FMerge.m │ │ │ │ ├── FOperation.h │ │ │ │ ├── FOperationSource.h │ │ │ │ ├── FOperationSource.m │ │ │ │ ├── FOverwrite.h │ │ │ │ └── FOverwrite.m │ │ │ ├── Utilities │ │ │ │ ├── FIRRetryHelper.h │ │ │ │ ├── FIRRetryHelper.m │ │ │ │ ├── FImmutableTree.h │ │ │ │ ├── FImmutableTree.m │ │ │ │ ├── FPath.h │ │ │ │ ├── FPath.m │ │ │ │ ├── FTree.h │ │ │ │ ├── FTree.m │ │ │ │ ├── FTreeNode.h │ │ │ │ └── FTreeNode.m │ │ │ └── View │ │ │ │ ├── FCacheNode.h │ │ │ │ ├── FCacheNode.m │ │ │ │ ├── FCancelEvent.h │ │ │ │ ├── FCancelEvent.m │ │ │ │ ├── FChange.h │ │ │ │ ├── FChange.m │ │ │ │ ├── FChildEventRegistration.h │ │ │ │ ├── FChildEventRegistration.m │ │ │ │ ├── FDataEvent.h │ │ │ │ ├── FDataEvent.m │ │ │ │ ├── FEvent.h │ │ │ │ ├── FEventRaiser.h │ │ │ │ ├── FEventRaiser.m │ │ │ │ ├── FEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.m │ │ │ │ ├── FValueEventRegistration.h │ │ │ │ ├── FValueEventRegistration.m │ │ │ │ ├── FView.h │ │ │ │ ├── FView.m │ │ │ │ ├── FViewCache.h │ │ │ │ ├── FViewCache.m │ │ │ │ └── Filter │ │ │ │ ├── FChildChangeAccumulator.h │ │ │ │ ├── FChildChangeAccumulator.m │ │ │ │ ├── FCompleteChildSource.h │ │ │ │ ├── FIndexedFilter.h │ │ │ │ ├── FIndexedFilter.m │ │ │ │ ├── FLimitedFilter.h │ │ │ │ ├── FLimitedFilter.m │ │ │ │ └── FNodeFilter.h │ │ │ ├── FClock.h │ │ │ ├── FClock.m │ │ │ ├── FEventGenerator.h │ │ │ ├── FEventGenerator.m │ │ │ ├── FIRDatabaseConfig_Private.h │ │ │ ├── FIRDatabaseReference.m │ │ │ ├── FIndex.h │ │ │ ├── FIndex.m │ │ │ ├── FKeyIndex.h │ │ │ ├── FKeyIndex.m │ │ │ ├── FListenComplete.h │ │ │ ├── FListenComplete.m │ │ │ ├── FMaxNode.h │ │ │ ├── FMaxNode.m │ │ │ ├── FNamedNode.h │ │ │ ├── FNamedNode.m │ │ │ ├── FPathIndex.h │ │ │ ├── FPathIndex.m │ │ │ ├── FPriorityIndex.h │ │ │ ├── FPriorityIndex.m │ │ │ ├── FRangedFilter.h │ │ │ ├── FRangedFilter.m │ │ │ ├── FTransformedEnumerator.h │ │ │ ├── FTransformedEnumerator.m │ │ │ ├── FValueIndex.h │ │ │ ├── FValueIndex.m │ │ │ ├── FViewProcessor.h │ │ │ ├── FViewProcessor.m │ │ │ ├── FViewProcessorResult.h │ │ │ ├── FViewProcessorResult.m │ │ │ ├── Login │ │ │ ├── FAuthTokenProvider.h │ │ │ ├── FAuthTokenProvider.m │ │ │ ├── FIRNoopAuthTokenProvider.h │ │ │ └── FIRNoopAuthTokenProvider.m │ │ │ ├── Persistence │ │ │ ├── FCachePolicy.h │ │ │ ├── FCachePolicy.m │ │ │ ├── FLevelDBStorageEngine.h │ │ │ ├── FLevelDBStorageEngine.m │ │ │ ├── FPendingPut.h │ │ │ ├── FPendingPut.m │ │ │ ├── FPersistenceManager.h │ │ │ ├── FPersistenceManager.m │ │ │ ├── FPruneForest.h │ │ │ ├── FPruneForest.m │ │ │ ├── FStorageEngine.h │ │ │ ├── FTrackedQuery.h │ │ │ ├── FTrackedQuery.m │ │ │ ├── FTrackedQueryManager.h │ │ │ └── FTrackedQueryManager.m │ │ │ ├── Public │ │ │ ├── FIRDataEventType.h │ │ │ ├── FIRDataSnapshot.h │ │ │ ├── FIRDatabase.h │ │ │ ├── FIRDatabaseQuery.h │ │ │ ├── FIRDatabaseReference.h │ │ │ ├── FIRMutableData.h │ │ │ ├── FIRServerValue.h │ │ │ ├── FIRTransactionResult.h │ │ │ └── FirebaseDatabase.h │ │ │ ├── Realtime │ │ │ ├── FConnection.h │ │ │ ├── FConnection.m │ │ │ ├── FWebSocketConnection.h │ │ │ └── FWebSocketConnection.m │ │ │ ├── Snapshot │ │ │ ├── FChildrenNode.h │ │ │ ├── FChildrenNode.m │ │ │ ├── FCompoundWrite.h │ │ │ ├── FCompoundWrite.m │ │ │ ├── FEmptyNode.h │ │ │ ├── FEmptyNode.m │ │ │ ├── FIndexedNode.h │ │ │ ├── FIndexedNode.m │ │ │ ├── FLeafNode.h │ │ │ ├── FLeafNode.m │ │ │ ├── FNode.h │ │ │ ├── FSnapshotUtilities.h │ │ │ └── FSnapshotUtilities.m │ │ │ ├── Utilities │ │ │ ├── FAtomicNumber.h │ │ │ ├── FAtomicNumber.m │ │ │ ├── FEventEmitter.h │ │ │ ├── FEventEmitter.m │ │ │ ├── FNextPushId.h │ │ │ ├── FNextPushId.m │ │ │ ├── FParsedUrl.h │ │ │ ├── FParsedUrl.m │ │ │ ├── FStringUtilities.h │ │ │ ├── FStringUtilities.m │ │ │ ├── FTypedefs.h │ │ │ ├── FUtilities.h │ │ │ ├── FUtilities.m │ │ │ ├── FValidation.h │ │ │ ├── FValidation.m │ │ │ └── Tuples │ │ │ │ ├── FTupleBoolBlock.h │ │ │ │ ├── FTupleBoolBlock.m │ │ │ │ ├── FTupleCallbackStatus.h │ │ │ │ ├── FTupleCallbackStatus.m │ │ │ │ ├── FTupleFirebase.h │ │ │ │ ├── FTupleFirebase.m │ │ │ │ ├── FTupleNodePath.h │ │ │ │ ├── FTupleNodePath.m │ │ │ │ ├── FTupleObjectNode.h │ │ │ │ ├── FTupleObjectNode.m │ │ │ │ ├── FTupleObjects.h │ │ │ │ ├── FTupleObjects.m │ │ │ │ ├── FTupleOnDisconnect.h │ │ │ │ ├── FTupleOnDisconnect.m │ │ │ │ ├── FTuplePathValue.h │ │ │ │ ├── FTuplePathValue.m │ │ │ │ ├── FTupleRemovedQueriesEvents.h │ │ │ │ ├── FTupleRemovedQueriesEvents.m │ │ │ │ ├── FTupleSetIdPath.h │ │ │ │ ├── FTupleSetIdPath.m │ │ │ │ ├── FTupleStringNode.h │ │ │ │ ├── FTupleStringNode.m │ │ │ │ ├── FTupleTSN.h │ │ │ │ ├── FTupleTSN.m │ │ │ │ ├── FTupleTransaction.h │ │ │ │ ├── FTupleTransaction.m │ │ │ │ ├── FTupleUserCallback.h │ │ │ │ └── FTupleUserCallback.m │ │ │ └── third_party │ │ │ ├── FImmutableSortedDictionary │ │ │ └── FImmutableSortedDictionary │ │ │ │ ├── FArraySortedDictionary.h │ │ │ │ ├── FArraySortedDictionary.m │ │ │ │ ├── FImmutableSortedDictionary.h │ │ │ │ ├── FImmutableSortedDictionary.m │ │ │ │ ├── FImmutableSortedSet.h │ │ │ │ ├── FImmutableSortedSet.m │ │ │ │ ├── FLLRBEmptyNode.h │ │ │ │ ├── FLLRBEmptyNode.m │ │ │ │ ├── FLLRBNode.h │ │ │ │ ├── FLLRBValueNode.h │ │ │ │ ├── FLLRBValueNode.m │ │ │ │ ├── FTreeSortedDictionary.h │ │ │ │ ├── FTreeSortedDictionary.m │ │ │ │ ├── FTreeSortedDictionaryEnumerator.h │ │ │ │ └── FTreeSortedDictionaryEnumerator.m │ │ │ ├── SocketRocket │ │ │ ├── FSRWebSocket.h │ │ │ ├── FSRWebSocket.m │ │ │ ├── NSData+SRB64Additions.h │ │ │ ├── NSData+SRB64Additions.m │ │ │ ├── fbase64.c │ │ │ └── fbase64.h │ │ │ └── Wrap-leveldb │ │ │ ├── APLevelDB.h │ │ │ └── APLevelDB.mm │ ├── LICENSE │ └── README.md ├── FirebaseInstallations │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ ├── Errors │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ └── FIRInstallationsHTTPError.m │ │ │ ├── FIRInstallations.m │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ ├── FIRInstallationsItem.h │ │ │ ├── FIRInstallationsItem.m │ │ │ ├── FIRInstallationsLogger.h │ │ │ ├── FIRInstallationsLogger.m │ │ │ ├── FIRInstallationsVersion.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ └── Public │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ ├── FIRInstallationsVersion.h │ │ │ └── FirebaseInstallations.h │ ├── LICENSE │ └── README.md ├── FirebaseStorage │ ├── FirebaseStorage │ │ └── Sources │ │ │ ├── FIRStorage.m │ │ │ ├── FIRStorageComponent.h │ │ │ ├── FIRStorageComponent.m │ │ │ ├── FIRStorageConstants.m │ │ │ ├── FIRStorageConstants_Private.h │ │ │ ├── FIRStorageDeleteTask.h │ │ │ ├── FIRStorageDeleteTask.m │ │ │ ├── FIRStorageDownloadTask.m │ │ │ ├── FIRStorageDownloadTask_Private.h │ │ │ ├── FIRStorageErrors.h │ │ │ ├── FIRStorageErrors.m │ │ │ ├── FIRStorageGetDownloadURLTask.h │ │ │ ├── FIRStorageGetDownloadURLTask.m │ │ │ ├── FIRStorageGetDownloadURLTask_Private.h │ │ │ ├── FIRStorageGetMetadataTask.h │ │ │ ├── FIRStorageGetMetadataTask.m │ │ │ ├── FIRStorageListResult.m │ │ │ ├── FIRStorageListResult_Private.h │ │ │ ├── FIRStorageListTask.h │ │ │ ├── FIRStorageListTask.m │ │ │ ├── FIRStorageMetadata.m │ │ │ ├── FIRStorageMetadata_Private.h │ │ │ ├── FIRStorageObservableTask.m │ │ │ ├── FIRStorageObservableTask_Private.h │ │ │ ├── FIRStoragePath.h │ │ │ ├── FIRStoragePath.m │ │ │ ├── FIRStorageReference.m │ │ │ ├── FIRStorageReference_Private.h │ │ │ ├── FIRStorageTask.m │ │ │ ├── FIRStorageTaskSnapshot.m │ │ │ ├── FIRStorageTaskSnapshot_Private.h │ │ │ ├── FIRStorageTask_Private.h │ │ │ ├── FIRStorageTokenAuthorizer.h │ │ │ ├── FIRStorageTokenAuthorizer.m │ │ │ ├── FIRStorageUpdateMetadataTask.h │ │ │ ├── FIRStorageUpdateMetadataTask.m │ │ │ ├── FIRStorageUploadTask.m │ │ │ ├── FIRStorageUploadTask_Private.h │ │ │ ├── FIRStorageUtils.h │ │ │ ├── FIRStorageUtils.m │ │ │ ├── FIRStorage_Private.h │ │ │ └── Public │ │ │ ├── FIRStorage.h │ │ │ ├── FIRStorageConstants.h │ │ │ ├── FIRStorageDownloadTask.h │ │ │ ├── FIRStorageListResult.h │ │ │ ├── FIRStorageMetadata.h │ │ │ ├── FIRStorageObservableTask.h │ │ │ ├── FIRStorageReference.h │ │ │ ├── FIRStorageTask.h │ │ │ ├── FIRStorageTaskSnapshot.h │ │ │ ├── FIRStorageUploadTask.h │ │ │ └── FirebaseStorage.h │ ├── LICENSE │ └── README.md ├── GTMAppAuth │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMAppAuth.h │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.h │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.m │ │ ├── GTMAppAuthFetcherAuthorization.h │ │ ├── GTMAppAuthFetcherAuthorization.m │ │ ├── GTMKeychain.h │ │ ├── GTMOAuth2KeychainCompatibility │ │ ├── GTMOAuth2KeychainCompatibility.h │ │ └── GTMOAuth2KeychainCompatibility.m │ │ └── iOS │ │ └── GTMKeychain_iOS.m ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMGatherInputStream.h │ │ ├── GTMGatherInputStream.m │ │ ├── GTMMIMEDocument.h │ │ ├── GTMMIMEDocument.m │ │ ├── GTMReadMonitorInputStream.h │ │ ├── GTMReadMonitorInputStream.m │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.h │ │ └── GTMSessionUploadFetcher.m ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ └── Modules │ │ └── module.modulemap ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCORDataFuture.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── GDTCORUploadPackage.m │ │ │ ├── Private │ │ │ ├── GDTCORDataFuture.h │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ ├── GDTCORUploadCoordinator.h │ │ │ └── GDTCORUploadPackage_Private.h │ │ │ └── Public │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORPrioritizer.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStorageProtocol.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ ├── GDTCORUploadPackage.h │ │ │ ├── GDTCORUploader.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md ├── GoogleDataTransportCCTSupport │ ├── GoogleDataTransportCCTSupport │ │ └── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTPrioritizer.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTCOREvent+NetworkConnectionInfo.m │ │ │ ├── Private │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ ├── GDTCCTPrioritizer.h │ │ │ ├── GDTCCTUploader.h │ │ │ └── GDTCOREvent+NetworkConnectionInfo.h │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── cct.nanopb.c │ │ │ └── cct.nanopb.h │ ├── LICENSE │ └── README.md ├── GoogleSignIn │ ├── .cocoapods.yml │ ├── CHANGELOG.md │ ├── Frameworks │ │ └── GoogleSignIn.framework │ │ │ ├── GoogleSignIn │ │ │ ├── Headers │ │ │ ├── GIDAuthentication.h │ │ │ ├── GIDGoogleUser.h │ │ │ ├── GIDProfileData.h │ │ │ ├── GIDSignIn.h │ │ │ ├── GIDSignInButton.h │ │ │ └── GoogleSignIn.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── README.md │ └── Resources │ │ └── GoogleSignIn.bundle │ │ ├── Info.plist │ │ ├── Roboto-Bold.ttf │ │ ├── ar.lproj │ │ └── GoogleSignIn.strings │ │ ├── ca.lproj │ │ └── GoogleSignIn.strings │ │ ├── cs.lproj │ │ └── GoogleSignIn.strings │ │ ├── da.lproj │ │ └── GoogleSignIn.strings │ │ ├── de.lproj │ │ └── GoogleSignIn.strings │ │ ├── el.lproj │ │ └── GoogleSignIn.strings │ │ ├── en.lproj │ │ └── GoogleSignIn.strings │ │ ├── en_GB.lproj │ │ └── GoogleSignIn.strings │ │ ├── es.lproj │ │ └── GoogleSignIn.strings │ │ ├── es_MX.lproj │ │ └── GoogleSignIn.strings │ │ ├── fi.lproj │ │ └── GoogleSignIn.strings │ │ ├── fr.lproj │ │ └── GoogleSignIn.strings │ │ ├── fr_CA.lproj │ │ └── GoogleSignIn.strings │ │ ├── google.png │ │ ├── google@2x.png │ │ ├── google@3x.png │ │ ├── he.lproj │ │ └── GoogleSignIn.strings │ │ ├── hi.lproj │ │ └── GoogleSignIn.strings │ │ ├── hr.lproj │ │ └── GoogleSignIn.strings │ │ ├── hu.lproj │ │ └── GoogleSignIn.strings │ │ ├── id.lproj │ │ └── GoogleSignIn.strings │ │ ├── it.lproj │ │ └── GoogleSignIn.strings │ │ ├── ja.lproj │ │ └── GoogleSignIn.strings │ │ ├── ko.lproj │ │ └── GoogleSignIn.strings │ │ ├── ms.lproj │ │ └── GoogleSignIn.strings │ │ ├── nb.lproj │ │ └── GoogleSignIn.strings │ │ ├── nl.lproj │ │ └── GoogleSignIn.strings │ │ ├── pl.lproj │ │ └── GoogleSignIn.strings │ │ ├── pt.lproj │ │ └── GoogleSignIn.strings │ │ ├── pt_BR.lproj │ │ └── GoogleSignIn.strings │ │ ├── pt_PT.lproj │ │ └── GoogleSignIn.strings │ │ ├── ro.lproj │ │ └── GoogleSignIn.strings │ │ ├── ru.lproj │ │ └── GoogleSignIn.strings │ │ ├── sk.lproj │ │ └── GoogleSignIn.strings │ │ ├── sv.lproj │ │ └── GoogleSignIn.strings │ │ ├── th.lproj │ │ └── GoogleSignIn.strings │ │ ├── tr.lproj │ │ └── GoogleSignIn.strings │ │ ├── uk.lproj │ │ └── GoogleSignIn.strings │ │ ├── vi.lproj │ │ └── GoogleSignIn.strings │ │ ├── zh_CN.lproj │ │ └── GoogleSignIn.strings │ │ └── zh_TW.lproj │ │ └── GoogleSignIn.strings ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ └── GULApplication.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Public │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ └── GULSecureCoding.h │ │ │ ├── SecureStorage │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ └── GULKeychainUtils.m │ │ │ └── third_party │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── LICENSE │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.h │ │ │ └── GULNSData+zlib.m │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ ├── SceneDelegateSwizzler │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ └── README.md ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAnalyticsInterop │ │ │ ├── FIRAnalyticsInterop.h │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ ├── FIRInteropEventNames.h │ │ │ └── FIRInteropParameterNames.h │ │ ├── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAnalyticsInterop │ │ ├── FIRAnalyticsInterop.h │ │ ├── FIRAnalyticsInteropListener.h │ │ ├── FIRInteropEventNames.h │ │ └── FIRInteropParameterNames.h │ │ ├── FirebaseAuthInterop │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FIRCoreDiagnosticsData.h │ │ └── FIRCoreDiagnosticsInterop.h ├── InputBarAccessoryView │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Controls │ │ ├── InputBarButtonItem.swift │ │ └── InputBarSendButton.swift │ │ ├── Extensions │ │ ├── NSMutableAttributedString+Extensions.swift │ │ ├── NSNotification+Extensions.swift │ │ ├── String+Extensions.swift │ │ ├── UITextView+Extensions.swift │ │ └── UIView+AutoLayout.swift │ │ ├── InputBarAccessoryView.swift │ │ ├── KeyboardManager │ │ ├── KeyboardEvent.swift │ │ ├── KeyboardManager.swift │ │ └── KeyboardNotification.swift │ │ ├── Models │ │ ├── HorizontalEdgePadding.swift │ │ └── NSConstraintLayoutSet.swift │ │ ├── Plugins │ │ ├── AttachmentManager │ │ │ ├── AttachmentManager.swift │ │ │ ├── Protocols │ │ │ │ ├── AttachmentManagerDataSource.swift │ │ │ │ └── AttachmentManagerDelegate.swift │ │ │ └── Views │ │ │ │ ├── AttachmentCell.swift │ │ │ │ ├── AttachmentsView.swift │ │ │ │ └── ImageAttachmentCell.swift │ │ └── AutocompleteManager │ │ │ ├── AutocompleteManager.swift │ │ │ ├── Models │ │ │ ├── AutocompleteCompletion.swift │ │ │ └── AutocompleteSession.swift │ │ │ ├── Protocols │ │ │ ├── AutocompleteManagerDataSource.swift │ │ │ └── AutocompleteManagerDelegate.swift │ │ │ └── Views │ │ │ ├── AutocompleteCell.swift │ │ │ └── AutocompleteTableView.swift │ │ ├── Protocols │ │ ├── InputBarAccessoryViewDelegate.swift │ │ ├── InputItem.swift │ │ └── InputPlugin.swift │ │ ├── Supporting Files │ │ └── InputBarAccessoryView+Availability.swift │ │ ├── ViewControllers │ │ └── InputBarViewController.swift │ │ └── Views │ │ ├── InputStackView.swift │ │ ├── InputTextView.swift │ │ └── SeparatorLine.swift ├── JGProgressHUD │ ├── JGProgressHUD │ │ └── JGProgressHUD │ │ │ ├── JGProgressHUD.m │ │ │ ├── JGProgressHUDAnimation.m │ │ │ ├── JGProgressHUDErrorIndicatorView.m │ │ │ ├── JGProgressHUDFadeAnimation.m │ │ │ ├── JGProgressHUDFadeZoomAnimation.m │ │ │ ├── JGProgressHUDImageIndicatorView.m │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.m │ │ │ ├── JGProgressHUDIndicatorView.m │ │ │ ├── JGProgressHUDPieIndicatorView.m │ │ │ ├── JGProgressHUDRingIndicatorView.m │ │ │ ├── JGProgressHUDShadow.m │ │ │ ├── JGProgressHUDSuccessIndicatorView.m │ │ │ └── include │ │ │ ├── JGProgressHUD-Defines.h │ │ │ ├── JGProgressHUD.h │ │ │ ├── JGProgressHUDAnimation.h │ │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ │ ├── JGProgressHUDFadeAnimation.h │ │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ │ ├── JGProgressHUDImageIndicatorView.h │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ │ ├── JGProgressHUDIndicatorView.h │ │ │ ├── JGProgressHUDPieIndicatorView.h │ │ │ ├── JGProgressHUDRingIndicatorView.h │ │ │ ├── JGProgressHUDShadow.h │ │ │ └── JGProgressHUDSuccessIndicatorView.h │ ├── LICENSE.txt │ └── README.md ├── Manifest.lock ├── MessageKit │ ├── Assets │ │ └── MessageKitAssets.bundle │ │ │ └── Images │ │ │ ├── bubble_full.png │ │ │ ├── bubble_full@2x.png │ │ │ ├── bubble_full@3x.png │ │ │ ├── bubble_full_tail_v1.png │ │ │ ├── bubble_full_tail_v1@2x.png │ │ │ ├── bubble_full_tail_v1@3x.png │ │ │ ├── bubble_full_tail_v2.png │ │ │ ├── bubble_full_tail_v2@2x.png │ │ │ ├── bubble_full_tail_v2@3x.png │ │ │ ├── bubble_outlined.png │ │ │ ├── bubble_outlined@2x.png │ │ │ ├── bubble_outlined@3x.png │ │ │ ├── bubble_outlined_tail_v1.png │ │ │ ├── bubble_outlined_tail_v1@2x.png │ │ │ ├── bubble_outlined_tail_v1@3x.png │ │ │ ├── bubble_outlined_tail_v2.png │ │ │ ├── bubble_outlined_tail_v2@2x.png │ │ │ ├── bubble_outlined_tail_v2@3x.png │ │ │ ├── disclouser.png │ │ │ ├── disclouser@2x.png │ │ │ ├── disclouser@3x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@3x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ └── play@3x.png │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── Controllers │ │ ├── MessagesViewController+Keyboard.swift │ │ ├── MessagesViewController+Menu.swift │ │ └── MessagesViewController.swift │ │ ├── Extensions │ │ ├── Bundle+Extensions.swift │ │ ├── CGRect+Extensions.swift │ │ ├── NSAttributedString+Extensions.swift │ │ ├── UIColor+Extensions.swift │ │ ├── UIEdgeInsets+Extensions.swift │ │ ├── UIImage+Extension.swift │ │ └── UIView+Extensions.swift │ │ ├── Layout │ │ ├── AudioMessageSizeCalculator.swift │ │ ├── CellSizeCalculator.swift │ │ ├── ContactMessageSizeCalculator.swift │ │ ├── LocationMessageSizeCalculator.swift │ │ ├── MediaMessageSizeCalculator.swift │ │ ├── MessageSizeCalculator.swift │ │ ├── MessagesCollectionViewFlowLayout.swift │ │ ├── MessagesCollectionViewLayoutAttributes.swift │ │ ├── TextMessageSizeCalculator.swift │ │ └── TypingIndicatorCellSizeCalculator.swift │ │ ├── Models │ │ ├── AccessoryPosition.swift │ │ ├── Avatar.swift │ │ ├── AvatarPosition.swift │ │ ├── DetectorType.swift │ │ ├── HorizontalEdgeInsets.swift │ │ ├── LabelAlignment.swift │ │ ├── LocationMessageSnapshotOptions.swift │ │ ├── MessageKind.swift │ │ ├── MessageKitDateFormatter.swift │ │ ├── MessageKitError.swift │ │ ├── MessageStyle.swift │ │ ├── NSConstraintLayoutSet.swift │ │ └── Sender.swift │ │ ├── Protocols │ │ ├── AudioItem.swift │ │ ├── ContactItem.swift │ │ ├── LocationItem.swift │ │ ├── MediaItem.swift │ │ ├── MessageCellDelegate.swift │ │ ├── MessageLabelDelegate.swift │ │ ├── MessageType.swift │ │ ├── MessagesDataSource.swift │ │ ├── MessagesDisplayDelegate.swift │ │ ├── MessagesLayoutDelegate.swift │ │ └── SenderType.swift │ │ ├── Supporting │ │ ├── MessageInputBar.swift │ │ └── MessageKit+Availability.swift │ │ └── Views │ │ ├── AvatarView.swift │ │ ├── BubbleCircle.swift │ │ ├── Cells │ │ ├── AudioMessageCell.swift │ │ ├── ContactMessageCell.swift │ │ ├── LocationMessageCell.swift │ │ ├── MediaMessageCell.swift │ │ ├── MessageCollectionViewCell.swift │ │ ├── MessageContentCell.swift │ │ ├── TextMessageCell.swift │ │ └── TypingIndicatorCell.swift │ │ ├── HeadersFooters │ │ └── MessageReusableView.swift │ │ ├── InsetLabel.swift │ │ ├── MessageContainerView.swift │ │ ├── MessageLabel.swift │ │ ├── MessagesCollectionView.swift │ │ ├── PlayButtonView.swift │ │ ├── TypingBubble.swift │ │ └── TypingIndicator.swift ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── afrazsiddiqui.xcuserdatad │ │ └── xcschemes │ │ ├── AppAuth.xcscheme │ │ ├── FBSDKCoreKit.xcscheme │ │ ├── FBSDKLoginKit.xcscheme │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseAnalyticsInterop.xcscheme │ │ ├── FirebaseAuth.xcscheme │ │ ├── FirebaseAuthInterop.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ ├── FirebaseCoreDiagnosticsInterop.xcscheme │ │ ├── FirebaseCrashlytics.xcscheme │ │ ├── FirebaseDatabase.xcscheme │ │ ├── FirebaseInstallations.xcscheme │ │ ├── FirebaseStorage.xcscheme │ │ ├── GTMAppAuth.xcscheme │ │ ├── GTMSessionFetcher.xcscheme │ │ ├── GoogleAppMeasurement.xcscheme │ │ ├── GoogleDataTransport.xcscheme │ │ ├── GoogleDataTransportCCTSupport.xcscheme │ │ ├── GoogleSignIn.xcscheme │ │ ├── GoogleUtilities.xcscheme │ │ ├── InputBarAccessoryView.xcscheme │ │ ├── JGProgressHUD.xcscheme │ │ ├── MessageKit-MessageKitAssets.xcscheme │ │ ├── MessageKit.xcscheme │ │ ├── Pods-Messenger.xcscheme │ │ ├── PromisesObjC.xcscheme │ │ ├── Realm.xcscheme │ │ ├── RealmSwift.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── leveldb-library.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist ├── PromisesObjC │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FBLPromises │ │ ├── FBLPromise+All.m │ │ ├── FBLPromise+Always.m │ │ ├── FBLPromise+Any.m │ │ ├── FBLPromise+Async.m │ │ ├── FBLPromise+Await.m │ │ ├── FBLPromise+Catch.m │ │ ├── FBLPromise+Delay.m │ │ ├── FBLPromise+Do.m │ │ ├── FBLPromise+Race.m │ │ ├── FBLPromise+Recover.m │ │ ├── FBLPromise+Reduce.m │ │ ├── FBLPromise+Retry.m │ │ ├── FBLPromise+Testing.m │ │ ├── FBLPromise+Then.m │ │ ├── FBLPromise+Timeout.m │ │ ├── FBLPromise+Validate.m │ │ ├── FBLPromise+Wrap.m │ │ ├── FBLPromise.m │ │ ├── FBLPromiseError.m │ │ └── include │ │ ├── FBLPromise+All.h │ │ ├── FBLPromise+Always.h │ │ ├── FBLPromise+Any.h │ │ ├── FBLPromise+Async.h │ │ ├── FBLPromise+Await.h │ │ ├── FBLPromise+Catch.h │ │ ├── FBLPromise+Delay.h │ │ ├── FBLPromise+Do.h │ │ ├── FBLPromise+Race.h │ │ ├── FBLPromise+Recover.h │ │ ├── FBLPromise+Reduce.h │ │ ├── FBLPromise+Retry.h │ │ ├── FBLPromise+Testing.h │ │ ├── FBLPromise+Then.h │ │ ├── FBLPromise+Timeout.h │ │ ├── FBLPromise+Validate.h │ │ ├── FBLPromise+Wrap.h │ │ ├── FBLPromise.h │ │ ├── FBLPromiseError.h │ │ ├── FBLPromisePrivate.h │ │ └── FBLPromises.h ├── Realm │ ├── LICENSE │ ├── README.md │ ├── Realm │ │ ├── NSError+RLMSync.m │ │ ├── ObjectStore │ │ │ └── src │ │ │ │ ├── binding_callback_thread_observer.cpp │ │ │ │ ├── collection_notifications.cpp │ │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── external_commit_helper.cpp │ │ │ │ │ └── keychain_helper.cpp │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ ├── collection_notifier.cpp │ │ │ │ ├── list_notifier.cpp │ │ │ │ ├── object_notifier.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ ├── results_notifier.cpp │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object_changeset.cpp │ │ │ │ ├── object_schema.cpp │ │ │ │ ├── object_store.cpp │ │ │ │ ├── placeholder.cpp │ │ │ │ ├── results.cpp │ │ │ │ ├── schema.cpp │ │ │ │ ├── shared_realm.cpp │ │ │ │ ├── sync │ │ │ │ ├── async_open_task.cpp │ │ │ │ ├── impl │ │ │ │ │ ├── apple │ │ │ │ │ │ ├── network_reachability_observer.cpp │ │ │ │ │ │ └── system_configuration.cpp │ │ │ │ │ ├── sync_file.cpp │ │ │ │ │ ├── sync_metadata.cpp │ │ │ │ │ └── work_queue.cpp │ │ │ │ ├── partial_sync.cpp │ │ │ │ ├── sync_config.cpp │ │ │ │ ├── sync_manager.cpp │ │ │ │ ├── sync_session.cpp │ │ │ │ └── sync_user.cpp │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ └── util │ │ │ │ ├── scheduler.cpp │ │ │ │ └── uuid.cpp │ │ ├── RLMAccessor.mm │ │ ├── RLMAnalytics.mm │ │ ├── RLMArray.mm │ │ ├── RLMClassInfo.mm │ │ ├── RLMCollection.mm │ │ ├── RLMConstants.m │ │ ├── RLMJSONModels.m │ │ ├── RLMListBase.mm │ │ ├── RLMManagedArray.mm │ │ ├── RLMMigration.mm │ │ ├── RLMNetworkClient.mm │ │ ├── RLMObject.mm │ │ ├── RLMObjectBase.mm │ │ ├── RLMObjectSchema.mm │ │ ├── RLMObjectStore.mm │ │ ├── RLMObservation.mm │ │ ├── RLMOptionalBase.mm │ │ ├── RLMPredicateUtil.mm │ │ ├── RLMProperty.mm │ │ ├── RLMQueryUtil.mm │ │ ├── RLMRealm+Sync.mm │ │ ├── RLMRealm.mm │ │ ├── RLMRealmConfiguration+Sync.mm │ │ ├── RLMRealmConfiguration.mm │ │ ├── RLMRealmUtil.mm │ │ ├── RLMResults.mm │ │ ├── RLMSchema.mm │ │ ├── RLMSwiftSupport.m │ │ ├── RLMSyncConfiguration.mm │ │ ├── RLMSyncCredentials.m │ │ ├── RLMSyncManager.mm │ │ ├── RLMSyncPermission.mm │ │ ├── RLMSyncSession.mm │ │ ├── RLMSyncSessionRefreshHandle.mm │ │ ├── RLMSyncSubscription.mm │ │ ├── RLMSyncUser.mm │ │ ├── RLMSyncUtil.mm │ │ ├── RLMThreadSafeReference.mm │ │ ├── RLMUpdateChecker.mm │ │ ├── RLMUtil.mm │ │ └── Realm.modulemap │ ├── build.sh │ ├── core │ │ └── librealmcore-ios.a │ └── include │ │ ├── NSError+RLMSync.h │ │ ├── RLMAccessor.h │ │ ├── RLMAccessor.hpp │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMArray_Private.hpp │ │ ├── RLMClassInfo.hpp │ │ ├── RLMCollection.h │ │ ├── RLMCollection_Private.h │ │ ├── RLMCollection_Private.hpp │ │ ├── RLMConstants.h │ │ ├── RLMJSONModels.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMNetworkClient.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectBase_Private.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMProperty_Private.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealm+Sync.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration+Sync.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealmConfiguration_Private.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMResults_Private.hpp │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ ├── RLMSyncConfiguration.h │ │ ├── RLMSyncConfiguration_Private.h │ │ ├── RLMSyncConfiguration_Private.hpp │ │ ├── RLMSyncCredentials.h │ │ ├── RLMSyncManager.h │ │ ├── RLMSyncManager_Private.h │ │ ├── RLMSyncPermission.h │ │ ├── RLMSyncSession.h │ │ ├── RLMSyncSessionRefreshHandle.h │ │ ├── RLMSyncSessionRefreshHandle.hpp │ │ ├── RLMSyncSession_Private.hpp │ │ ├── RLMSyncSubscription.h │ │ ├── RLMSyncUser.h │ │ ├── RLMSyncUser_Private.hpp │ │ ├── RLMSyncUtil.h │ │ ├── RLMSyncUtil_Private.h │ │ ├── RLMSyncUtil_Private.hpp │ │ ├── RLMThreadSafeReference.h │ │ ├── RLMThreadSafeReference_Private.hpp │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm.h │ │ ├── audit.hpp │ │ ├── binding_callback_thread_observer.hpp │ │ ├── binding_context.hpp │ │ ├── collection_notifications.hpp │ │ ├── core │ │ ├── realm.hpp │ │ └── realm │ │ │ ├── alloc.hpp │ │ │ ├── alloc_slab.hpp │ │ │ ├── array.hpp │ │ │ ├── array_backlink.hpp │ │ │ ├── array_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_blobs_small.hpp │ │ │ ├── array_bool.hpp │ │ │ ├── array_direct.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_key.hpp │ │ │ ├── array_list.hpp │ │ │ ├── array_mixed.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_short.hpp │ │ │ ├── array_timestamp.hpp │ │ │ ├── array_unsigned.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bplustree.hpp │ │ │ ├── chunked_binary.hpp │ │ │ ├── cluster.hpp │ │ │ ├── cluster_tree.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_integer.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── data_type.hpp │ │ │ ├── db.hpp │ │ │ ├── db_options.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── global_key.hpp │ │ │ ├── group.hpp │ │ │ ├── group_writer.hpp │ │ │ ├── handover_defs.hpp │ │ │ ├── history.hpp │ │ │ ├── impl │ │ │ ├── array_writer.hpp │ │ │ ├── clamped_hex_dump.hpp │ │ │ ├── clock.hpp │ │ │ ├── cont_transact_hist.hpp │ │ │ ├── destroy_guard.hpp │ │ │ ├── input_stream.hpp │ │ │ ├── output_stream.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── index_string.hpp │ │ │ ├── keys.hpp │ │ │ ├── list.hpp │ │ │ ├── metrics │ │ │ ├── metric_timer.hpp │ │ │ ├── metrics.hpp │ │ │ ├── query_info.hpp │ │ │ └── transaction_info.hpp │ │ │ ├── mixed.hpp │ │ │ ├── node.hpp │ │ │ ├── node_header.hpp │ │ │ ├── null.hpp │ │ │ ├── obj.hpp │ │ │ ├── obj_list.hpp │ │ │ ├── owned_data.hpp │ │ │ ├── parser │ │ │ ├── collection_operator_expression.hpp │ │ │ ├── expression_container.hpp │ │ │ ├── keypath_mapping.hpp │ │ │ ├── parser.hpp │ │ │ ├── parser_utils.hpp │ │ │ ├── property_expression.hpp │ │ │ ├── query_builder.hpp │ │ │ ├── subquery_expression.hpp │ │ │ └── value_expression.hpp │ │ │ ├── query.hpp │ │ │ ├── query_conditions.hpp │ │ │ ├── query_engine.hpp │ │ │ ├── query_expression.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── sort_descriptor.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── sync │ │ │ ├── changeset.hpp │ │ │ ├── changeset_cooker.hpp │ │ │ ├── changeset_encoder.hpp │ │ │ ├── changeset_parser.hpp │ │ │ ├── client.hpp │ │ │ ├── crypto_server.hpp │ │ │ ├── feature_token.hpp │ │ │ ├── fingerprint.hpp │ │ │ ├── history.hpp │ │ │ ├── instruction_applier.hpp │ │ │ ├── instruction_replication.hpp │ │ │ ├── instructions.hpp │ │ │ ├── object.hpp │ │ │ ├── object_id.hpp │ │ │ ├── permissions.hpp │ │ │ ├── protocol.hpp │ │ │ ├── transform.hpp │ │ │ └── version.hpp │ │ │ ├── table.hpp │ │ │ ├── table_ref.hpp │ │ │ ├── table_view.hpp │ │ │ ├── timestamp.hpp │ │ │ ├── unicode.hpp │ │ │ ├── util │ │ │ ├── aes_cryptor.hpp │ │ │ ├── allocation_metrics.hpp │ │ │ ├── allocator.hpp │ │ │ ├── any.hpp │ │ │ ├── assert.hpp │ │ │ ├── backtrace.hpp │ │ │ ├── base64.hpp │ │ │ ├── basic_system_errors.hpp │ │ │ ├── bind_ptr.hpp │ │ │ ├── buffer.hpp │ │ │ ├── buffer_stream.hpp │ │ │ ├── call_with_tuple.hpp │ │ │ ├── cf_ptr.hpp │ │ │ ├── cf_str.hpp │ │ │ ├── circular_buffer.hpp │ │ │ ├── config.h │ │ │ ├── copy_dir_recursive.hpp │ │ │ ├── demangle.hpp │ │ │ ├── duplicating_logger.hpp │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── enum.hpp │ │ │ ├── errno.hpp │ │ │ ├── features.h │ │ │ ├── fifo_helper.hpp │ │ │ ├── file.hpp │ │ │ ├── file_is_regular.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── fixed_size_buffer.hpp │ │ │ ├── flat_map.hpp │ │ │ ├── function_ref.hpp │ │ │ ├── get_file_size.hpp │ │ │ ├── hex_dump.hpp │ │ │ ├── http.hpp │ │ │ ├── inspect.hpp │ │ │ ├── interprocess_condvar.hpp │ │ │ ├── interprocess_mutex.hpp │ │ │ ├── json_parser.hpp │ │ │ ├── load_file.hpp │ │ │ ├── logger.hpp │ │ │ ├── memory_stream.hpp │ │ │ ├── metered │ │ │ │ ├── deque.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── vector.hpp │ │ │ ├── misc_errors.hpp │ │ │ ├── misc_ext_errors.hpp │ │ │ ├── miscellaneous.hpp │ │ │ ├── network.hpp │ │ │ ├── network_ssl.hpp │ │ │ ├── optional.hpp │ │ │ ├── overload.hpp │ │ │ ├── parent_dir.hpp │ │ │ ├── platform_info.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── quote.hpp │ │ │ ├── random.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── safe_int_ops.hpp │ │ │ ├── scope_exit.hpp │ │ │ ├── serializer.hpp │ │ │ ├── sha_crypto.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── signal_blocker.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── string_view.hpp │ │ │ ├── substitute.hpp │ │ │ ├── system_process.hpp │ │ │ ├── terminate.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_exec_guard.hpp │ │ │ ├── time.hpp │ │ │ ├── timestamp_formatter.hpp │ │ │ ├── timestamp_logger.hpp │ │ │ ├── to_string.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8.hpp │ │ │ ├── value_reset_guard.hpp │ │ │ └── websocket.hpp │ │ │ ├── utilities.hpp │ │ │ ├── version.hpp │ │ │ ├── version_id.hpp │ │ │ └── version_numbers.hpp │ │ ├── feature_checks.hpp │ │ ├── impl │ │ ├── apple │ │ │ ├── external_commit_helper.hpp │ │ │ └── keychain_helper.hpp │ │ ├── collection_change_builder.hpp │ │ ├── collection_notifier.hpp │ │ ├── external_commit_helper.hpp │ │ ├── list_notifier.hpp │ │ ├── notification_wrapper.hpp │ │ ├── object_accessor_impl.hpp │ │ ├── object_notifier.hpp │ │ ├── realm_coordinator.hpp │ │ ├── results_notifier.hpp │ │ ├── transact_log_handler.hpp │ │ └── weak_realm_notifier.hpp │ │ ├── index_set.hpp │ │ ├── keypath_helpers.hpp │ │ ├── list.hpp │ │ ├── object.hpp │ │ ├── object_accessor.hpp │ │ ├── object_changeset.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ ├── shared_realm.hpp │ │ ├── sync │ │ ├── async_open_task.hpp │ │ ├── impl │ │ │ ├── apple │ │ │ │ ├── network_reachability_observer.hpp │ │ │ │ └── system_configuration.hpp │ │ │ ├── network_reachability.hpp │ │ │ ├── sync_client.hpp │ │ │ ├── sync_file.hpp │ │ │ ├── sync_metadata.hpp │ │ │ └── work_queue.hpp │ │ ├── partial_sync.hpp │ │ ├── subscription_state.hpp │ │ ├── sync_config.hpp │ │ ├── sync_manager.hpp │ │ ├── sync_session.hpp │ │ └── sync_user.hpp │ │ ├── thread_safe_reference.hpp │ │ └── util │ │ ├── aligned_union.hpp │ │ ├── apple │ │ └── scheduler.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── checked_mutex.hpp │ │ ├── copyable_atomic.hpp │ │ ├── event_loop_dispatcher.hpp │ │ ├── scheduler.hpp │ │ ├── tagged_bool.hpp │ │ └── uuid.hpp ├── RealmSwift │ ├── LICENSE │ ├── README.md │ ├── RealmSwift │ │ ├── Aliases.swift │ │ ├── Combine.swift │ │ ├── Error.swift │ │ ├── LinkingObjects.swift │ │ ├── List.swift │ │ ├── Migration.swift │ │ ├── Object.swift │ │ ├── ObjectSchema.swift │ │ ├── ObjectiveCSupport+Sync.swift │ │ ├── ObjectiveCSupport.swift │ │ ├── Optional.swift │ │ ├── Property.swift │ │ ├── Realm.swift │ │ ├── RealmCollection.swift │ │ ├── RealmConfiguration.swift │ │ ├── Results.swift │ │ ├── Schema.swift │ │ ├── SortDescriptor.swift │ │ ├── SwiftVersion.swift │ │ ├── Sync.swift │ │ ├── ThreadSafeReference.swift │ │ └── Util.swift │ └── build.sh ├── SDWebImage │ ├── LICENSE │ ├── README.md │ ├── SDWebImage │ │ ├── Core │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── NSImage+Compatibility.m │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImage.m │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAnimatedImageView.m │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDiskCache.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoder.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCacheDefine.m │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManager.m │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoder.m │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCoderHelper.m │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageCodersManager.m │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFrame.m │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoder.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageHEICCoder.m │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageIOCoder.m │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoader.m │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageLoadersManager.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDMemoryCache.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageHEICCoderInternal.h │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h ├── Target Support Files │ ├── AppAuth │ │ ├── AppAuth-Info.plist │ │ ├── AppAuth-dummy.m │ │ ├── AppAuth-prefix.pch │ │ ├── AppAuth-umbrella.h │ │ ├── AppAuth.debug.xcconfig │ │ ├── AppAuth.modulemap │ │ └── AppAuth.release.xcconfig │ ├── FBSDKCoreKit │ │ ├── FBSDKCoreKit-Info.plist │ │ ├── FBSDKCoreKit-dummy.m │ │ ├── FBSDKCoreKit-prefix.pch │ │ ├── FBSDKCoreKit-umbrella.h │ │ ├── FBSDKCoreKit.debug.xcconfig │ │ ├── FBSDKCoreKit.modulemap │ │ └── FBSDKCoreKit.release.xcconfig │ ├── FBSDKLoginKit │ │ ├── FBSDKLoginKit-Info.plist │ │ ├── FBSDKLoginKit-dummy.m │ │ ├── FBSDKLoginKit-prefix.pch │ │ ├── FBSDKLoginKit-umbrella.h │ │ ├── FBSDKLoginKit.debug.xcconfig │ │ ├── FBSDKLoginKit.modulemap │ │ └── FBSDKLoginKit.release.xcconfig │ ├── Firebase │ │ ├── Firebase.debug.xcconfig │ │ └── Firebase.release.xcconfig │ ├── FirebaseAnalytics │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ └── FirebaseAnalytics.release.xcconfig │ ├── FirebaseAnalyticsInterop │ │ ├── FirebaseAnalyticsInterop.debug.xcconfig │ │ └── FirebaseAnalyticsInterop.release.xcconfig │ ├── FirebaseAuth │ │ ├── FirebaseAuth-Info.plist │ │ ├── FirebaseAuth-dummy.m │ │ ├── FirebaseAuth-umbrella.h │ │ ├── FirebaseAuth.debug.xcconfig │ │ ├── FirebaseAuth.modulemap │ │ └── FirebaseAuth.release.xcconfig │ ├── FirebaseAuthInterop │ │ ├── FirebaseAuthInterop.debug.xcconfig │ │ └── FirebaseAuthInterop.release.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.debug.xcconfig │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.release.xcconfig │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ ├── FirebaseCoreDiagnosticsInterop │ │ ├── FirebaseCoreDiagnosticsInterop.debug.xcconfig │ │ └── FirebaseCoreDiagnosticsInterop.release.xcconfig │ ├── FirebaseCrashlytics │ │ ├── FirebaseCrashlytics-Info.plist │ │ ├── FirebaseCrashlytics-dummy.m │ │ ├── FirebaseCrashlytics-umbrella.h │ │ ├── FirebaseCrashlytics.debug.xcconfig │ │ ├── FirebaseCrashlytics.modulemap │ │ └── FirebaseCrashlytics.release.xcconfig │ ├── FirebaseDatabase │ │ ├── FirebaseDatabase-Info.plist │ │ ├── FirebaseDatabase-dummy.m │ │ ├── FirebaseDatabase-umbrella.h │ │ ├── FirebaseDatabase.debug.xcconfig │ │ ├── FirebaseDatabase.modulemap │ │ └── FirebaseDatabase.release.xcconfig │ ├── FirebaseInstallations │ │ ├── FirebaseInstallations-Info.plist │ │ ├── FirebaseInstallations-dummy.m │ │ ├── FirebaseInstallations-umbrella.h │ │ ├── FirebaseInstallations.debug.xcconfig │ │ ├── FirebaseInstallations.modulemap │ │ └── FirebaseInstallations.release.xcconfig │ ├── FirebaseStorage │ │ ├── FirebaseStorage-Info.plist │ │ ├── FirebaseStorage-dummy.m │ │ ├── FirebaseStorage-umbrella.h │ │ ├── FirebaseStorage.debug.xcconfig │ │ ├── FirebaseStorage.modulemap │ │ └── FirebaseStorage.release.xcconfig │ ├── GTMAppAuth │ │ ├── GTMAppAuth-Info.plist │ │ ├── GTMAppAuth-dummy.m │ │ ├── GTMAppAuth-prefix.pch │ │ ├── GTMAppAuth-umbrella.h │ │ ├── GTMAppAuth.debug.xcconfig │ │ ├── GTMAppAuth.modulemap │ │ └── GTMAppAuth.release.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-Info.plist │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ └── GTMSessionFetcher.release.xcconfig │ ├── GoogleAppMeasurement │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ └── GoogleAppMeasurement.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport-Info.plist │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport-umbrella.h │ │ ├── GoogleDataTransport.debug.xcconfig │ │ ├── GoogleDataTransport.modulemap │ │ └── GoogleDataTransport.release.xcconfig │ ├── GoogleDataTransportCCTSupport │ │ ├── GoogleDataTransportCCTSupport-Info.plist │ │ ├── GoogleDataTransportCCTSupport-dummy.m │ │ ├── GoogleDataTransportCCTSupport-umbrella.h │ │ ├── GoogleDataTransportCCTSupport.debug.xcconfig │ │ ├── GoogleDataTransportCCTSupport.modulemap │ │ └── GoogleDataTransportCCTSupport.release.xcconfig │ ├── GoogleSignIn │ │ ├── GoogleSignIn.debug.xcconfig │ │ └── GoogleSignIn.release.xcconfig │ ├── GoogleUtilities │ │ ├── GoogleUtilities-Info.plist │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.modulemap │ │ └── GoogleUtilities.release.xcconfig │ ├── InputBarAccessoryView │ │ ├── InputBarAccessoryView-Info.plist │ │ ├── InputBarAccessoryView-dummy.m │ │ ├── InputBarAccessoryView-prefix.pch │ │ ├── InputBarAccessoryView-umbrella.h │ │ ├── InputBarAccessoryView.debug.xcconfig │ │ ├── InputBarAccessoryView.modulemap │ │ └── InputBarAccessoryView.release.xcconfig │ ├── JGProgressHUD │ │ ├── JGProgressHUD-Info.plist │ │ ├── JGProgressHUD-dummy.m │ │ ├── JGProgressHUD-prefix.pch │ │ ├── JGProgressHUD-umbrella.h │ │ ├── JGProgressHUD.debug.xcconfig │ │ ├── JGProgressHUD.modulemap │ │ └── JGProgressHUD.release.xcconfig │ ├── MessageKit │ │ ├── MessageKit-Info.plist │ │ ├── MessageKit-dummy.m │ │ ├── MessageKit-prefix.pch │ │ ├── MessageKit-umbrella.h │ │ ├── MessageKit.debug.xcconfig │ │ ├── MessageKit.modulemap │ │ ├── MessageKit.release.xcconfig │ │ └── ResourceBundle-MessageKitAssets-MessageKit-Info.plist │ ├── Pods-Messenger │ │ ├── Pods-Messenger-Info.plist │ │ ├── Pods-Messenger-acknowledgements.markdown │ │ ├── Pods-Messenger-acknowledgements.plist │ │ ├── Pods-Messenger-dummy.m │ │ ├── Pods-Messenger-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-Messenger-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-Messenger-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-Messenger-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-Messenger-frameworks.sh │ │ ├── Pods-Messenger-resources-Debug-input-files.xcfilelist │ │ ├── Pods-Messenger-resources-Debug-output-files.xcfilelist │ │ ├── Pods-Messenger-resources-Release-input-files.xcfilelist │ │ ├── Pods-Messenger-resources-Release-output-files.xcfilelist │ │ ├── Pods-Messenger-resources.sh │ │ ├── Pods-Messenger-umbrella.h │ │ ├── Pods-Messenger.debug.xcconfig │ │ ├── Pods-Messenger.modulemap │ │ └── Pods-Messenger.release.xcconfig │ ├── PromisesObjC │ │ ├── PromisesObjC-Info.plist │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC-umbrella.h │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.modulemap │ │ └── PromisesObjC.release.xcconfig │ ├── Realm │ │ ├── Realm-Info.plist │ │ ├── Realm-dummy.m │ │ ├── Realm-prefix.pch │ │ ├── Realm.debug.xcconfig │ │ ├── Realm.modulemap │ │ └── Realm.release.xcconfig │ ├── RealmSwift │ │ ├── RealmSwift-Info.plist │ │ ├── RealmSwift-dummy.m │ │ ├── RealmSwift-prefix.pch │ │ ├── RealmSwift-umbrella.h │ │ ├── RealmSwift.debug.xcconfig │ │ ├── RealmSwift.modulemap │ │ └── RealmSwift.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.release.xcconfig │ ├── leveldb-library │ │ ├── leveldb-library-Info.plist │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.debug.xcconfig │ │ ├── leveldb-library.modulemap │ │ └── leveldb-library.release.xcconfig │ └── nanopb │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.modulemap │ │ └── nanopb.release.xcconfig ├── leveldb-library │ ├── LICENSE │ ├── README.md │ ├── db │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── write_batch.cc │ │ └── write_batch_internal.h │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── port │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bloom.cc │ │ ├── cache.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.h │ │ └── windows_logger.h └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/.DS_Store -------------------------------------------------------------------------------- /Messenger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Messenger.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Messenger/Controllers/ChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Controllers/ChatViewController.swift -------------------------------------------------------------------------------- /Messenger/Controllers/ConversationsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Controllers/ConversationsViewController.swift -------------------------------------------------------------------------------- /Messenger/Controllers/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Controllers/Login/LoginViewController.swift -------------------------------------------------------------------------------- /Messenger/Controllers/PhotoViewerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Controllers/PhotoViewerViewController.swift -------------------------------------------------------------------------------- /Messenger/Controllers/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Controllers/ProfileViewController.swift -------------------------------------------------------------------------------- /Messenger/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/GoogleService-Info.plist -------------------------------------------------------------------------------- /Messenger/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Info.plist -------------------------------------------------------------------------------- /Messenger/Models/ChatModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Models/ChatModels.swift -------------------------------------------------------------------------------- /Messenger/Models/ConversationsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Models/ConversationsModels.swift -------------------------------------------------------------------------------- /Messenger/Models/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Models/ProfileViewModel.swift -------------------------------------------------------------------------------- /Messenger/Models/SearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Models/SearchResult.swift -------------------------------------------------------------------------------- /Messenger/Resources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Resources/AppDelegate.swift -------------------------------------------------------------------------------- /Messenger/Resources/DatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Resources/DatabaseManager.swift -------------------------------------------------------------------------------- /Messenger/Resources/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Resources/Extensions.swift -------------------------------------------------------------------------------- /Messenger/Resources/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Resources/SceneDelegate.swift -------------------------------------------------------------------------------- /Messenger/Resources/StorageManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Resources/StorageManager.swift -------------------------------------------------------------------------------- /Messenger/Views/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Views/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Messenger/Views/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Views/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /Messenger/Views/ConversationTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Views/ConversationTableViewCell.swift -------------------------------------------------------------------------------- /Messenger/Views/NewConversationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Views/NewConversationCell.swift -------------------------------------------------------------------------------- /Messenger/Views/Storyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Messenger/Views/Storyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/AppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/README.md -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuth.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuth/iOS/OIDAuthState+IOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuth/iOS/OIDAuthState+IOS.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuth/iOS/OIDAuthState+IOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuth/iOS/OIDAuthState+IOS.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDAuthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDAuthState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDAuthState.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDEndSessionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDEndSessionRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDEndSessionRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDEndSessionRequest.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDError.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDErrorUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDErrorUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDErrorUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDErrorUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDExternalUserAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDExternalUserAgent.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDIDToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDIDToken.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDResponseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDResponseTypes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDResponseTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDResponseTypes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopeUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopeUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopeUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopeUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDServiceDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDServiceDiscovery.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDServiceDiscovery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDServiceDiscovery.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenResponse.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenResponse.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDURLQueryComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDURLQueryComponent.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDURLQueryComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDURLQueryComponent.m -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.h -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKURL.m -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKCoreKit/LICENSE -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKCoreKit/README.md -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKLoginKit/LICENSE -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FBSDKLoginKit/README.md -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAnalyticsInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAnalyticsInterop/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseAnalyticsInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAnalyticsInterop/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/FirebaseAuth/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/FirebaseAuth/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/Sources/Auth/FIRAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/FirebaseAuth/Sources/Auth/FIRAuth.m -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/Sources/User/FIRUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/FirebaseAuth/Sources/User/FIRUser.m -------------------------------------------------------------------------------- /Pods/FirebaseAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuth/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAuthInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuthInterop/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseAuthInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseAuthInterop/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRErrors.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FIRApp.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnosticsInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCoreDiagnosticsInterop/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnosticsInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCoreDiagnosticsInterop/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/Crashlytics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCrashlytics/Crashlytics/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/Crashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCrashlytics/Crashlytics/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCrashlytics/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCrashlytics/run -------------------------------------------------------------------------------- /Pods/FirebaseCrashlytics/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseCrashlytics/upload-symbols -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/Core/FRepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/Core/FRepo.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/Core/FRepo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/Core/FRepo.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FClock.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FClock.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FIndex.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FIndex.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FKeyIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FKeyIndex.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FKeyIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FKeyIndex.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FMaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FMaxNode.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FMaxNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FMaxNode.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FNamedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FNamedNode.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FNamedNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FNamedNode.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FPathIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FPathIndex.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FPathIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FPathIndex.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FValueIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FValueIndex.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Firebase/Database/FValueIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/Firebase/Database/FValueIndex.m -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseDatabase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /Pods/FirebaseStorage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseStorage/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseStorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/FirebaseStorage/README.md -------------------------------------------------------------------------------- /Pods/GTMAppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMAppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/GTMAppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMAppAuth/README.md -------------------------------------------------------------------------------- /Pods/GTMAppAuth/Source/GTMAppAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMAppAuth/Source/GTMAppAuth.h -------------------------------------------------------------------------------- /Pods/GTMAppAuth/Source/GTMKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMAppAuth/Source/GTMKeychain.h -------------------------------------------------------------------------------- /Pods/GTMAppAuth/Source/iOS/GTMKeychain_iOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMAppAuth/Source/iOS/GTMKeychain_iOS.m -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMGatherInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.h -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMGatherInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMGatherInputStream.m -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMMIMEDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.h -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMMIMEDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMMIMEDocument.m -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.h -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GTMSessionFetcher/Source/GTMSessionFetcher.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /Pods/GoogleDataTransportCCTSupport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleDataTransportCCTSupport/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleDataTransportCCTSupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleDataTransportCCTSupport/README.md -------------------------------------------------------------------------------- /Pods/GoogleSignIn/.cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleSignIn/.cocoapods.yml -------------------------------------------------------------------------------- /Pods/GoogleSignIn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleSignIn/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/GoogleSignIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleSignIn/README.md -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleUtilities/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRAnalyticsInteropListener.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInteropListener.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropEventNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropEventNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropParameterNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropParameterNames.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRAnalyticsInteropListener.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInteropListener.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropEventNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropEventNames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropParameterNames.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropParameterNames.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/InputBarAccessoryView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/InputBarAccessoryView/LICENSE -------------------------------------------------------------------------------- /Pods/InputBarAccessoryView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/InputBarAccessoryView/README.md -------------------------------------------------------------------------------- /Pods/JGProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/JGProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /Pods/JGProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/JGProgressHUD/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/MessageKit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/LICENSE.md -------------------------------------------------------------------------------- /Pods/MessageKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/README.md -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/AccessoryPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/AccessoryPosition.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/Avatar.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/AvatarPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/AvatarPosition.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/DetectorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/DetectorType.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/LabelAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/LabelAlignment.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/MessageKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/MessageKind.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/MessageKitError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/MessageKitError.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/MessageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/MessageStyle.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Models/Sender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Models/Sender.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/AudioItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/AudioItem.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/ContactItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/ContactItem.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/LocationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/LocationItem.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/MediaItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/MediaItem.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/MessageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/MessageType.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Protocols/SenderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Protocols/SenderType.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/AvatarView.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/BubbleCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/BubbleCircle.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/InsetLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/InsetLabel.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/MessageLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/MessageLabel.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/PlayButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/PlayButtonView.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/TypingBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/TypingBubble.swift -------------------------------------------------------------------------------- /Pods/MessageKit/Sources/Views/TypingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/MessageKit/Sources/Views/TypingIndicator.swift -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/index_set.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_changeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/object_changeset.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/object_schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/object_store.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/results.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/util/scheduler.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMThreadSafeReference_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/audit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/audit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/collection_notifications.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_backlink.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_blobs_small.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_direct.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_key.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string_short.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_string_short.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_unsigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/array_unsigned.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bplustree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/bplustree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/chunked_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/chunked_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/cluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/cluster.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/cluster_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/cluster_tree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/column_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/column_type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/db.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/db.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/db_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/db_options.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/disable_sync_to_disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/global_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/global_key.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/array_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/array_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/clock.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/destroy_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/destroy_guard.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/input_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/input_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/output_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/output_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/transact_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/impl/transact_log.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/keys.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metric_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/metrics/metric_timer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/metrics/metrics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/query_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/metrics/query_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/node.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/node_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/node_header.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/obj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/obj.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/obj_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/obj_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/parser/parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/parser/parser_utils.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/query_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/parser/query_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/query_conditions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/query_expression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sort_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sort_descriptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/changeset.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/crypto_server.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/feature_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/feature_token.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/fingerprint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/fingerprint.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/instructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/instructions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/object_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/permissions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/protocol.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/transform.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/sync/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/aes_cryptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/aes_cryptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/allocator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/backtrace.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/base64.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/buffer_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/call_with_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/call_with_tuple.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/cf_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/cf_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/cf_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/cf_str.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/circular_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/demangle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/errno.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/fifo_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/fifo_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file_is_regular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/file_is_regular.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/file_mapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/flat_map.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/function_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/function_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/get_file_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/get_file_size.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/json_parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/load_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/load_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/memory_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/memory_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/metered/deque.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/metered/map.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/metered/set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/metered/string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/metered/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/metered/vector.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/misc_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_ext_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/misc_ext_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/miscellaneous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/miscellaneous.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/network_ssl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/overload.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/parent_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/parent_dir.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/platform_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/platform_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/priority_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/quote.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/random.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/resource_limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/resource_limits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/safe_int_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/safe_int_ops.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/scope_exit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/serializer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/sha_crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/sha_crypto.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/signal_blocker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/signal_blocker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/string_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/string_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/string_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/substitute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/substitute.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/system_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/system_process.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/util/websocket.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/version_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_numbers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/core/realm/version_numbers.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_change_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/collection_change_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/results_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/keypath_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/keypath_helpers.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/object_changeset.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/async_open_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/async_open_task.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/network_reachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/impl/network_reachability.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/work_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/impl/work_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/subscription_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/subscription_state.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/thread_safe_reference.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/apple/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/apple/scheduler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/checked_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/checked_mutex.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/copyable_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/copyable_atomic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/event_loop_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/event_loop_dispatcher.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/scheduler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Pods/RealmSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/LICENSE -------------------------------------------------------------------------------- /Pods/RealmSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/README.md -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Combine.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Error.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/LinkingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/LinkingObjects.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/List.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Object.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Property.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/RealmCollection.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/RealmConfiguration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Results.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SwiftVersion.swift: -------------------------------------------------------------------------------- 1 | let swiftLanguageVersion = "5.4.2" 2 | -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Sync.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/RealmSwift/Util.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/RealmSwift/build.sh -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/AppAuth/AppAuth-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/AppAuth/AppAuth-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/AppAuth/AppAuth-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/AppAuth/AppAuth-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/AppAuth/AppAuth.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/Realm/Realm.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /Pods/leveldb-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/LICENSE -------------------------------------------------------------------------------- /Pods/leveldb-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/README.md -------------------------------------------------------------------------------- /Pods/leveldb-library/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/builder.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/c.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/db_impl.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/db_impl.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/db_iter.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/db_iter.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/dbformat.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/dbformat.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/dumpfile.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/filename.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/filename.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/log_format.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/log_reader.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/log_reader.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/log_writer.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/log_writer.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/memtable.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/memtable.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/repair.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/skiplist.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/snapshot.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/table_cache.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/table_cache.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/version_edit.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/version_edit.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/version_set.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/version_set.h -------------------------------------------------------------------------------- /Pods/leveldb-library/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/write_batch.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/db/write_batch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/db/write_batch_internal.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/c.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/cache.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/comparator.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/db.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/dumpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/dumpfile.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/env.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/export.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/filter_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/filter_policy.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/iterator.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/options.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/slice.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/status.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/table.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/table_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/table_builder.h -------------------------------------------------------------------------------- /Pods/leveldb-library/include/leveldb/write_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/include/leveldb/write_batch.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/port/port.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/port/port_example.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port_stdcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/port/port_stdcxx.h -------------------------------------------------------------------------------- /Pods/leveldb-library/port/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/port/thread_annotations.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/block.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/block.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/block_builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/block_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/block_builder.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/filter_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/filter_block.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/filter_block.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/format.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/format.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/iterator.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/iterator_wrapper.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/merger.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/merger.h -------------------------------------------------------------------------------- /Pods/leveldb-library/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/table.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/table_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/table_builder.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/two_level_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/two_level_iterator.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/table/two_level_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/table/two_level_iterator.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/arena.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/arena.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/bloom.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/cache.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/coding.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/coding.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/comparator.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/crc32c.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/crc32c.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/env.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/env_posix.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env_posix_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/env_posix_test_helper.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env_windows_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/env_windows_test_helper.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/filter_policy.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/hash.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/hash.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/histogram.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/histogram.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/logging.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/logging.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/mutexlock.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/no_destructor.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/options.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/posix_logger.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/random.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/status.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/testharness.cc -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/testharness.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/testutil.h -------------------------------------------------------------------------------- /Pods/leveldb-library/util/windows_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/leveldb-library/util/windows_logger.h -------------------------------------------------------------------------------- /Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/SwiftChatApp/HEAD/README.md --------------------------------------------------------------------------------