├── EpubReader.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── macbook.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── mac.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── macbook.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── EpubReader.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── mac.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── macbook.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── EpubReader ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon-60@2x.png │ │ ├── AppIcon-60@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── facebook_icon.imageset │ │ ├── Contents.json │ │ ├── facebook_icon.png │ │ ├── facebook_icon@2x.png │ │ └── facebook_icon@3x.png │ └── google_icon.imageset │ │ ├── Contents.json │ │ ├── google_icon.png │ │ ├── google_icon@2x.png │ │ └── google_icon@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Base │ ├── Banner.swift │ ├── BaseViewController.swift │ └── FileDownloadInfo.swift ├── Common │ ├── ApiError.swift │ ├── ApiRouter.swift │ └── Constants.swift ├── Data │ ├── Network │ │ ├── ApiWebService.swift │ │ └── NetworkManager.swift │ └── Realm │ │ └── RlmDownloadedAudioPath.swift ├── DataFiles │ ├── about_us.html │ └── disable_ads.html ├── Domain │ └── Entities │ │ ├── Audio.swift │ │ ├── AudioPlayer.swift │ │ ├── Book.swift │ │ ├── Epub.swift │ │ ├── Message.swift │ │ ├── ReadingBook.swift │ │ └── User.swift ├── Extensions │ ├── IntExtensions.swift │ ├── StringExtensions.swift │ ├── UIApplicationExtension.swift │ ├── UIButtonExtension.swift │ ├── UIColorExtensions.swift │ ├── UIDeviceExtensions.swift │ ├── UIFont.swift │ ├── UIImage.swift │ ├── UIImageExtension.swift │ ├── UILabelExtensions.swift │ ├── UIScreenExtensions.swift │ ├── UITextFieldExtensions.swift │ └── UIViewExtensions.swift ├── Graphics │ ├── Example │ │ └── ebook_example.jpeg │ ├── Full Audio Player │ │ ├── audio_play.png │ │ ├── audio_scrubber_dot.png │ │ ├── backward_new_icon.png │ │ ├── close_button.png │ │ ├── fastforward_15_seconds.png │ │ ├── forward_new_icon.png │ │ ├── play_filled.png │ │ ├── rewind_15_seconds.png │ │ ├── sound_decrease.png │ │ ├── sound_increase.png │ │ ├── video_pause.png │ │ └── video_play.png │ ├── Icon │ │ ├── cross_icon.png │ │ ├── download-icon.png │ │ ├── download.png │ │ ├── download_remove.png │ │ ├── fi_download.png │ │ ├── fi_heart.png │ │ ├── fi_heart_fill.png │ │ ├── headphones.png │ │ ├── ic_book.png │ │ ├── ic_chapters.png │ │ ├── ic_more.png │ │ ├── ic_next.png │ │ ├── ic_pages.png │ │ ├── ic_profile.png │ │ ├── ic_rating.png │ │ ├── ic_view.png │ │ ├── no_wifi_icon.png │ │ ├── template_stop_download.png │ │ ├── template_stop_square.png │ │ ├── tick_icon.png │ │ └── trash.png │ ├── Navigation Bar Icons │ │ ├── chevron_down.png │ │ ├── demo-bg.jpeg │ │ ├── ic_menu.png │ │ └── notification.png │ └── Tab Bar Icons │ │ ├── audio_download_icon.png │ │ ├── book_download_icon.png │ │ ├── clock_icon.png │ │ ├── disable_ads_icon.png │ │ ├── favorite_icon.png │ │ ├── home_icon.png │ │ ├── profile_icon.png │ │ ├── rating_icon.png │ │ ├── reading_icon.png │ │ ├── search_icon.png │ │ ├── us_icon.png │ │ └── video_icon.png ├── Helper │ ├── BannerHelper.swift │ ├── DatabaseHelper.swift │ ├── EpubReaderHelper.swift │ ├── FileHelper.swift │ ├── ItemDownloadHelper.swift │ ├── MusicPlayerHelper.swift │ └── PersistenceHelper.swift ├── Info.plist ├── Presentation │ ├── CollectionViewCells │ │ ├── AudioResourceCell.swift │ │ ├── BookCell.swift │ │ ├── BookTableViewCell.swift │ │ └── MenuTableViewCell.swift │ ├── Main │ │ ├── AboutViewController.swift │ │ ├── AudioDownloadsViewController.swift │ │ ├── BookDownloadsViewController.swift │ │ ├── DisableAdsViewController.swift │ │ ├── ProfileViewController.swift │ │ └── SideMenuViewController.swift │ ├── SubNavViewController │ │ ├── CultureHistoryViewController.swift │ │ ├── EconomicsViewController.swift │ │ ├── HealthViewController.swift │ │ ├── LiteraryViewController.swift │ │ ├── ScienceTechnologyViewController.swift │ │ └── SkillsViewController.swift │ ├── TabBarViewController │ │ ├── FavoritesViewController.swift │ │ ├── HomeViewController.swift │ │ ├── MainTabBarViewController.swift │ │ ├── ReadingListViewController.swift │ │ └── SearchViewController.swift │ ├── ViewController │ │ ├── AudioViewController.swift │ │ ├── BookDetailViewController.swift │ │ ├── FullScreenAudioPlayerViewController.swift │ │ ├── PlayerViewController.swift │ │ ├── SignInViewController.swift │ │ └── SplashViewController.swift │ ├── ViewModel │ │ ├── AudioViewModel.swift │ │ ├── BookViewModel.swift │ │ └── UserViewModel.swift │ └── Views │ │ ├── BookDetailView.swift │ │ ├── MIniAudioPlayerView.swift │ │ ├── MenuBookView.swift │ │ ├── ProgressBarView.swift │ │ ├── ScrollUISegmentController.swift │ │ └── SegmentedControl.swift ├── Protocol │ └── BaseGestureRecognizerProtocol.swift └── Utilities │ ├── AppAppearanceDesigner.swift │ ├── BuildApp.swift │ ├── LocalNetworkPrivacy.swift │ ├── PermissionManager.swift │ ├── Reachability.swift │ ├── UserDefs.swift │ ├── Utilities.swift │ └── Utils.swift ├── EpubReaderTests └── EpubReaderTests.swift ├── EpubReaderUITests ├── EpubReaderUITests.swift └── EpubReaderUITestsLaunchTests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── AEXML │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── AEXML │ │ ├── Document.swift │ │ ├── Element.swift │ │ ├── Error.swift │ │ ├── Options.swift │ │ └── Parser.swift ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── AuthenticationInterceptor.swift │ │ ├── CachedResponseHandler.swift │ │ ├── Combine.swift │ │ ├── Concurrency.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestCompression.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift ├── 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 ├── Connectivity │ ├── Connectivity │ │ └── Classes │ │ │ ├── Combine │ │ │ ├── ConnectivityPublisher.swift │ │ │ └── ConnectivitySubscription.swift │ │ │ ├── Connectivity.swift │ │ │ ├── Extensions │ │ │ ├── NotificationNameAdditions.swift │ │ │ └── PublishersAdditions.swift │ │ │ ├── Model │ │ │ ├── ConnectivityConfiguration.swift │ │ │ ├── ConnectivityFramework.swift │ │ │ ├── ConnectivityInterface.swift │ │ │ ├── ConnectivityPercentage.swift │ │ │ └── ConnectivityStatus.swift │ │ │ ├── Reachability │ │ │ ├── Reachability.h │ │ │ └── Reachability.m │ │ │ └── Response Validation │ │ │ ├── ConnectivityResponseValidationMode.swift │ │ │ ├── ConnectivityResponseValidator.swift │ │ │ ├── Factory │ │ │ ├── Factory.swift │ │ │ └── ResponseValidatorFactory.swift │ │ │ └── Validators │ │ │ ├── ConnectivityResponseContainsStringValidator.swift │ │ │ ├── ConnectivityResponseRegExValidator.swift │ │ │ ├── ConnectivityResponseStringEqualityValidator.swift │ │ │ └── ConnectivityResponseStringValidator.swift │ ├── LICENSE │ └── README.md ├── FBAEMKit │ └── XCFrameworks │ │ └── FBAEMKit.xcframework │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── ios-arm64 │ │ ├── FBAEMKit.framework │ │ │ ├── FBAEMKit │ │ │ ├── Headers │ │ │ │ └── FBAEMKit-Swift.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBAEMKit.swiftmodule │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBAEMKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBAEMKit │ │ ├── ios-arm64_x86_64-maccatalyst │ │ ├── FBAEMKit.framework │ │ │ ├── FBAEMKit │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FBAEMKit │ │ │ │ ├── Headers │ │ │ │ │ └── FBAEMKit-Swift.h │ │ │ │ ├── Modules │ │ │ │ │ ├── FBAEMKit.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ └── dSYMs │ │ │ └── FBAEMKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBAEMKit │ │ ├── ios-arm64_x86_64-simulator │ │ ├── FBAEMKit.framework │ │ │ ├── FBAEMKit │ │ │ ├── Headers │ │ │ │ └── FBAEMKit-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── FBAEMKit.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ └── module.modulemap │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── dSYMs │ │ │ └── FBAEMKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBAEMKit │ │ ├── tvos-arm64 │ │ ├── FBAEMKit.framework │ │ │ ├── FBAEMKit │ │ │ ├── Headers │ │ │ │ └── FBAEMKit-Swift.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBAEMKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos.swiftdoc │ │ │ │ └── arm64-apple-tvos.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBAEMKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBAEMKit │ │ └── tvos-arm64_x86_64-simulator │ │ ├── FBAEMKit.framework │ │ ├── FBAEMKit │ │ ├── Headers │ │ │ └── FBAEMKit-Swift.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── FBAEMKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-tvos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-tvos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-tvos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── dSYMs │ │ └── FBAEMKit.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── FBAEMKit ├── FBSDKCoreKit │ └── XCFrameworks │ │ └── FBSDKCoreKit.xcframework │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── ios-arm64 │ │ ├── FBSDKCoreKit.framework │ │ │ ├── FBSDKCoreKit │ │ │ ├── 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 │ │ │ ├── Headers │ │ │ │ ├── FBSDKATEPublisherCreating.h │ │ │ │ ├── FBSDKATEPublisherFactory.h │ │ │ │ ├── FBSDKAccessToken.h │ │ │ │ ├── FBSDKAccessTokenProviding.h │ │ │ │ ├── FBSDKAdvertiserIDProviding.h │ │ │ │ ├── FBSDKAdvertisingTrackingStatus.h │ │ │ │ ├── FBSDKAppAvailabilityChecker.h │ │ │ │ ├── FBSDKAppEventDropDetermining.h │ │ │ │ ├── FBSDKAppEventName.h │ │ │ │ ├── FBSDKAppEventParameterName.h │ │ │ │ ├── FBSDKAppEventParameterProduct.h │ │ │ │ ├── FBSDKAppEventParameterValue.h │ │ │ │ ├── FBSDKAppEventParametersExtracting.h │ │ │ │ ├── FBSDKAppEventUserDataType.h │ │ │ │ ├── FBSDKAppEvents.h │ │ │ │ ├── FBSDKAppEventsConfiguration.h │ │ │ │ ├── FBSDKAppEventsConfigurationManager.h │ │ │ │ ├── FBSDKAppEventsConfigurationProtocol.h │ │ │ │ ├── FBSDKAppEventsConfigurationProviding.h │ │ │ │ ├── FBSDKAppEventsConfiguring.h │ │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ │ ├── FBSDKAppEventsFlushBehavior.h │ │ │ │ ├── FBSDKAppEventsFlushReason.h │ │ │ │ ├── FBSDKAppEventsNotificationName.h │ │ │ │ ├── FBSDKAppEventsParameterProcessing.h │ │ │ │ ├── FBSDKAppEventsReporter.h │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ ├── FBSDKAppEventsStatePersisting.h │ │ │ │ ├── FBSDKAppEventsStateProviding.h │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ ├── FBSDKAppEventsUtilityProtocol.h │ │ │ │ ├── FBSDKAppLinkCreating.h │ │ │ │ ├── FBSDKAppLinkEventPosting.h │ │ │ │ ├── FBSDKAppLinkNavigationBlock.h │ │ │ │ ├── FBSDKAppLinkNavigationType.h │ │ │ │ ├── FBSDKAppLinkProtocol.h │ │ │ │ ├── FBSDKAppLinkResolverRequestBuilding.h │ │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ │ ├── FBSDKAppLinkTargetCreating.h │ │ │ │ ├── FBSDKAppLinkTargetProtocol.h │ │ │ │ ├── FBSDKAppLinkURL.h │ │ │ │ ├── FBSDKAppLinkURLCreating.h │ │ │ │ ├── FBSDKAppLinkURLKeys.h │ │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ │ ├── FBSDKAppLinkVersion.h │ │ │ │ ├── FBSDKAppLinksBlock.h │ │ │ │ ├── FBSDKAppStoreReceiptProviding.h │ │ │ │ ├── FBSDKAppURLSchemeProviding.h │ │ │ │ ├── FBSDKApplicationActivating.h │ │ │ │ ├── FBSDKApplicationLifecycleNotifications.h │ │ │ │ ├── FBSDKApplicationLifecycleObserving.h │ │ │ │ ├── FBSDKApplicationObserving.h │ │ │ │ ├── FBSDKApplicationStateSetting.h │ │ │ │ ├── FBSDKAuthenticationStatusUtility.h │ │ │ │ ├── FBSDKAuthenticationToken.h │ │ │ │ ├── FBSDKAuthenticationTokenProviding.h │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ ├── FBSDKBridgeAPIRequestCreating.h │ │ │ │ ├── FBSDKBridgeAPIRequestOpening.h │ │ │ │ ├── FBSDKBridgeAPIRequestProtocol.h │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ ├── FBSDKButton.h │ │ │ │ ├── FBSDKButtonImpressionLogging.h │ │ │ │ ├── FBSDKClientTokenProviding.h │ │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ │ ├── FBSDKCodelessIndexing.h │ │ │ │ ├── FBSDKConstants.h │ │ │ │ ├── FBSDKContainerViewController.h │ │ │ │ ├── FBSDKConversionValueUpdating.h │ │ │ │ ├── FBSDKCoreKit-Swift.h │ │ │ │ ├── FBSDKCoreKit.h │ │ │ │ ├── FBSDKCoreKitVersions.h │ │ │ │ ├── FBSDKCrashObserver.h │ │ │ │ ├── FBSDKCrashShield.h │ │ │ │ ├── FBSDKDataProcessingOptionKey.h │ │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ │ ├── FBSDKDeviceInformationProviding.h │ │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ ├── FBSDKDialogConfigurationMapBuilding.h │ │ │ │ ├── FBSDKDynamicFrameworkLoaderProxy.h │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ ├── FBSDKErrorConfigurationProtocol.h │ │ │ │ ├── FBSDKErrorConfigurationProvider.h │ │ │ │ ├── FBSDKErrorConfigurationProviding.h │ │ │ │ ├── FBSDKErrorCreating.h │ │ │ │ ├── FBSDKErrorRecoveryAttempting.h │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ ├── FBSDKErrorReporter.h │ │ │ │ ├── FBSDKErrorReporting.h │ │ │ │ ├── FBSDKEventLogging.h │ │ │ │ ├── FBSDKEventProcessing.h │ │ │ │ ├── FBSDKEventsProcessing.h │ │ │ │ ├── FBSDKFeature.h │ │ │ │ ├── FBSDKFeatureChecking.h │ │ │ │ ├── FBSDKFeatureDisabling.h │ │ │ │ ├── FBSDKFeatureExtracting.h │ │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ │ ├── FBSDKGateKeeperManaging.h │ │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ │ ├── FBSDKGraphRequest.h │ │ │ │ ├── FBSDKGraphRequestConnecting.h │ │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ │ ├── FBSDKGraphRequestConnectionDelegate.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactory.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ │ ├── FBSDKGraphRequestFactory.h │ │ │ │ ├── FBSDKGraphRequestFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestFlags.h │ │ │ │ ├── FBSDKGraphRequestHTTPMethod.h │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ ├── FBSDKGraphRequestPiggybackManaging.h │ │ │ │ ├── FBSDKGraphRequestProtocol.h │ │ │ │ ├── FBSDKImpressionLoggerFactory.h │ │ │ │ ├── FBSDKImpressionLoggerFactoryProtocol.h │ │ │ │ ├── FBSDKImpressionLogging.h │ │ │ │ ├── FBSDKImpressionLoggingButton.h │ │ │ │ ├── FBSDKInstrumentManager.h │ │ │ │ ├── FBSDKIntegrityParametersProcessorProvider.h │ │ │ │ ├── FBSDKIntegrityProcessing.h │ │ │ │ ├── FBSDKInternalURLOpener.h │ │ │ │ ├── FBSDKInternalUtility.h │ │ │ │ ├── FBSDKInternalUtilityProtocol.h │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ ├── FBSDKKeychainStoreProtocol.h │ │ │ │ ├── FBSDKKeychainStoreProviding.h │ │ │ │ ├── FBSDKLocation.h │ │ │ │ ├── FBSDKLogger.h │ │ │ │ ├── FBSDKLoggerFactory.h │ │ │ │ ├── FBSDKLogging.h │ │ │ │ ├── FBSDKLoggingBehavior.h │ │ │ │ ├── FBSDKLoggingNotifying.h │ │ │ │ ├── FBSDKLoginTooltip.h │ │ │ │ ├── FBSDKMacCatalystDetermining.h │ │ │ │ ├── FBSDKMath.h │ │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ │ ├── FBSDKMeasurementEventNames.h │ │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ │ ├── FBSDKMetadataIndexing.h │ │ │ │ ├── FBSDKModelManager.h │ │ │ │ ├── FBSDKMutableCopying.h │ │ │ │ ├── FBSDKNetworkErrorChecker.h │ │ │ │ ├── FBSDKNetworkErrorChecking.h │ │ │ │ ├── FBSDKObjectDecoding.h │ │ │ │ ├── FBSDKOperatingSystemVersionComparing.h │ │ │ │ ├── FBSDKPasteboard.h │ │ │ │ ├── FBSDKPaymentObserving.h │ │ │ │ ├── FBSDKPaymentProductRequestor.h │ │ │ │ ├── FBSDKPaymentProductRequestorCreating.h │ │ │ │ ├── FBSDKProductAvailability.h │ │ │ │ ├── FBSDKProductCondition.h │ │ │ │ ├── FBSDKProductRequestFactory.h │ │ │ │ ├── FBSDKProductsRequestProtocols.h │ │ │ │ ├── FBSDKProfileBlock.h │ │ │ │ ├── FBSDKProfileNotifications.h │ │ │ │ ├── FBSDKRandom.h │ │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ │ ├── FBSDKRulesFromKeyProvider.h │ │ │ │ ├── FBSDKSKAdNetworkReporter.h │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ │ ├── FBSDKServerConfigurationProviding.h │ │ │ │ ├── FBSDKSettingsLogging.h │ │ │ │ ├── FBSDKSourceApplicationTracking.h │ │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ │ ├── FBSDKSuggestedEventsIndexerProtocol.h │ │ │ │ ├── FBSDKSwizzler.h │ │ │ │ ├── FBSDKSwizzling.h │ │ │ │ ├── FBSDKTimeSpentData.h │ │ │ │ ├── FBSDKTimeSpentRecording.h │ │ │ │ ├── FBSDKTokenCaching.h │ │ │ │ ├── FBSDKTokenStringProviding.h │ │ │ │ ├── FBSDKTransformer.h │ │ │ │ ├── FBSDKURL.h │ │ │ │ ├── FBSDKURLHosting.h │ │ │ │ ├── FBSDKURLOpener.h │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ ├── FBSDKURLScheme.h │ │ │ │ ├── FBSDKURLSessionProxyFactory.h │ │ │ │ ├── FBSDKURLSessionProxyProviding.h │ │ │ │ ├── FBSDKURLSessionProxying.h │ │ │ │ ├── FBSDKUnarchiverProvider.h │ │ │ │ ├── FBSDKUnarchiverProviding.h │ │ │ │ ├── FBSDKUserAgeRange.h │ │ │ │ ├── FBSDKUserDataPersisting.h │ │ │ │ ├── FBSDKUserDataStore.h │ │ │ │ ├── FBSDKUserIDProviding.h │ │ │ │ ├── FBSDKUserIdentifier.h │ │ │ │ ├── FBSDKUtility.h │ │ │ │ ├── FBSDKWebDialogDelegate.h │ │ │ │ ├── FBSDKWebDialogView.h │ │ │ │ ├── FBSDKWebView.h │ │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ │ ├── FBSDKWebViewProviding.h │ │ │ │ ├── NSNotificationCenter+NotificationPosting.h │ │ │ │ ├── NSProcessInfo+MacCatalystDetermining.h │ │ │ │ ├── NSProcessInfo+OperatingSystemVersionComparing.h │ │ │ │ ├── UIApplication+URLOpener.h │ │ │ │ ├── UIPasteboard+Pasteboard.h │ │ │ │ ├── WKWebView+WebViewProtocol.h │ │ │ │ ├── _FBSDKNotificationPosting.h │ │ │ │ ├── _FBSDKWindowFinding.h │ │ │ │ └── __FBSDKLoggerCreating.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBSDKCoreKit.swiftmodule │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKCoreKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit │ │ ├── ios-arm64_x86_64-maccatalyst │ │ ├── FBSDKCoreKit.framework │ │ │ ├── FBSDKCoreKit │ │ │ ├── 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 │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FBSDKCoreKit │ │ │ │ ├── Headers │ │ │ │ │ ├── FBSDKATEPublisherCreating.h │ │ │ │ │ ├── FBSDKATEPublisherFactory.h │ │ │ │ │ ├── FBSDKAccessToken.h │ │ │ │ │ ├── FBSDKAccessTokenProviding.h │ │ │ │ │ ├── FBSDKAdvertiserIDProviding.h │ │ │ │ │ ├── FBSDKAdvertisingTrackingStatus.h │ │ │ │ │ ├── FBSDKAppAvailabilityChecker.h │ │ │ │ │ ├── FBSDKAppEventDropDetermining.h │ │ │ │ │ ├── FBSDKAppEventName.h │ │ │ │ │ ├── FBSDKAppEventParameterName.h │ │ │ │ │ ├── FBSDKAppEventParameterProduct.h │ │ │ │ │ ├── FBSDKAppEventParameterValue.h │ │ │ │ │ ├── FBSDKAppEventParametersExtracting.h │ │ │ │ │ ├── FBSDKAppEventUserDataType.h │ │ │ │ │ ├── FBSDKAppEvents.h │ │ │ │ │ ├── FBSDKAppEventsConfiguration.h │ │ │ │ │ ├── FBSDKAppEventsConfigurationManager.h │ │ │ │ │ ├── FBSDKAppEventsConfigurationProtocol.h │ │ │ │ │ ├── FBSDKAppEventsConfigurationProviding.h │ │ │ │ │ ├── FBSDKAppEventsConfiguring.h │ │ │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ │ │ ├── FBSDKAppEventsFlushBehavior.h │ │ │ │ │ ├── FBSDKAppEventsFlushReason.h │ │ │ │ │ ├── FBSDKAppEventsNotificationName.h │ │ │ │ │ ├── FBSDKAppEventsParameterProcessing.h │ │ │ │ │ ├── FBSDKAppEventsReporter.h │ │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ │ ├── FBSDKAppEventsStatePersisting.h │ │ │ │ │ ├── FBSDKAppEventsStateProviding.h │ │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ │ ├── FBSDKAppEventsUtilityProtocol.h │ │ │ │ │ ├── FBSDKAppLinkCreating.h │ │ │ │ │ ├── FBSDKAppLinkEventPosting.h │ │ │ │ │ ├── FBSDKAppLinkNavigationBlock.h │ │ │ │ │ ├── FBSDKAppLinkNavigationType.h │ │ │ │ │ ├── FBSDKAppLinkProtocol.h │ │ │ │ │ ├── FBSDKAppLinkResolverRequestBuilding.h │ │ │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ │ │ ├── FBSDKAppLinkTargetCreating.h │ │ │ │ │ ├── FBSDKAppLinkTargetProtocol.h │ │ │ │ │ ├── FBSDKAppLinkURL.h │ │ │ │ │ ├── FBSDKAppLinkURLCreating.h │ │ │ │ │ ├── FBSDKAppLinkURLKeys.h │ │ │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ │ │ ├── FBSDKAppLinkVersion.h │ │ │ │ │ ├── FBSDKAppLinksBlock.h │ │ │ │ │ ├── FBSDKAppStoreReceiptProviding.h │ │ │ │ │ ├── FBSDKAppURLSchemeProviding.h │ │ │ │ │ ├── FBSDKApplicationActivating.h │ │ │ │ │ ├── FBSDKApplicationLifecycleNotifications.h │ │ │ │ │ ├── FBSDKApplicationLifecycleObserving.h │ │ │ │ │ ├── FBSDKApplicationObserving.h │ │ │ │ │ ├── FBSDKApplicationStateSetting.h │ │ │ │ │ ├── FBSDKAuthenticationStatusUtility.h │ │ │ │ │ ├── FBSDKAuthenticationToken.h │ │ │ │ │ ├── FBSDKAuthenticationTokenProviding.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ │ ├── FBSDKBridgeAPIRequestCreating.h │ │ │ │ │ ├── FBSDKBridgeAPIRequestOpening.h │ │ │ │ │ ├── FBSDKBridgeAPIRequestProtocol.h │ │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ │ ├── FBSDKButton.h │ │ │ │ │ ├── FBSDKButtonImpressionLogging.h │ │ │ │ │ ├── FBSDKClientTokenProviding.h │ │ │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ │ │ ├── FBSDKCodelessIndexing.h │ │ │ │ │ ├── FBSDKConstants.h │ │ │ │ │ ├── FBSDKContainerViewController.h │ │ │ │ │ ├── FBSDKConversionValueUpdating.h │ │ │ │ │ ├── FBSDKCoreKit-Swift.h │ │ │ │ │ ├── FBSDKCoreKit.h │ │ │ │ │ ├── FBSDKCoreKitVersions.h │ │ │ │ │ ├── FBSDKCrashObserver.h │ │ │ │ │ ├── FBSDKCrashShield.h │ │ │ │ │ ├── FBSDKDataProcessingOptionKey.h │ │ │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ │ │ ├── FBSDKDeviceInformationProviding.h │ │ │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ │ ├── FBSDKDialogConfigurationMapBuilding.h │ │ │ │ │ ├── FBSDKDynamicFrameworkLoaderProxy.h │ │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ │ ├── FBSDKErrorConfigurationProtocol.h │ │ │ │ │ ├── FBSDKErrorConfigurationProvider.h │ │ │ │ │ ├── FBSDKErrorConfigurationProviding.h │ │ │ │ │ ├── FBSDKErrorCreating.h │ │ │ │ │ ├── FBSDKErrorRecoveryAttempting.h │ │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ │ ├── FBSDKErrorReporter.h │ │ │ │ │ ├── FBSDKErrorReporting.h │ │ │ │ │ ├── FBSDKEventLogging.h │ │ │ │ │ ├── FBSDKEventProcessing.h │ │ │ │ │ ├── FBSDKEventsProcessing.h │ │ │ │ │ ├── FBSDKFeature.h │ │ │ │ │ ├── FBSDKFeatureChecking.h │ │ │ │ │ ├── FBSDKFeatureDisabling.h │ │ │ │ │ ├── FBSDKFeatureExtracting.h │ │ │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ │ │ ├── FBSDKGateKeeperManaging.h │ │ │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ │ │ ├── FBSDKGraphRequest.h │ │ │ │ │ ├── FBSDKGraphRequestConnecting.h │ │ │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ │ │ ├── FBSDKGraphRequestConnectionDelegate.h │ │ │ │ │ ├── FBSDKGraphRequestConnectionFactory.h │ │ │ │ │ ├── FBSDKGraphRequestConnectionFactoryProtocol.h │ │ │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ │ │ ├── FBSDKGraphRequestFactory.h │ │ │ │ │ ├── FBSDKGraphRequestFactoryProtocol.h │ │ │ │ │ ├── FBSDKGraphRequestFlags.h │ │ │ │ │ ├── FBSDKGraphRequestHTTPMethod.h │ │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ │ ├── FBSDKGraphRequestPiggybackManaging.h │ │ │ │ │ ├── FBSDKGraphRequestProtocol.h │ │ │ │ │ ├── FBSDKImpressionLoggerFactory.h │ │ │ │ │ ├── FBSDKImpressionLoggerFactoryProtocol.h │ │ │ │ │ ├── FBSDKImpressionLogging.h │ │ │ │ │ ├── FBSDKImpressionLoggingButton.h │ │ │ │ │ ├── FBSDKInstrumentManager.h │ │ │ │ │ ├── FBSDKIntegrityParametersProcessorProvider.h │ │ │ │ │ ├── FBSDKIntegrityProcessing.h │ │ │ │ │ ├── FBSDKInternalURLOpener.h │ │ │ │ │ ├── FBSDKInternalUtility.h │ │ │ │ │ ├── FBSDKInternalUtilityProtocol.h │ │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ │ ├── FBSDKKeychainStoreProtocol.h │ │ │ │ │ ├── FBSDKKeychainStoreProviding.h │ │ │ │ │ ├── FBSDKLocation.h │ │ │ │ │ ├── FBSDKLogger.h │ │ │ │ │ ├── FBSDKLoggerFactory.h │ │ │ │ │ ├── FBSDKLogging.h │ │ │ │ │ ├── FBSDKLoggingBehavior.h │ │ │ │ │ ├── FBSDKLoggingNotifying.h │ │ │ │ │ ├── FBSDKLoginTooltip.h │ │ │ │ │ ├── FBSDKMacCatalystDetermining.h │ │ │ │ │ ├── FBSDKMath.h │ │ │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ │ │ ├── FBSDKMeasurementEventNames.h │ │ │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ │ │ ├── FBSDKMetadataIndexing.h │ │ │ │ │ ├── FBSDKModelManager.h │ │ │ │ │ ├── FBSDKMutableCopying.h │ │ │ │ │ ├── FBSDKNetworkErrorChecker.h │ │ │ │ │ ├── FBSDKNetworkErrorChecking.h │ │ │ │ │ ├── FBSDKObjectDecoding.h │ │ │ │ │ ├── FBSDKOperatingSystemVersionComparing.h │ │ │ │ │ ├── FBSDKPasteboard.h │ │ │ │ │ ├── FBSDKPaymentObserving.h │ │ │ │ │ ├── FBSDKPaymentProductRequestor.h │ │ │ │ │ ├── FBSDKPaymentProductRequestorCreating.h │ │ │ │ │ ├── FBSDKProductAvailability.h │ │ │ │ │ ├── FBSDKProductCondition.h │ │ │ │ │ ├── FBSDKProductRequestFactory.h │ │ │ │ │ ├── FBSDKProductsRequestProtocols.h │ │ │ │ │ ├── FBSDKProfileBlock.h │ │ │ │ │ ├── FBSDKProfileNotifications.h │ │ │ │ │ ├── FBSDKRandom.h │ │ │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ │ │ ├── FBSDKRulesFromKeyProvider.h │ │ │ │ │ ├── FBSDKSKAdNetworkReporter.h │ │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ │ │ ├── FBSDKServerConfigurationProviding.h │ │ │ │ │ ├── FBSDKSettingsLogging.h │ │ │ │ │ ├── FBSDKSourceApplicationTracking.h │ │ │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ │ │ ├── FBSDKSuggestedEventsIndexerProtocol.h │ │ │ │ │ ├── FBSDKSwizzler.h │ │ │ │ │ ├── FBSDKSwizzling.h │ │ │ │ │ ├── FBSDKTimeSpentData.h │ │ │ │ │ ├── FBSDKTimeSpentRecording.h │ │ │ │ │ ├── FBSDKTokenCaching.h │ │ │ │ │ ├── FBSDKTokenStringProviding.h │ │ │ │ │ ├── FBSDKTransformer.h │ │ │ │ │ ├── FBSDKURL.h │ │ │ │ │ ├── FBSDKURLHosting.h │ │ │ │ │ ├── FBSDKURLOpener.h │ │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ │ ├── FBSDKURLScheme.h │ │ │ │ │ ├── FBSDKURLSessionProxyFactory.h │ │ │ │ │ ├── FBSDKURLSessionProxyProviding.h │ │ │ │ │ ├── FBSDKURLSessionProxying.h │ │ │ │ │ ├── FBSDKUnarchiverProvider.h │ │ │ │ │ ├── FBSDKUnarchiverProviding.h │ │ │ │ │ ├── FBSDKUserAgeRange.h │ │ │ │ │ ├── FBSDKUserDataPersisting.h │ │ │ │ │ ├── FBSDKUserDataStore.h │ │ │ │ │ ├── FBSDKUserIDProviding.h │ │ │ │ │ ├── FBSDKUserIdentifier.h │ │ │ │ │ ├── FBSDKUtility.h │ │ │ │ │ ├── FBSDKWebDialogDelegate.h │ │ │ │ │ ├── FBSDKWebDialogView.h │ │ │ │ │ ├── FBSDKWebView.h │ │ │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ │ │ ├── FBSDKWebViewProviding.h │ │ │ │ │ ├── NSNotificationCenter+NotificationPosting.h │ │ │ │ │ ├── NSProcessInfo+MacCatalystDetermining.h │ │ │ │ │ ├── NSProcessInfo+OperatingSystemVersionComparing.h │ │ │ │ │ ├── UIApplication+URLOpener.h │ │ │ │ │ ├── UIPasteboard+Pasteboard.h │ │ │ │ │ ├── WKWebView+WebViewProtocol.h │ │ │ │ │ ├── _FBSDKNotificationPosting.h │ │ │ │ │ ├── _FBSDKWindowFinding.h │ │ │ │ │ └── __FBSDKLoggerCreating.h │ │ │ │ ├── Modules │ │ │ │ │ ├── FBSDKCoreKit.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ └── dSYMs │ │ │ └── FBSDKCoreKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit │ │ ├── ios-arm64_x86_64-simulator │ │ ├── FBSDKCoreKit.framework │ │ │ ├── FBSDKCoreKit │ │ │ ├── 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 │ │ │ ├── Headers │ │ │ │ ├── FBSDKATEPublisherCreating.h │ │ │ │ ├── FBSDKATEPublisherFactory.h │ │ │ │ ├── FBSDKAccessToken.h │ │ │ │ ├── FBSDKAccessTokenProviding.h │ │ │ │ ├── FBSDKAdvertiserIDProviding.h │ │ │ │ ├── FBSDKAdvertisingTrackingStatus.h │ │ │ │ ├── FBSDKAppAvailabilityChecker.h │ │ │ │ ├── FBSDKAppEventDropDetermining.h │ │ │ │ ├── FBSDKAppEventName.h │ │ │ │ ├── FBSDKAppEventParameterName.h │ │ │ │ ├── FBSDKAppEventParameterProduct.h │ │ │ │ ├── FBSDKAppEventParameterValue.h │ │ │ │ ├── FBSDKAppEventParametersExtracting.h │ │ │ │ ├── FBSDKAppEventUserDataType.h │ │ │ │ ├── FBSDKAppEvents.h │ │ │ │ ├── FBSDKAppEventsConfiguration.h │ │ │ │ ├── FBSDKAppEventsConfigurationManager.h │ │ │ │ ├── FBSDKAppEventsConfigurationProtocol.h │ │ │ │ ├── FBSDKAppEventsConfigurationProviding.h │ │ │ │ ├── FBSDKAppEventsConfiguring.h │ │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ │ ├── FBSDKAppEventsFlushBehavior.h │ │ │ │ ├── FBSDKAppEventsFlushReason.h │ │ │ │ ├── FBSDKAppEventsNotificationName.h │ │ │ │ ├── FBSDKAppEventsParameterProcessing.h │ │ │ │ ├── FBSDKAppEventsReporter.h │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ ├── FBSDKAppEventsStatePersisting.h │ │ │ │ ├── FBSDKAppEventsStateProviding.h │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ ├── FBSDKAppEventsUtilityProtocol.h │ │ │ │ ├── FBSDKAppLinkCreating.h │ │ │ │ ├── FBSDKAppLinkEventPosting.h │ │ │ │ ├── FBSDKAppLinkNavigationBlock.h │ │ │ │ ├── FBSDKAppLinkNavigationType.h │ │ │ │ ├── FBSDKAppLinkProtocol.h │ │ │ │ ├── FBSDKAppLinkResolverRequestBuilding.h │ │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ │ ├── FBSDKAppLinkTargetCreating.h │ │ │ │ ├── FBSDKAppLinkTargetProtocol.h │ │ │ │ ├── FBSDKAppLinkURL.h │ │ │ │ ├── FBSDKAppLinkURLCreating.h │ │ │ │ ├── FBSDKAppLinkURLKeys.h │ │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ │ ├── FBSDKAppLinkVersion.h │ │ │ │ ├── FBSDKAppLinksBlock.h │ │ │ │ ├── FBSDKAppStoreReceiptProviding.h │ │ │ │ ├── FBSDKAppURLSchemeProviding.h │ │ │ │ ├── FBSDKApplicationActivating.h │ │ │ │ ├── FBSDKApplicationLifecycleNotifications.h │ │ │ │ ├── FBSDKApplicationLifecycleObserving.h │ │ │ │ ├── FBSDKApplicationObserving.h │ │ │ │ ├── FBSDKApplicationStateSetting.h │ │ │ │ ├── FBSDKAuthenticationStatusUtility.h │ │ │ │ ├── FBSDKAuthenticationToken.h │ │ │ │ ├── FBSDKAuthenticationTokenProviding.h │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ ├── FBSDKBridgeAPIRequestCreating.h │ │ │ │ ├── FBSDKBridgeAPIRequestOpening.h │ │ │ │ ├── FBSDKBridgeAPIRequestProtocol.h │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ ├── FBSDKButton.h │ │ │ │ ├── FBSDKButtonImpressionLogging.h │ │ │ │ ├── FBSDKClientTokenProviding.h │ │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ │ ├── FBSDKCodelessIndexing.h │ │ │ │ ├── FBSDKConstants.h │ │ │ │ ├── FBSDKContainerViewController.h │ │ │ │ ├── FBSDKConversionValueUpdating.h │ │ │ │ ├── FBSDKCoreKit-Swift.h │ │ │ │ ├── FBSDKCoreKit.h │ │ │ │ ├── FBSDKCoreKitVersions.h │ │ │ │ ├── FBSDKCrashObserver.h │ │ │ │ ├── FBSDKCrashShield.h │ │ │ │ ├── FBSDKDataProcessingOptionKey.h │ │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ │ ├── FBSDKDeviceInformationProviding.h │ │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ ├── FBSDKDialogConfigurationMapBuilding.h │ │ │ │ ├── FBSDKDynamicFrameworkLoaderProxy.h │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ ├── FBSDKErrorConfigurationProtocol.h │ │ │ │ ├── FBSDKErrorConfigurationProvider.h │ │ │ │ ├── FBSDKErrorConfigurationProviding.h │ │ │ │ ├── FBSDKErrorCreating.h │ │ │ │ ├── FBSDKErrorRecoveryAttempting.h │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ ├── FBSDKErrorReporter.h │ │ │ │ ├── FBSDKErrorReporting.h │ │ │ │ ├── FBSDKEventLogging.h │ │ │ │ ├── FBSDKEventProcessing.h │ │ │ │ ├── FBSDKEventsProcessing.h │ │ │ │ ├── FBSDKFeature.h │ │ │ │ ├── FBSDKFeatureChecking.h │ │ │ │ ├── FBSDKFeatureDisabling.h │ │ │ │ ├── FBSDKFeatureExtracting.h │ │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ │ ├── FBSDKGateKeeperManaging.h │ │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ │ ├── FBSDKGraphRequest.h │ │ │ │ ├── FBSDKGraphRequestConnecting.h │ │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ │ ├── FBSDKGraphRequestConnectionDelegate.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactory.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ │ ├── FBSDKGraphRequestFactory.h │ │ │ │ ├── FBSDKGraphRequestFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestFlags.h │ │ │ │ ├── FBSDKGraphRequestHTTPMethod.h │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ ├── FBSDKGraphRequestPiggybackManaging.h │ │ │ │ ├── FBSDKGraphRequestProtocol.h │ │ │ │ ├── FBSDKImpressionLoggerFactory.h │ │ │ │ ├── FBSDKImpressionLoggerFactoryProtocol.h │ │ │ │ ├── FBSDKImpressionLogging.h │ │ │ │ ├── FBSDKImpressionLoggingButton.h │ │ │ │ ├── FBSDKInstrumentManager.h │ │ │ │ ├── FBSDKIntegrityParametersProcessorProvider.h │ │ │ │ ├── FBSDKIntegrityProcessing.h │ │ │ │ ├── FBSDKInternalURLOpener.h │ │ │ │ ├── FBSDKInternalUtility.h │ │ │ │ ├── FBSDKInternalUtilityProtocol.h │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ ├── FBSDKKeychainStoreProtocol.h │ │ │ │ ├── FBSDKKeychainStoreProviding.h │ │ │ │ ├── FBSDKLocation.h │ │ │ │ ├── FBSDKLogger.h │ │ │ │ ├── FBSDKLoggerFactory.h │ │ │ │ ├── FBSDKLogging.h │ │ │ │ ├── FBSDKLoggingBehavior.h │ │ │ │ ├── FBSDKLoggingNotifying.h │ │ │ │ ├── FBSDKLoginTooltip.h │ │ │ │ ├── FBSDKMacCatalystDetermining.h │ │ │ │ ├── FBSDKMath.h │ │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ │ ├── FBSDKMeasurementEventNames.h │ │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ │ ├── FBSDKMetadataIndexing.h │ │ │ │ ├── FBSDKModelManager.h │ │ │ │ ├── FBSDKMutableCopying.h │ │ │ │ ├── FBSDKNetworkErrorChecker.h │ │ │ │ ├── FBSDKNetworkErrorChecking.h │ │ │ │ ├── FBSDKObjectDecoding.h │ │ │ │ ├── FBSDKOperatingSystemVersionComparing.h │ │ │ │ ├── FBSDKPasteboard.h │ │ │ │ ├── FBSDKPaymentObserving.h │ │ │ │ ├── FBSDKPaymentProductRequestor.h │ │ │ │ ├── FBSDKPaymentProductRequestorCreating.h │ │ │ │ ├── FBSDKProductAvailability.h │ │ │ │ ├── FBSDKProductCondition.h │ │ │ │ ├── FBSDKProductRequestFactory.h │ │ │ │ ├── FBSDKProductsRequestProtocols.h │ │ │ │ ├── FBSDKProfileBlock.h │ │ │ │ ├── FBSDKProfileNotifications.h │ │ │ │ ├── FBSDKRandom.h │ │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ │ ├── FBSDKRulesFromKeyProvider.h │ │ │ │ ├── FBSDKSKAdNetworkReporter.h │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ │ ├── FBSDKServerConfigurationProviding.h │ │ │ │ ├── FBSDKSettingsLogging.h │ │ │ │ ├── FBSDKSourceApplicationTracking.h │ │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ │ ├── FBSDKSuggestedEventsIndexerProtocol.h │ │ │ │ ├── FBSDKSwizzler.h │ │ │ │ ├── FBSDKSwizzling.h │ │ │ │ ├── FBSDKTimeSpentData.h │ │ │ │ ├── FBSDKTimeSpentRecording.h │ │ │ │ ├── FBSDKTokenCaching.h │ │ │ │ ├── FBSDKTokenStringProviding.h │ │ │ │ ├── FBSDKTransformer.h │ │ │ │ ├── FBSDKURL.h │ │ │ │ ├── FBSDKURLHosting.h │ │ │ │ ├── FBSDKURLOpener.h │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ ├── FBSDKURLScheme.h │ │ │ │ ├── FBSDKURLSessionProxyFactory.h │ │ │ │ ├── FBSDKURLSessionProxyProviding.h │ │ │ │ ├── FBSDKURLSessionProxying.h │ │ │ │ ├── FBSDKUnarchiverProvider.h │ │ │ │ ├── FBSDKUnarchiverProviding.h │ │ │ │ ├── FBSDKUserAgeRange.h │ │ │ │ ├── FBSDKUserDataPersisting.h │ │ │ │ ├── FBSDKUserDataStore.h │ │ │ │ ├── FBSDKUserIDProviding.h │ │ │ │ ├── FBSDKUserIdentifier.h │ │ │ │ ├── FBSDKUtility.h │ │ │ │ ├── FBSDKWebDialogDelegate.h │ │ │ │ ├── FBSDKWebDialogView.h │ │ │ │ ├── FBSDKWebView.h │ │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ │ ├── FBSDKWebViewProviding.h │ │ │ │ ├── NSNotificationCenter+NotificationPosting.h │ │ │ │ ├── NSProcessInfo+MacCatalystDetermining.h │ │ │ │ ├── NSProcessInfo+OperatingSystemVersionComparing.h │ │ │ │ ├── UIApplication+URLOpener.h │ │ │ │ ├── UIPasteboard+Pasteboard.h │ │ │ │ ├── WKWebView+WebViewProtocol.h │ │ │ │ ├── _FBSDKNotificationPosting.h │ │ │ │ ├── _FBSDKWindowFinding.h │ │ │ │ └── __FBSDKLoggerCreating.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── FBSDKCoreKit.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ └── module.modulemap │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── dSYMs │ │ │ └── FBSDKCoreKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit │ │ ├── tvos-arm64 │ │ ├── FBSDKCoreKit.framework │ │ │ ├── FBSDKCoreKit │ │ │ ├── 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 │ │ │ ├── Headers │ │ │ │ ├── FBSDKATEPublisherCreating.h │ │ │ │ ├── FBSDKATEPublisherFactory.h │ │ │ │ ├── FBSDKAccessToken.h │ │ │ │ ├── FBSDKAccessTokenProviding.h │ │ │ │ ├── FBSDKAdvertiserIDProviding.h │ │ │ │ ├── FBSDKAdvertisingTrackingStatus.h │ │ │ │ ├── FBSDKAppAvailabilityChecker.h │ │ │ │ ├── FBSDKAppEventDropDetermining.h │ │ │ │ ├── FBSDKAppEventName.h │ │ │ │ ├── FBSDKAppEventParameterName.h │ │ │ │ ├── FBSDKAppEventParameterProduct.h │ │ │ │ ├── FBSDKAppEventParameterValue.h │ │ │ │ ├── FBSDKAppEventParametersExtracting.h │ │ │ │ ├── FBSDKAppEventUserDataType.h │ │ │ │ ├── FBSDKAppEvents.h │ │ │ │ ├── FBSDKAppEventsConfiguration.h │ │ │ │ ├── FBSDKAppEventsConfigurationManager.h │ │ │ │ ├── FBSDKAppEventsConfigurationProtocol.h │ │ │ │ ├── FBSDKAppEventsConfigurationProviding.h │ │ │ │ ├── FBSDKAppEventsConfiguring.h │ │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ │ ├── FBSDKAppEventsFlushBehavior.h │ │ │ │ ├── FBSDKAppEventsFlushReason.h │ │ │ │ ├── FBSDKAppEventsNotificationName.h │ │ │ │ ├── FBSDKAppEventsParameterProcessing.h │ │ │ │ ├── FBSDKAppEventsReporter.h │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ ├── FBSDKAppEventsStatePersisting.h │ │ │ │ ├── FBSDKAppEventsStateProviding.h │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ ├── FBSDKAppEventsUtilityProtocol.h │ │ │ │ ├── FBSDKAppLinkCreating.h │ │ │ │ ├── FBSDKAppLinkEventPosting.h │ │ │ │ ├── FBSDKAppLinkNavigationBlock.h │ │ │ │ ├── FBSDKAppLinkNavigationType.h │ │ │ │ ├── FBSDKAppLinkProtocol.h │ │ │ │ ├── FBSDKAppLinkResolverRequestBuilding.h │ │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ │ ├── FBSDKAppLinkTargetCreating.h │ │ │ │ ├── FBSDKAppLinkTargetProtocol.h │ │ │ │ ├── FBSDKAppLinkURL.h │ │ │ │ ├── FBSDKAppLinkURLCreating.h │ │ │ │ ├── FBSDKAppLinkURLKeys.h │ │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ │ ├── FBSDKAppLinkVersion.h │ │ │ │ ├── FBSDKAppLinksBlock.h │ │ │ │ ├── FBSDKAppStoreReceiptProviding.h │ │ │ │ ├── FBSDKAppURLSchemeProviding.h │ │ │ │ ├── FBSDKApplicationActivating.h │ │ │ │ ├── FBSDKApplicationLifecycleNotifications.h │ │ │ │ ├── FBSDKApplicationLifecycleObserving.h │ │ │ │ ├── FBSDKApplicationObserving.h │ │ │ │ ├── FBSDKApplicationStateSetting.h │ │ │ │ ├── FBSDKAuthenticationStatusUtility.h │ │ │ │ ├── FBSDKAuthenticationToken.h │ │ │ │ ├── FBSDKAuthenticationTokenProviding.h │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ ├── FBSDKBridgeAPIRequestCreating.h │ │ │ │ ├── FBSDKBridgeAPIRequestOpening.h │ │ │ │ ├── FBSDKBridgeAPIRequestProtocol.h │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ ├── FBSDKButton.h │ │ │ │ ├── FBSDKButtonImpressionLogging.h │ │ │ │ ├── FBSDKClientTokenProviding.h │ │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ │ ├── FBSDKCodelessIndexing.h │ │ │ │ ├── FBSDKConstants.h │ │ │ │ ├── FBSDKContainerViewController.h │ │ │ │ ├── FBSDKConversionValueUpdating.h │ │ │ │ ├── FBSDKCoreKit-Swift.h │ │ │ │ ├── FBSDKCoreKit.h │ │ │ │ ├── FBSDKCoreKitVersions.h │ │ │ │ ├── FBSDKCrashObserver.h │ │ │ │ ├── FBSDKCrashShield.h │ │ │ │ ├── FBSDKDataProcessingOptionKey.h │ │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ │ ├── FBSDKDeviceInformationProviding.h │ │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ ├── FBSDKDialogConfigurationMapBuilding.h │ │ │ │ ├── FBSDKDynamicFrameworkLoaderProxy.h │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ ├── FBSDKErrorConfigurationProtocol.h │ │ │ │ ├── FBSDKErrorConfigurationProvider.h │ │ │ │ ├── FBSDKErrorConfigurationProviding.h │ │ │ │ ├── FBSDKErrorCreating.h │ │ │ │ ├── FBSDKErrorRecoveryAttempting.h │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ ├── FBSDKErrorReporter.h │ │ │ │ ├── FBSDKErrorReporting.h │ │ │ │ ├── FBSDKEventLogging.h │ │ │ │ ├── FBSDKEventProcessing.h │ │ │ │ ├── FBSDKEventsProcessing.h │ │ │ │ ├── FBSDKFeature.h │ │ │ │ ├── FBSDKFeatureChecking.h │ │ │ │ ├── FBSDKFeatureDisabling.h │ │ │ │ ├── FBSDKFeatureExtracting.h │ │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ │ ├── FBSDKGateKeeperManaging.h │ │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ │ ├── FBSDKGraphRequest.h │ │ │ │ ├── FBSDKGraphRequestConnecting.h │ │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ │ ├── FBSDKGraphRequestConnectionDelegate.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactory.h │ │ │ │ ├── FBSDKGraphRequestConnectionFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ │ ├── FBSDKGraphRequestFactory.h │ │ │ │ ├── FBSDKGraphRequestFactoryProtocol.h │ │ │ │ ├── FBSDKGraphRequestFlags.h │ │ │ │ ├── FBSDKGraphRequestHTTPMethod.h │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ ├── FBSDKGraphRequestPiggybackManaging.h │ │ │ │ ├── FBSDKGraphRequestProtocol.h │ │ │ │ ├── FBSDKImpressionLoggerFactory.h │ │ │ │ ├── FBSDKImpressionLoggerFactoryProtocol.h │ │ │ │ ├── FBSDKImpressionLogging.h │ │ │ │ ├── FBSDKImpressionLoggingButton.h │ │ │ │ ├── FBSDKInstrumentManager.h │ │ │ │ ├── FBSDKIntegrityParametersProcessorProvider.h │ │ │ │ ├── FBSDKIntegrityProcessing.h │ │ │ │ ├── FBSDKInternalURLOpener.h │ │ │ │ ├── FBSDKInternalUtility.h │ │ │ │ ├── FBSDKInternalUtilityProtocol.h │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ ├── FBSDKKeychainStoreProtocol.h │ │ │ │ ├── FBSDKKeychainStoreProviding.h │ │ │ │ ├── FBSDKLocation.h │ │ │ │ ├── FBSDKLogger.h │ │ │ │ ├── FBSDKLoggerFactory.h │ │ │ │ ├── FBSDKLogging.h │ │ │ │ ├── FBSDKLoggingBehavior.h │ │ │ │ ├── FBSDKLoggingNotifying.h │ │ │ │ ├── FBSDKLoginTooltip.h │ │ │ │ ├── FBSDKMacCatalystDetermining.h │ │ │ │ ├── FBSDKMath.h │ │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ │ ├── FBSDKMeasurementEventNames.h │ │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ │ ├── FBSDKMetadataIndexing.h │ │ │ │ ├── FBSDKModelManager.h │ │ │ │ ├── FBSDKMutableCopying.h │ │ │ │ ├── FBSDKNetworkErrorChecker.h │ │ │ │ ├── FBSDKNetworkErrorChecking.h │ │ │ │ ├── FBSDKObjectDecoding.h │ │ │ │ ├── FBSDKOperatingSystemVersionComparing.h │ │ │ │ ├── FBSDKPasteboard.h │ │ │ │ ├── FBSDKPaymentObserving.h │ │ │ │ ├── FBSDKPaymentProductRequestor.h │ │ │ │ ├── FBSDKPaymentProductRequestorCreating.h │ │ │ │ ├── FBSDKProductAvailability.h │ │ │ │ ├── FBSDKProductCondition.h │ │ │ │ ├── FBSDKProductRequestFactory.h │ │ │ │ ├── FBSDKProductsRequestProtocols.h │ │ │ │ ├── FBSDKProfileBlock.h │ │ │ │ ├── FBSDKProfileNotifications.h │ │ │ │ ├── FBSDKRandom.h │ │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ │ ├── FBSDKRulesFromKeyProvider.h │ │ │ │ ├── FBSDKSKAdNetworkReporter.h │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ │ ├── FBSDKServerConfigurationProviding.h │ │ │ │ ├── FBSDKSettingsLogging.h │ │ │ │ ├── FBSDKSourceApplicationTracking.h │ │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ │ ├── FBSDKSuggestedEventsIndexerProtocol.h │ │ │ │ ├── FBSDKSwizzler.h │ │ │ │ ├── FBSDKSwizzling.h │ │ │ │ ├── FBSDKTimeSpentData.h │ │ │ │ ├── FBSDKTimeSpentRecording.h │ │ │ │ ├── FBSDKTokenCaching.h │ │ │ │ ├── FBSDKTokenStringProviding.h │ │ │ │ ├── FBSDKTransformer.h │ │ │ │ ├── FBSDKURL.h │ │ │ │ ├── FBSDKURLHosting.h │ │ │ │ ├── FBSDKURLOpener.h │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ ├── FBSDKURLScheme.h │ │ │ │ ├── FBSDKURLSessionProxyFactory.h │ │ │ │ ├── FBSDKURLSessionProxyProviding.h │ │ │ │ ├── FBSDKURLSessionProxying.h │ │ │ │ ├── FBSDKUnarchiverProvider.h │ │ │ │ ├── FBSDKUnarchiverProviding.h │ │ │ │ ├── FBSDKUserAgeRange.h │ │ │ │ ├── FBSDKUserDataPersisting.h │ │ │ │ ├── FBSDKUserDataStore.h │ │ │ │ ├── FBSDKUserIDProviding.h │ │ │ │ ├── FBSDKUserIdentifier.h │ │ │ │ ├── FBSDKUtility.h │ │ │ │ ├── FBSDKWebDialogDelegate.h │ │ │ │ ├── FBSDKWebDialogView.h │ │ │ │ ├── FBSDKWebView.h │ │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ │ ├── FBSDKWebViewProviding.h │ │ │ │ ├── NSNotificationCenter+NotificationPosting.h │ │ │ │ ├── NSProcessInfo+MacCatalystDetermining.h │ │ │ │ ├── NSProcessInfo+OperatingSystemVersionComparing.h │ │ │ │ ├── UIApplication+URLOpener.h │ │ │ │ ├── UIPasteboard+Pasteboard.h │ │ │ │ ├── WKWebView+WebViewProtocol.h │ │ │ │ ├── _FBSDKNotificationPosting.h │ │ │ │ ├── _FBSDKWindowFinding.h │ │ │ │ └── __FBSDKLoggerCreating.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBSDKCoreKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos.swiftdoc │ │ │ │ └── arm64-apple-tvos.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKCoreKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit │ │ └── tvos-arm64_x86_64-simulator │ │ ├── FBSDKCoreKit.framework │ │ ├── FBSDKCoreKit │ │ ├── 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 │ │ ├── Headers │ │ │ ├── FBSDKATEPublisherCreating.h │ │ │ ├── FBSDKATEPublisherFactory.h │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAccessTokenProviding.h │ │ │ ├── FBSDKAdvertiserIDProviding.h │ │ │ ├── FBSDKAdvertisingTrackingStatus.h │ │ │ ├── FBSDKAppAvailabilityChecker.h │ │ │ ├── FBSDKAppEventDropDetermining.h │ │ │ ├── FBSDKAppEventName.h │ │ │ ├── FBSDKAppEventParameterName.h │ │ │ ├── FBSDKAppEventParameterProduct.h │ │ │ ├── FBSDKAppEventParameterValue.h │ │ │ ├── FBSDKAppEventParametersExtracting.h │ │ │ ├── FBSDKAppEventUserDataType.h │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppEventsConfiguration.h │ │ │ ├── FBSDKAppEventsConfigurationManager.h │ │ │ ├── FBSDKAppEventsConfigurationProtocol.h │ │ │ ├── FBSDKAppEventsConfigurationProviding.h │ │ │ ├── FBSDKAppEventsConfiguring.h │ │ │ ├── FBSDKAppEventsDeviceInfo.h │ │ │ ├── FBSDKAppEventsFlushBehavior.h │ │ │ ├── FBSDKAppEventsFlushReason.h │ │ │ ├── FBSDKAppEventsNotificationName.h │ │ │ ├── FBSDKAppEventsParameterProcessing.h │ │ │ ├── FBSDKAppEventsReporter.h │ │ │ ├── FBSDKAppEventsState.h │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ ├── FBSDKAppEventsStatePersisting.h │ │ │ ├── FBSDKAppEventsStateProviding.h │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ ├── FBSDKAppEventsUtilityProtocol.h │ │ │ ├── FBSDKAppLinkCreating.h │ │ │ ├── FBSDKAppLinkEventPosting.h │ │ │ ├── FBSDKAppLinkNavigationBlock.h │ │ │ ├── FBSDKAppLinkNavigationType.h │ │ │ ├── FBSDKAppLinkProtocol.h │ │ │ ├── FBSDKAppLinkResolverRequestBuilding.h │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ ├── FBSDKAppLinkTargetCreating.h │ │ │ ├── FBSDKAppLinkTargetProtocol.h │ │ │ ├── FBSDKAppLinkURL.h │ │ │ ├── FBSDKAppLinkURLCreating.h │ │ │ ├── FBSDKAppLinkURLKeys.h │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKAppLinkVersion.h │ │ │ ├── FBSDKAppLinksBlock.h │ │ │ ├── FBSDKAppStoreReceiptProviding.h │ │ │ ├── FBSDKAppURLSchemeProviding.h │ │ │ ├── FBSDKApplicationActivating.h │ │ │ ├── FBSDKApplicationLifecycleNotifications.h │ │ │ ├── FBSDKApplicationLifecycleObserving.h │ │ │ ├── FBSDKApplicationObserving.h │ │ │ ├── FBSDKApplicationStateSetting.h │ │ │ ├── FBSDKAuthenticationStatusUtility.h │ │ │ ├── FBSDKAuthenticationToken.h │ │ │ ├── FBSDKAuthenticationTokenProviding.h │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ ├── FBSDKBridgeAPIRequestCreating.h │ │ │ ├── FBSDKBridgeAPIRequestOpening.h │ │ │ ├── FBSDKBridgeAPIRequestProtocol.h │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKButtonImpressionLogging.h │ │ │ ├── FBSDKClientTokenProviding.h │ │ │ ├── FBSDKCodelessIndexer.h │ │ │ ├── FBSDKCodelessIndexing.h │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKContainerViewController.h │ │ │ ├── FBSDKConversionValueUpdating.h │ │ │ ├── FBSDKCoreKit-Swift.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKCoreKitVersions.h │ │ │ ├── FBSDKCrashObserver.h │ │ │ ├── FBSDKCrashShield.h │ │ │ ├── FBSDKDataProcessingOptionKey.h │ │ │ ├── FBSDKDeviceDialogView.h │ │ │ ├── FBSDKDeviceInformationProviding.h │ │ │ ├── FBSDKDeviceViewControllerBase.h │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ ├── FBSDKDialogConfigurationMapBuilding.h │ │ │ ├── FBSDKDynamicFrameworkLoaderProxy.h │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ ├── FBSDKErrorConfigurationProtocol.h │ │ │ ├── FBSDKErrorConfigurationProvider.h │ │ │ ├── FBSDKErrorConfigurationProviding.h │ │ │ ├── FBSDKErrorCreating.h │ │ │ ├── FBSDKErrorRecoveryAttempting.h │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ ├── FBSDKErrorReporter.h │ │ │ ├── FBSDKErrorReporting.h │ │ │ ├── FBSDKEventLogging.h │ │ │ ├── FBSDKEventProcessing.h │ │ │ ├── FBSDKEventsProcessing.h │ │ │ ├── FBSDKFeature.h │ │ │ ├── FBSDKFeatureChecking.h │ │ │ ├── FBSDKFeatureDisabling.h │ │ │ ├── FBSDKFeatureExtracting.h │ │ │ ├── FBSDKFeatureExtractor.h │ │ │ ├── FBSDKGateKeeperManager.h │ │ │ ├── FBSDKGateKeeperManaging.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequestConnecting.h │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestConnectionDelegate.h │ │ │ ├── FBSDKGraphRequestConnectionFactory.h │ │ │ ├── FBSDKGraphRequestConnectionFactoryProtocol.h │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ ├── FBSDKGraphRequestFactory.h │ │ │ ├── FBSDKGraphRequestFactoryProtocol.h │ │ │ ├── FBSDKGraphRequestFlags.h │ │ │ ├── FBSDKGraphRequestHTTPMethod.h │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ ├── FBSDKGraphRequestPiggybackManaging.h │ │ │ ├── FBSDKGraphRequestProtocol.h │ │ │ ├── FBSDKImpressionLoggerFactory.h │ │ │ ├── FBSDKImpressionLoggerFactoryProtocol.h │ │ │ ├── FBSDKImpressionLogging.h │ │ │ ├── FBSDKImpressionLoggingButton.h │ │ │ ├── FBSDKInstrumentManager.h │ │ │ ├── FBSDKIntegrityParametersProcessorProvider.h │ │ │ ├── FBSDKIntegrityProcessing.h │ │ │ ├── FBSDKInternalURLOpener.h │ │ │ ├── FBSDKInternalUtility.h │ │ │ ├── FBSDKInternalUtilityProtocol.h │ │ │ ├── FBSDKKeychainStore.h │ │ │ ├── FBSDKKeychainStoreProtocol.h │ │ │ ├── FBSDKKeychainStoreProviding.h │ │ │ ├── FBSDKLocation.h │ │ │ ├── FBSDKLogger.h │ │ │ ├── FBSDKLoggerFactory.h │ │ │ ├── FBSDKLogging.h │ │ │ ├── FBSDKLoggingBehavior.h │ │ │ ├── FBSDKLoggingNotifying.h │ │ │ ├── FBSDKLoginTooltip.h │ │ │ ├── FBSDKMacCatalystDetermining.h │ │ │ ├── FBSDKMath.h │ │ │ ├── FBSDKMeasurementEventListener.h │ │ │ ├── FBSDKMeasurementEventNames.h │ │ │ ├── FBSDKMetadataIndexer.h │ │ │ ├── FBSDKMetadataIndexing.h │ │ │ ├── FBSDKModelManager.h │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKNetworkErrorChecker.h │ │ │ ├── FBSDKNetworkErrorChecking.h │ │ │ ├── FBSDKObjectDecoding.h │ │ │ ├── FBSDKOperatingSystemVersionComparing.h │ │ │ ├── FBSDKPasteboard.h │ │ │ ├── FBSDKPaymentObserving.h │ │ │ ├── FBSDKPaymentProductRequestor.h │ │ │ ├── FBSDKPaymentProductRequestorCreating.h │ │ │ ├── FBSDKProductAvailability.h │ │ │ ├── FBSDKProductCondition.h │ │ │ ├── FBSDKProductRequestFactory.h │ │ │ ├── FBSDKProductsRequestProtocols.h │ │ │ ├── FBSDKProfileBlock.h │ │ │ ├── FBSDKProfileNotifications.h │ │ │ ├── FBSDKRandom.h │ │ │ ├── FBSDKRestrictiveDataFilterManager.h │ │ │ ├── FBSDKRulesFromKeyProvider.h │ │ │ ├── FBSDKSKAdNetworkReporter.h │ │ │ ├── FBSDKServerConfiguration.h │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ ├── FBSDKServerConfigurationProviding.h │ │ │ ├── FBSDKSettingsLogging.h │ │ │ ├── FBSDKSourceApplicationTracking.h │ │ │ ├── FBSDKSuggestedEventsIndexer.h │ │ │ ├── FBSDKSuggestedEventsIndexerProtocol.h │ │ │ ├── FBSDKSwizzler.h │ │ │ ├── FBSDKSwizzling.h │ │ │ ├── FBSDKTimeSpentData.h │ │ │ ├── FBSDKTimeSpentRecording.h │ │ │ ├── FBSDKTokenCaching.h │ │ │ ├── FBSDKTokenStringProviding.h │ │ │ ├── FBSDKTransformer.h │ │ │ ├── FBSDKURL.h │ │ │ ├── FBSDKURLHosting.h │ │ │ ├── FBSDKURLOpener.h │ │ │ ├── FBSDKURLOpening.h │ │ │ ├── FBSDKURLScheme.h │ │ │ ├── FBSDKURLSessionProxyFactory.h │ │ │ ├── FBSDKURLSessionProxyProviding.h │ │ │ ├── FBSDKURLSessionProxying.h │ │ │ ├── FBSDKUnarchiverProvider.h │ │ │ ├── FBSDKUnarchiverProviding.h │ │ │ ├── FBSDKUserAgeRange.h │ │ │ ├── FBSDKUserDataPersisting.h │ │ │ ├── FBSDKUserDataStore.h │ │ │ ├── FBSDKUserIDProviding.h │ │ │ ├── FBSDKUserIdentifier.h │ │ │ ├── FBSDKUtility.h │ │ │ ├── FBSDKWebDialogDelegate.h │ │ │ ├── FBSDKWebDialogView.h │ │ │ ├── FBSDKWebView.h │ │ │ ├── FBSDKWebViewAppLinkResolver.h │ │ │ ├── FBSDKWebViewProviding.h │ │ │ ├── NSNotificationCenter+NotificationPosting.h │ │ │ ├── NSProcessInfo+MacCatalystDetermining.h │ │ │ ├── NSProcessInfo+OperatingSystemVersionComparing.h │ │ │ ├── UIApplication+URLOpener.h │ │ │ ├── UIPasteboard+Pasteboard.h │ │ │ ├── WKWebView+WebViewProtocol.h │ │ │ ├── _FBSDKNotificationPosting.h │ │ │ ├── _FBSDKWindowFinding.h │ │ │ └── __FBSDKLoggerCreating.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── FBSDKCoreKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-tvos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-tvos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-tvos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── dSYMs │ │ └── FBSDKCoreKit.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── FBSDKCoreKit ├── FBSDKCoreKit_Basics │ └── XCFrameworks │ │ └── FBSDKCoreKit_Basics.xcframework │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── ios-arm64 │ │ ├── FBSDKCoreKit_Basics.framework │ │ │ ├── FBSDKCoreKit_Basics │ │ │ ├── Headers │ │ │ │ ├── FBSDKBase64.h │ │ │ │ ├── FBSDKBasicUtility.h │ │ │ │ ├── FBSDKCoreKit_Basics.h │ │ │ │ ├── FBSDKCrashHandler.h │ │ │ │ ├── FBSDKCrashHandlerProtocol.h │ │ │ │ ├── FBSDKCrashObserving.h │ │ │ │ ├── FBSDKDataPersisting.h │ │ │ │ ├── FBSDKFileDataExtracting.h │ │ │ │ ├── FBSDKFileManaging.h │ │ │ │ ├── FBSDKInfoDictionaryProviding.h │ │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ │ ├── FBSDKLinking.h │ │ │ │ ├── FBSDKNetworkTask.h │ │ │ │ ├── FBSDKNotificationDelivering.h │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ ├── FBSDKURLSession.h │ │ │ │ ├── FBSDKURLSessionProviding.h │ │ │ │ ├── FBSDKURLSessionTask.h │ │ │ │ └── NSNotificationCenter+NotificationDelivering.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKCoreKit_Basics.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit_Basics │ │ ├── ios-arm64_x86_64-maccatalyst │ │ ├── FBSDKCoreKit_Basics.framework │ │ │ ├── FBSDKCoreKit_Basics │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FBSDKCoreKit_Basics │ │ │ │ ├── Headers │ │ │ │ │ ├── FBSDKBase64.h │ │ │ │ │ ├── FBSDKBasicUtility.h │ │ │ │ │ ├── FBSDKCoreKit_Basics.h │ │ │ │ │ ├── FBSDKCrashHandler.h │ │ │ │ │ ├── FBSDKCrashHandlerProtocol.h │ │ │ │ │ ├── FBSDKCrashObserving.h │ │ │ │ │ ├── FBSDKDataPersisting.h │ │ │ │ │ ├── FBSDKFileDataExtracting.h │ │ │ │ │ ├── FBSDKFileManaging.h │ │ │ │ │ ├── FBSDKInfoDictionaryProviding.h │ │ │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ │ │ ├── FBSDKLinking.h │ │ │ │ │ ├── FBSDKNetworkTask.h │ │ │ │ │ ├── FBSDKNotificationDelivering.h │ │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ │ ├── FBSDKURLSession.h │ │ │ │ │ ├── FBSDKURLSessionProviding.h │ │ │ │ │ ├── FBSDKURLSessionTask.h │ │ │ │ │ └── NSNotificationCenter+NotificationDelivering.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ └── dSYMs │ │ │ └── FBSDKCoreKit_Basics.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit_Basics │ │ ├── ios-arm64_x86_64-simulator │ │ ├── FBSDKCoreKit_Basics.framework │ │ │ ├── FBSDKCoreKit_Basics │ │ │ ├── Headers │ │ │ │ ├── FBSDKBase64.h │ │ │ │ ├── FBSDKBasicUtility.h │ │ │ │ ├── FBSDKCoreKit_Basics.h │ │ │ │ ├── FBSDKCrashHandler.h │ │ │ │ ├── FBSDKCrashHandlerProtocol.h │ │ │ │ ├── FBSDKCrashObserving.h │ │ │ │ ├── FBSDKDataPersisting.h │ │ │ │ ├── FBSDKFileDataExtracting.h │ │ │ │ ├── FBSDKFileManaging.h │ │ │ │ ├── FBSDKInfoDictionaryProviding.h │ │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ │ ├── FBSDKLinking.h │ │ │ │ ├── FBSDKNetworkTask.h │ │ │ │ ├── FBSDKNotificationDelivering.h │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ ├── FBSDKURLSession.h │ │ │ │ ├── FBSDKURLSessionProviding.h │ │ │ │ ├── FBSDKURLSessionTask.h │ │ │ │ └── NSNotificationCenter+NotificationDelivering.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── dSYMs │ │ │ └── FBSDKCoreKit_Basics.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit_Basics │ │ ├── tvos-arm64 │ │ ├── FBSDKCoreKit_Basics.framework │ │ │ ├── FBSDKCoreKit_Basics │ │ │ ├── Headers │ │ │ │ ├── FBSDKBase64.h │ │ │ │ ├── FBSDKBasicUtility.h │ │ │ │ ├── FBSDKCoreKit_Basics.h │ │ │ │ ├── FBSDKCrashHandler.h │ │ │ │ ├── FBSDKCrashHandlerProtocol.h │ │ │ │ ├── FBSDKCrashObserving.h │ │ │ │ ├── FBSDKDataPersisting.h │ │ │ │ ├── FBSDKFileDataExtracting.h │ │ │ │ ├── FBSDKFileManaging.h │ │ │ │ ├── FBSDKInfoDictionaryProviding.h │ │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ │ ├── FBSDKLinking.h │ │ │ │ ├── FBSDKNetworkTask.h │ │ │ │ ├── FBSDKNotificationDelivering.h │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ ├── FBSDKURLSession.h │ │ │ │ ├── FBSDKURLSessionProviding.h │ │ │ │ ├── FBSDKURLSessionTask.h │ │ │ │ └── NSNotificationCenter+NotificationDelivering.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKCoreKit_Basics.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKCoreKit_Basics │ │ └── tvos-arm64_x86_64-simulator │ │ ├── FBSDKCoreKit_Basics.framework │ │ ├── FBSDKCoreKit_Basics │ │ ├── Headers │ │ │ ├── FBSDKBase64.h │ │ │ ├── FBSDKBasicUtility.h │ │ │ ├── FBSDKCoreKit_Basics.h │ │ │ ├── FBSDKCrashHandler.h │ │ │ ├── FBSDKCrashHandlerProtocol.h │ │ │ ├── FBSDKCrashObserving.h │ │ │ ├── FBSDKDataPersisting.h │ │ │ ├── FBSDKFileDataExtracting.h │ │ │ ├── FBSDKFileManaging.h │ │ │ ├── FBSDKInfoDictionaryProviding.h │ │ │ ├── FBSDKLibAnalyzer.h │ │ │ ├── FBSDKLinking.h │ │ │ ├── FBSDKNetworkTask.h │ │ │ ├── FBSDKNotificationDelivering.h │ │ │ ├── FBSDKTypeUtility.h │ │ │ ├── FBSDKURLSession.h │ │ │ ├── FBSDKURLSessionProviding.h │ │ │ ├── FBSDKURLSessionTask.h │ │ │ └── NSNotificationCenter+NotificationDelivering.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── dSYMs │ │ └── FBSDKCoreKit_Basics.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── FBSDKCoreKit_Basics ├── FBSDKLoginKit │ └── XCFrameworks │ │ └── FBSDKLoginKit.xcframework │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── ios-arm64 │ │ ├── FBSDKLoginKit.framework │ │ │ ├── FBSDKLoginKit │ │ │ ├── Headers │ │ │ │ ├── FBSDKLoginAuthType.h │ │ │ │ ├── FBSDKLoginCompletionParametersBlock.h │ │ │ │ ├── FBSDKLoginErrorDomain.h │ │ │ │ ├── FBSDKLoginKit-Swift.h │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ └── FBSDKLoginManagerLoginResultBlock.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBSDKLoginKit.swiftmodule │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKLoginKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKLoginKit │ │ ├── ios-arm64_x86_64-maccatalyst │ │ ├── FBSDKLoginKit.framework │ │ │ ├── FBSDKLoginKit │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FBSDKLoginKit │ │ │ │ ├── Headers │ │ │ │ │ ├── FBSDKLoginAuthType.h │ │ │ │ │ ├── FBSDKLoginCompletionParametersBlock.h │ │ │ │ │ ├── FBSDKLoginErrorDomain.h │ │ │ │ │ ├── FBSDKLoginKit-Swift.h │ │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ │ └── FBSDKLoginManagerLoginResultBlock.h │ │ │ │ ├── Modules │ │ │ │ │ ├── FBSDKLoginKit.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ └── dSYMs │ │ │ └── FBSDKLoginKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKLoginKit │ │ ├── ios-arm64_x86_64-simulator │ │ ├── FBSDKLoginKit.framework │ │ │ ├── FBSDKLoginKit │ │ │ ├── Headers │ │ │ │ ├── FBSDKLoginAuthType.h │ │ │ │ ├── FBSDKLoginCompletionParametersBlock.h │ │ │ │ ├── FBSDKLoginErrorDomain.h │ │ │ │ ├── FBSDKLoginKit-Swift.h │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ └── FBSDKLoginManagerLoginResultBlock.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── FBSDKLoginKit.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ └── module.modulemap │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── dSYMs │ │ │ └── FBSDKLoginKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKLoginKit │ │ ├── tvos-arm64 │ │ ├── FBSDKLoginKit.framework │ │ │ ├── FBSDKLoginKit │ │ │ ├── Headers │ │ │ │ ├── FBSDKLoginAuthType.h │ │ │ │ ├── FBSDKLoginCompletionParametersBlock.h │ │ │ │ ├── FBSDKLoginErrorDomain.h │ │ │ │ ├── FBSDKLoginKit-Swift.h │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ └── FBSDKLoginManagerLoginResultBlock.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ │ ├── FBSDKLoginKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos.swiftdoc │ │ │ │ └── arm64-apple-tvos.swiftinterface │ │ │ │ └── module.modulemap │ │ └── dSYMs │ │ │ └── FBSDKLoginKit.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FBSDKLoginKit │ │ └── tvos-arm64_x86_64-simulator │ │ ├── FBSDKLoginKit.framework │ │ ├── FBSDKLoginKit │ │ ├── Headers │ │ │ ├── FBSDKLoginAuthType.h │ │ │ ├── FBSDKLoginCompletionParametersBlock.h │ │ │ ├── FBSDKLoginErrorDomain.h │ │ │ ├── FBSDKLoginKit-Swift.h │ │ │ ├── FBSDKLoginKit.h │ │ │ └── FBSDKLoginManagerLoginResultBlock.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── FBSDKLoginKit.swiftmodule │ │ │ │ ├── arm64-apple-tvos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-tvos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-tvos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-tvos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── dSYMs │ │ └── FBSDKLoginKit.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── FBSDKLoginKit ├── FontBlaster │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FontBlaster.swift ├── GTMAppAuth │ ├── GTMAppAuth │ │ └── Sources │ │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.m │ │ │ ├── GTMAppAuthFetcherAuthorization.m │ │ │ ├── GTMKeychain.m │ │ │ ├── GTMOAuth2KeychainCompatibility.m │ │ │ └── Public │ │ │ └── GTMAppAuth │ │ │ ├── GTMAppAuth.h │ │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.h │ │ │ ├── GTMAppAuthFetcherAuthorization.h │ │ │ ├── GTMKeychain.h │ │ │ └── GTMOAuth2KeychainCompatibility.h │ ├── LICENSE │ └── README.md ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── Core │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService+Internal.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.m │ │ └── Public │ │ └── GTMSessionFetcher │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherService.h │ │ └── GTMSessionUploadFetcher.h ├── GoogleSignIn │ ├── GoogleSignIn │ │ └── Sources │ │ │ ├── GIDAppAuthFetcherAuthorizationWithEMMSupport.h │ │ │ ├── GIDAppAuthFetcherAuthorizationWithEMMSupport.m │ │ │ ├── GIDAuthStateMigration.h │ │ │ ├── GIDAuthStateMigration.m │ │ │ ├── GIDAuthentication.h │ │ │ ├── GIDAuthentication.m │ │ │ ├── GIDCallbackQueue.h │ │ │ ├── GIDCallbackQueue.m │ │ │ ├── GIDConfiguration.m │ │ │ ├── GIDEMMErrorHandler.h │ │ │ ├── GIDEMMErrorHandler.m │ │ │ ├── GIDEMMSupport.h │ │ │ ├── GIDEMMSupport.m │ │ │ ├── GIDGoogleUser.m │ │ │ ├── GIDGoogleUser_Private.h │ │ │ ├── GIDMDMPasscodeCache.h │ │ │ ├── GIDMDMPasscodeCache.m │ │ │ ├── GIDMDMPasscodeState.h │ │ │ ├── GIDMDMPasscodeState.m │ │ │ ├── GIDMDMPasscodeState_Private.h │ │ │ ├── GIDProfileData.m │ │ │ ├── GIDProfileData_Private.h │ │ │ ├── GIDScopes.h │ │ │ ├── GIDScopes.m │ │ │ ├── GIDSignIn.m │ │ │ ├── GIDSignInButton.m │ │ │ ├── GIDSignInCallbackSchemes.h │ │ │ ├── GIDSignInCallbackSchemes.m │ │ │ ├── GIDSignInInternalOptions.h │ │ │ ├── GIDSignInInternalOptions.m │ │ │ ├── GIDSignInPreferences.h │ │ │ ├── GIDSignInPreferences.m │ │ │ ├── GIDSignInResult.m │ │ │ ├── GIDSignInResult_Private.h │ │ │ ├── GIDSignInStrings.h │ │ │ ├── GIDSignInStrings.m │ │ │ ├── GIDSignIn_Private.h │ │ │ ├── GIDToken.m │ │ │ ├── GIDToken_Private.h │ │ │ ├── NSBundle+GID3PAdditions.h │ │ │ ├── NSBundle+GID3PAdditions.m │ │ │ ├── Public │ │ │ └── GoogleSignIn │ │ │ │ ├── GIDConfiguration.h │ │ │ │ ├── GIDGoogleUser.h │ │ │ │ ├── GIDProfileData.h │ │ │ │ ├── GIDSignIn.h │ │ │ │ ├── GIDSignInButton.h │ │ │ │ ├── GIDSignInResult.h │ │ │ │ ├── GIDToken.h │ │ │ │ └── GoogleSignIn.h │ │ │ ├── Resources │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── google.png │ │ │ ├── google@2x.png │ │ │ └── google@3x.png │ │ │ └── Strings │ │ │ ├── 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 │ │ │ ├── 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 │ ├── LICENSE │ └── README.md ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── CPListItem+Kingfisher.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── NSButton+Kingfisher.swift │ │ ├── NSTextAttachment+Kingfisher.swift │ │ ├── TVMonogramView+Kingfisher.swift │ │ ├── UIButton+Kingfisher.swift │ │ └── WKInterfaceImage+Kingfisher.swift │ │ ├── General │ │ ├── ImageSource │ │ │ ├── AVAssetImageDataProvider.swift │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── KF.swift │ │ ├── KFOptionsSetter.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── GraphicsContext.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── RetryStrategy.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ │ ├── SwiftUI │ │ ├── ImageBinder.swift │ │ ├── ImageContext.swift │ │ ├── KFAnimatedImage.swift │ │ ├── KFImage.swift │ │ ├── KFImageOptions.swift │ │ ├── KFImageProtocol.swift │ │ └── KFImageRenderer.swift │ │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift ├── Local Podspecs │ └── FolioReaderKit.podspec.json ├── Manifest.lock ├── MenuItemKit │ ├── LICENSE │ ├── MenuItemKit │ │ ├── Internals.swift │ │ ├── MenuItemKit.h │ │ ├── Swizzlings.m │ │ ├── Swizzlings.swift │ │ ├── UIMenuController.swift │ │ └── UIMenuItem.swift │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── AEXML.xcscheme │ │ ├── Alamofire.xcscheme │ │ ├── AppAuth.xcscheme │ │ ├── Connectivity.xcscheme │ │ ├── FBAEMKit.xcscheme │ │ ├── FBSDKCoreKit.xcscheme │ │ ├── FBSDKCoreKit_Basics.xcscheme │ │ ├── FBSDKLoginKit.xcscheme │ │ ├── FolioReaderKit.xcscheme │ │ ├── FontBlaster.xcscheme │ │ ├── GTMAppAuth.xcscheme │ │ ├── GTMSessionFetcher.xcscheme │ │ ├── GoogleSignIn-GoogleSignIn.xcscheme │ │ ├── GoogleSignIn.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── MenuItemKit.xcscheme │ │ ├── Pods-EpubReader-EpubReaderUITests.xcscheme │ │ ├── Pods-EpubReader.xcscheme │ │ ├── Pods-EpubReaderTests.xcscheme │ │ ├── Realm.xcscheme │ │ ├── RealmSwift.xcscheme │ │ ├── RxBlocking.xcscheme │ │ ├── RxCocoa.xcscheme │ │ ├── RxRelay.xcscheme │ │ ├── RxSwift.xcscheme │ │ ├── RxTest.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── SSZipArchive.xcscheme │ │ ├── ScrollableSegmentedControl.xcscheme │ │ ├── SnapKit.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ ├── VisualEffectView.xcscheme │ │ ├── Whisper.xcscheme │ │ ├── ZFDragableModalTransition.xcscheme │ │ └── xcschememanagement.plist ├── 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 │ │ │ │ ├── primitive_list_notifier.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ ├── results_notifier.cpp │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object.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_permission.cpp │ │ │ │ ├── sync_session.cpp │ │ │ │ └── sync_user.cpp │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ └── util │ │ │ │ ├── fifo.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 │ │ ├── RLMSyncPermissionResults.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 │ │ ├── RLMSyncPermissionResults.h │ │ ├── RLMSyncPermission_Private.hpp │ │ ├── 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_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_direct.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_long.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bptree.hpp │ │ │ ├── chunked_binary.hpp │ │ │ ├── column.hpp │ │ │ ├── column_backlink.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_link.hpp │ │ │ ├── column_linkbase.hpp │ │ │ ├── column_linklist.hpp │ │ │ ├── column_mixed.hpp │ │ │ ├── column_mixed_tpl.hpp │ │ │ ├── column_string.hpp │ │ │ ├── column_string_enum.hpp │ │ │ ├── column_table.hpp │ │ │ ├── column_timestamp.hpp │ │ │ ├── column_tpl.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── data_type.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_fwd.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── group.hpp │ │ │ ├── group_shared.hpp │ │ │ ├── group_shared_options.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 │ │ │ ├── sequential_getter.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── index_string.hpp │ │ │ ├── lang_bind_helper.hpp │ │ │ ├── link_view.hpp │ │ │ ├── link_view_fwd.hpp │ │ │ ├── metrics │ │ │ ├── metric_timer.hpp │ │ │ ├── metrics.hpp │ │ │ ├── query_info.hpp │ │ │ └── transaction_info.hpp │ │ │ ├── mixed.hpp │ │ │ ├── null.hpp │ │ │ ├── olddatetime.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 │ │ │ ├── query_operators.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── row.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── sync │ │ │ ├── changeset.hpp │ │ │ ├── changeset_cooker.hpp │ │ │ ├── changeset_encoder.hpp │ │ │ ├── changeset_parser.hpp │ │ │ ├── client.hpp │ │ │ ├── crypto.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 │ │ │ ├── circular_buffer.hpp │ │ │ ├── config.h │ │ │ ├── demangle.hpp │ │ │ ├── duplicating_logger.hpp │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── enum.hpp │ │ │ ├── errno.hpp │ │ │ ├── features.h │ │ │ ├── file.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── fixed_size_buffer.hpp │ │ │ ├── flat_map.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 │ │ │ ├── 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 │ │ │ └── views.hpp │ │ ├── execution_context_id.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 │ │ ├── primitive_list_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_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_permission.hpp │ │ ├── sync_session.hpp │ │ └── sync_user.hpp │ │ ├── thread_safe_reference.hpp │ │ └── util │ │ ├── aligned_union.hpp │ │ ├── apple │ │ └── event_loop_signal.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── event_loop_dispatcher.hpp │ │ ├── event_loop_signal.hpp │ │ ├── fifo.hpp │ │ ├── tagged_bool.hpp │ │ └── uuid.hpp ├── RealmSwift │ ├── LICENSE │ ├── README.md │ ├── RealmSwift │ │ ├── Aliases.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 ├── RxBlocking │ ├── LICENSE.md │ ├── Platform │ │ ├── AtomicInt.swift │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxBlocking │ │ ├── BlockingObservable+Operators.swift │ │ ├── BlockingObservable.swift │ │ ├── ObservableConvertibleType+Blocking.swift │ │ ├── Resources.swift │ │ └── RunLoopLock.swift ├── RxCocoa │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxCocoa │ │ ├── Common │ │ ├── ControlTarget.swift │ │ ├── DelegateProxy.swift │ │ ├── DelegateProxyType.swift │ │ ├── Infallible+Bind.swift │ │ ├── Observable+Bind.swift │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ ├── RxTarget.swift │ │ ├── SectionedViewDataSourceType.swift │ │ └── TextInput.swift │ │ ├── Foundation │ │ ├── KVORepresentable+CoreGraphics.swift │ │ ├── KVORepresentable+Swift.swift │ │ ├── KVORepresentable.swift │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ ├── NSObject+Rx.swift │ │ ├── NotificationCenter+Rx.swift │ │ └── URLSession+Rx.swift │ │ ├── Runtime │ │ ├── _RX.m │ │ ├── _RXDelegateProxy.m │ │ ├── _RXKVOObserver.m │ │ ├── _RXObjCRuntime.m │ │ └── include │ │ │ ├── RxCocoaRuntime.h │ │ │ ├── _RX.h │ │ │ ├── _RXDelegateProxy.h │ │ │ ├── _RXKVOObserver.h │ │ │ └── _RXObjCRuntime.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.swift │ │ ├── Traits │ │ ├── ControlEvent.swift │ │ ├── ControlProperty.swift │ │ ├── Driver │ │ │ ├── BehaviorRelay+Driver.swift │ │ │ ├── ControlEvent+Driver.swift │ │ │ ├── ControlProperty+Driver.swift │ │ │ ├── Driver+Subscription.swift │ │ │ ├── Driver.swift │ │ │ └── ObservableConvertibleType+Driver.swift │ │ ├── SharedSequence │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ ├── SchedulerType+SharedSequence.swift │ │ │ ├── SharedSequence+Concurrency.swift │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ ├── SharedSequence+Operators.swift │ │ │ └── SharedSequence.swift │ │ └── Signal │ │ │ ├── ControlEvent+Signal.swift │ │ │ ├── ObservableConvertibleType+Signal.swift │ │ │ ├── PublishRelay+Signal.swift │ │ │ ├── Signal+Subscription.swift │ │ │ └── Signal.swift │ │ ├── iOS │ │ ├── DataSources │ │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ │ ├── RxPickerViewAdapter.swift │ │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ ├── Events │ │ │ └── ItemEvents.swift │ │ ├── NSTextStorage+Rx.swift │ │ ├── Protocols │ │ │ ├── RxCollectionViewDataSourceType.swift │ │ │ ├── RxPickerViewDataSourceType.swift │ │ │ └── RxTableViewDataSourceType.swift │ │ ├── Proxies │ │ │ ├── RxCollectionViewDataSourcePrefetchingProxy.swift │ │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ │ ├── RxCollectionViewDelegateProxy.swift │ │ │ ├── RxNavigationControllerDelegateProxy.swift │ │ │ ├── RxPickerViewDataSourceProxy.swift │ │ │ ├── RxPickerViewDelegateProxy.swift │ │ │ ├── RxScrollViewDelegateProxy.swift │ │ │ ├── RxSearchBarDelegateProxy.swift │ │ │ ├── RxSearchControllerDelegateProxy.swift │ │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ │ ├── RxTabBarDelegateProxy.swift │ │ │ ├── RxTableViewDataSourcePrefetchingProxy.swift │ │ │ ├── RxTableViewDataSourceProxy.swift │ │ │ ├── RxTableViewDelegateProxy.swift │ │ │ ├── RxTextStorageDelegateProxy.swift │ │ │ ├── RxTextViewDelegateProxy.swift │ │ │ └── RxWKNavigationDelegateProxy.swift │ │ ├── UIActivityIndicatorView+Rx.swift │ │ ├── UIApplication+Rx.swift │ │ ├── UIBarButtonItem+Rx.swift │ │ ├── UIButton+Rx.swift │ │ ├── UICollectionView+Rx.swift │ │ ├── UIControl+Rx.swift │ │ ├── UIDatePicker+Rx.swift │ │ ├── UIGestureRecognizer+Rx.swift │ │ ├── UINavigationController+Rx.swift │ │ ├── UIPickerView+Rx.swift │ │ ├── UIRefreshControl+Rx.swift │ │ ├── UIScrollView+Rx.swift │ │ ├── UISearchBar+Rx.swift │ │ ├── UISearchController+Rx.swift │ │ ├── UISegmentedControl+Rx.swift │ │ ├── UISlider+Rx.swift │ │ ├── UIStepper+Rx.swift │ │ ├── UISwitch+Rx.swift │ │ ├── UITabBar+Rx.swift │ │ ├── UITabBarController+Rx.swift │ │ ├── UITableView+Rx.swift │ │ ├── UITextField+Rx.swift │ │ ├── UITextView+Rx.swift │ │ └── WKWebView+Rx.swift │ │ └── macOS │ │ ├── NSButton+Rx.swift │ │ ├── NSControl+Rx.swift │ │ ├── NSSlider+Rx.swift │ │ ├── NSTextField+Rx.swift │ │ ├── NSTextView+Rx.swift │ │ └── NSView+Rx.swift ├── RxRelay │ ├── LICENSE.md │ ├── README.md │ └── RxRelay │ │ ├── BehaviorRelay.swift │ │ ├── Observable+Bind.swift │ │ ├── PublishRelay.swift │ │ ├── ReplayRelay.swift │ │ └── Utils.swift ├── RxSwift │ ├── LICENSE.md │ ├── Platform │ │ ├── AtomicInt.swift │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Binder.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.swift │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── Date+Dispatch.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ ├── AnonymousDisposable.swift │ │ ├── BinaryDisposable.swift │ │ ├── BooleanDisposable.swift │ │ ├── CompositeDisposable.swift │ │ ├── Disposables.swift │ │ ├── DisposeBag.swift │ │ ├── DisposeBase.swift │ │ ├── NopDisposable.swift │ │ ├── RefCountDisposable.swift │ │ ├── ScheduledDisposable.swift │ │ ├── SerialDisposable.swift │ │ ├── SingleAssignmentDisposable.swift │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ └── Bag+Rx.swift │ │ ├── GroupedObservable.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Observable+Concurrency.swift │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── AddRef.swift │ │ ├── Amb.swift │ │ ├── AsMaybe.swift │ │ ├── AsSingle.swift │ │ ├── Buffer.swift │ │ ├── Catch.swift │ │ ├── CombineLatest+Collection.swift │ │ ├── CombineLatest+arity.swift │ │ ├── CombineLatest.swift │ │ ├── CompactMap.swift │ │ ├── Concat.swift │ │ ├── Create.swift │ │ ├── Debounce.swift │ │ ├── Debug.swift │ │ ├── Decode.swift │ │ ├── DefaultIfEmpty.swift │ │ ├── Deferred.swift │ │ ├── Delay.swift │ │ ├── DelaySubscription.swift │ │ ├── Dematerialize.swift │ │ ├── DistinctUntilChanged.swift │ │ ├── Do.swift │ │ ├── ElementAt.swift │ │ ├── Empty.swift │ │ ├── Enumerated.swift │ │ ├── Error.swift │ │ ├── Filter.swift │ │ ├── First.swift │ │ ├── Generate.swift │ │ ├── GroupBy.swift │ │ ├── Just.swift │ │ ├── Map.swift │ │ ├── Materialize.swift │ │ ├── Merge.swift │ │ ├── Multicast.swift │ │ ├── Never.swift │ │ ├── ObserveOn.swift │ │ ├── Optional.swift │ │ ├── Producer.swift │ │ ├── Range.swift │ │ ├── Reduce.swift │ │ ├── Repeat.swift │ │ ├── RetryWhen.swift │ │ ├── Sample.swift │ │ ├── Scan.swift │ │ ├── Sequence.swift │ │ ├── ShareReplayScope.swift │ │ ├── SingleAsync.swift │ │ ├── Sink.swift │ │ ├── Skip.swift │ │ ├── SkipUntil.swift │ │ ├── SkipWhile.swift │ │ ├── StartWith.swift │ │ ├── SubscribeOn.swift │ │ ├── Switch.swift │ │ ├── SwitchIfEmpty.swift │ │ ├── Take.swift │ │ ├── TakeLast.swift │ │ ├── TakeWithPredicate.swift │ │ ├── Throttle.swift │ │ ├── Timeout.swift │ │ ├── Timer.swift │ │ ├── ToArray.swift │ │ ├── Using.swift │ │ ├── Window.swift │ │ ├── WithLatestFrom.swift │ │ ├── WithUnretained.swift │ │ ├── Zip+Collection.swift │ │ ├── Zip+arity.swift │ │ └── Zip.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Reactive.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── Internal │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── ScheduledItem.swift │ │ │ └── ScheduledItemType.swift │ │ ├── MainScheduler.swift │ │ ├── OperationQueueScheduler.swift │ │ ├── RecursiveScheduler.swift │ │ ├── SchedulerServices+Emulation.swift │ │ ├── SerialDispatchQueueScheduler.swift │ │ ├── VirtualTimeConverterType.swift │ │ └── VirtualTimeScheduler.swift │ │ ├── Subjects │ │ ├── AsyncSubject.swift │ │ ├── BehaviorSubject.swift │ │ ├── PublishSubject.swift │ │ ├── ReplaySubject.swift │ │ └── SubjectType.swift │ │ ├── SwiftSupport │ │ └── SwiftSupport.swift │ │ └── Traits │ │ ├── Infallible │ │ ├── Infallible+CombineLatest+arity.swift │ │ ├── Infallible+Concurrency.swift │ │ ├── Infallible+Create.swift │ │ ├── Infallible+Operators.swift │ │ ├── Infallible+Zip+arity.swift │ │ ├── Infallible.swift │ │ └── ObservableConvertibleType+Infallible.swift │ │ └── PrimitiveSequence │ │ ├── Completable+AndThen.swift │ │ ├── Completable.swift │ │ ├── Maybe.swift │ │ ├── ObservableType+PrimitiveSequence.swift │ │ ├── PrimitiveSequence+Concurrency.swift │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ ├── PrimitiveSequence.swift │ │ └── Single.swift ├── RxTest │ ├── LICENSE.md │ ├── Platform │ │ ├── AtomicInt.swift │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxTest │ │ ├── Any+Equatable.swift │ │ ├── ColdObservable.swift │ │ ├── Event+Equatable.swift │ │ ├── HotObservable.swift │ │ ├── Recorded+Event.swift │ │ ├── Recorded.swift │ │ ├── RxTest.swift │ │ ├── Schedulers │ │ ├── TestScheduler.swift │ │ └── TestSchedulerVirtualTimeConverter.swift │ │ ├── Subscription.swift │ │ ├── TestableObservable.swift │ │ ├── TestableObserver.swift │ │ └── XCTest+Rx.swift ├── 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 │ │ │ ├── SDCallbackQueue.h │ │ │ ├── SDCallbackQueue.m │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDiskCache.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoder.m │ │ │ ├── SDImageAWebPCoder.h │ │ │ ├── SDImageAWebPCoder.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 │ │ │ ├── SDImageFramePool.h │ │ │ ├── SDImageFramePool.m │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h ├── SSZipArchive │ ├── LICENSE.txt │ ├── README.md │ └── SSZipArchive │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── SSZipCommon.h │ │ ├── ZipArchive.h │ │ └── minizip │ │ ├── aes │ │ ├── aes.h │ │ ├── aes_ni.c │ │ ├── aes_ni.h │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ ├── aestab.h │ │ ├── brg_endian.h │ │ ├── brg_types.h │ │ ├── fileenc.c │ │ ├── fileenc.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── prng.c │ │ ├── prng.h │ │ ├── pwd2key.c │ │ ├── pwd2key.h │ │ ├── sha1.c │ │ └── sha1.h │ │ ├── crypt.c │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── ioapi_buf.c │ │ ├── ioapi_buf.h │ │ ├── ioapi_mem.c │ │ ├── ioapi_mem.h │ │ ├── minishared.c │ │ ├── minishared.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h ├── ScrollableSegmentedControl │ ├── LICENSE │ ├── README.md │ └── ScrollableSegmentedControl │ │ └── ScrollableSegmentedControl.swift ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintDirectionalInsetTarget.swift │ │ ├── ConstraintDirectionalInsets.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPrioritizable.swift │ │ ├── ConstraintMakerRelatable+Extensions.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift ├── Target Support Files │ ├── AEXML │ │ ├── AEXML-Info.plist │ │ ├── AEXML-dummy.m │ │ ├── AEXML-prefix.pch │ │ ├── AEXML-umbrella.h │ │ ├── AEXML.debug.xcconfig │ │ ├── AEXML.modulemap │ │ └── AEXML.release.xcconfig │ ├── Alamofire │ │ ├── Alamofire-Info.plist │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.debug.xcconfig │ │ ├── Alamofire.modulemap │ │ └── Alamofire.release.xcconfig │ ├── AppAuth │ │ ├── AppAuth-Info.plist │ │ ├── AppAuth-dummy.m │ │ ├── AppAuth-prefix.pch │ │ ├── AppAuth-umbrella.h │ │ ├── AppAuth.debug.xcconfig │ │ ├── AppAuth.modulemap │ │ └── AppAuth.release.xcconfig │ ├── Connectivity │ │ ├── Connectivity-Info.plist │ │ ├── Connectivity-dummy.m │ │ ├── Connectivity-prefix.pch │ │ ├── Connectivity-umbrella.h │ │ ├── Connectivity.debug.xcconfig │ │ ├── Connectivity.modulemap │ │ └── Connectivity.release.xcconfig │ ├── FBAEMKit │ │ ├── FBAEMKit-xcframeworks-input-files.xcfilelist │ │ ├── FBAEMKit-xcframeworks-output-files.xcfilelist │ │ ├── FBAEMKit-xcframeworks.sh │ │ ├── FBAEMKit.debug.xcconfig │ │ └── FBAEMKit.release.xcconfig │ ├── FBSDKCoreKit │ │ ├── FBSDKCoreKit-xcframeworks-input-files.xcfilelist │ │ ├── FBSDKCoreKit-xcframeworks-output-files.xcfilelist │ │ ├── FBSDKCoreKit-xcframeworks.sh │ │ ├── FBSDKCoreKit.debug.xcconfig │ │ └── FBSDKCoreKit.release.xcconfig │ ├── FBSDKCoreKit_Basics │ │ ├── FBSDKCoreKit_Basics-xcframeworks-input-files.xcfilelist │ │ ├── FBSDKCoreKit_Basics-xcframeworks-output-files.xcfilelist │ │ ├── FBSDKCoreKit_Basics-xcframeworks.sh │ │ ├── FBSDKCoreKit_Basics.debug.xcconfig │ │ └── FBSDKCoreKit_Basics.release.xcconfig │ ├── FBSDKLoginKit │ │ ├── FBSDKLoginKit-xcframeworks-input-files.xcfilelist │ │ ├── FBSDKLoginKit-xcframeworks-output-files.xcfilelist │ │ ├── FBSDKLoginKit-xcframeworks.sh │ │ ├── FBSDKLoginKit.debug.xcconfig │ │ └── FBSDKLoginKit.release.xcconfig │ ├── FolioReaderKit │ │ ├── FolioReaderKit-Info.plist │ │ ├── FolioReaderKit-dummy.m │ │ ├── FolioReaderKit-prefix.pch │ │ ├── FolioReaderKit-umbrella.h │ │ ├── FolioReaderKit.debug.xcconfig │ │ ├── FolioReaderKit.modulemap │ │ └── FolioReaderKit.release.xcconfig │ ├── FontBlaster │ │ ├── FontBlaster-Info.plist │ │ ├── FontBlaster-dummy.m │ │ ├── FontBlaster-prefix.pch │ │ ├── FontBlaster-umbrella.h │ │ ├── FontBlaster.debug.xcconfig │ │ ├── FontBlaster.modulemap │ │ └── FontBlaster.release.xcconfig │ ├── GTMAppAuth │ │ ├── GTMAppAuth-Info.plist │ │ ├── GTMAppAuth-dummy.m │ │ ├── GTMAppAuth-umbrella.h │ │ ├── GTMAppAuth.debug.xcconfig │ │ ├── GTMAppAuth.modulemap │ │ └── GTMAppAuth.release.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-Info.plist │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ └── GTMSessionFetcher.release.xcconfig │ ├── GoogleSignIn │ │ ├── GoogleSignIn-Info.plist │ │ ├── GoogleSignIn-dummy.m │ │ ├── GoogleSignIn-umbrella.h │ │ ├── GoogleSignIn.debug.xcconfig │ │ ├── GoogleSignIn.modulemap │ │ ├── GoogleSignIn.release.xcconfig │ │ └── ResourceBundle-GoogleSignIn-GoogleSignIn-Info.plist │ ├── Kingfisher │ │ ├── Kingfisher-Info.plist │ │ ├── Kingfisher-dummy.m │ │ ├── Kingfisher-prefix.pch │ │ ├── Kingfisher-umbrella.h │ │ ├── Kingfisher.debug.xcconfig │ │ ├── Kingfisher.modulemap │ │ └── Kingfisher.release.xcconfig │ ├── MenuItemKit │ │ ├── MenuItemKit-Info.plist │ │ ├── MenuItemKit-dummy.m │ │ ├── MenuItemKit-prefix.pch │ │ ├── MenuItemKit-umbrella.h │ │ ├── MenuItemKit.debug.xcconfig │ │ ├── MenuItemKit.modulemap │ │ └── MenuItemKit.release.xcconfig │ ├── Pods-EpubReader-EpubReaderUITests │ │ ├── Pods-EpubReader-EpubReaderUITests-Info.plist │ │ ├── Pods-EpubReader-EpubReaderUITests-acknowledgements.markdown │ │ ├── Pods-EpubReader-EpubReaderUITests-acknowledgements.plist │ │ ├── Pods-EpubReader-EpubReaderUITests-dummy.m │ │ ├── Pods-EpubReader-EpubReaderUITests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-EpubReader-EpubReaderUITests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-EpubReader-EpubReaderUITests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-EpubReader-EpubReaderUITests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-EpubReader-EpubReaderUITests-frameworks.sh │ │ ├── Pods-EpubReader-EpubReaderUITests-umbrella.h │ │ ├── Pods-EpubReader-EpubReaderUITests.debug.xcconfig │ │ ├── Pods-EpubReader-EpubReaderUITests.modulemap │ │ └── Pods-EpubReader-EpubReaderUITests.release.xcconfig │ ├── Pods-EpubReader │ │ ├── Pods-EpubReader-Info.plist │ │ ├── Pods-EpubReader-acknowledgements.markdown │ │ ├── Pods-EpubReader-acknowledgements.plist │ │ ├── Pods-EpubReader-dummy.m │ │ ├── Pods-EpubReader-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-EpubReader-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-EpubReader-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-EpubReader-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-EpubReader-frameworks.sh │ │ ├── Pods-EpubReader-umbrella.h │ │ ├── Pods-EpubReader.debug.xcconfig │ │ ├── Pods-EpubReader.modulemap │ │ └── Pods-EpubReader.release.xcconfig │ ├── Pods-EpubReaderTests │ │ ├── Pods-EpubReaderTests-Info.plist │ │ ├── Pods-EpubReaderTests-acknowledgements.markdown │ │ ├── Pods-EpubReaderTests-acknowledgements.plist │ │ ├── Pods-EpubReaderTests-dummy.m │ │ ├── Pods-EpubReaderTests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-EpubReaderTests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-EpubReaderTests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-EpubReaderTests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-EpubReaderTests-frameworks.sh │ │ ├── Pods-EpubReaderTests-umbrella.h │ │ ├── Pods-EpubReaderTests.debug.xcconfig │ │ ├── Pods-EpubReaderTests.modulemap │ │ └── Pods-EpubReaderTests.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 │ ├── RxBlocking │ │ ├── RxBlocking-Info.plist │ │ ├── RxBlocking-dummy.m │ │ ├── RxBlocking-prefix.pch │ │ ├── RxBlocking-umbrella.h │ │ ├── RxBlocking.debug.xcconfig │ │ ├── RxBlocking.modulemap │ │ └── RxBlocking.release.xcconfig │ ├── RxCocoa │ │ ├── RxCocoa-Info.plist │ │ ├── RxCocoa-dummy.m │ │ ├── RxCocoa-prefix.pch │ │ ├── RxCocoa-umbrella.h │ │ ├── RxCocoa.debug.xcconfig │ │ ├── RxCocoa.modulemap │ │ └── RxCocoa.release.xcconfig │ ├── RxRelay │ │ ├── RxRelay-Info.plist │ │ ├── RxRelay-dummy.m │ │ ├── RxRelay-prefix.pch │ │ ├── RxRelay-umbrella.h │ │ ├── RxRelay.debug.xcconfig │ │ ├── RxRelay.modulemap │ │ └── RxRelay.release.xcconfig │ ├── RxSwift │ │ ├── RxSwift-Info.plist │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.debug.xcconfig │ │ ├── RxSwift.modulemap │ │ └── RxSwift.release.xcconfig │ ├── RxTest │ │ ├── RxTest-Info.plist │ │ ├── RxTest-dummy.m │ │ ├── RxTest-prefix.pch │ │ ├── RxTest-umbrella.h │ │ ├── RxTest.debug.xcconfig │ │ ├── RxTest.modulemap │ │ └── RxTest.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.release.xcconfig │ ├── SSZipArchive │ │ ├── SSZipArchive-Info.plist │ │ ├── SSZipArchive-dummy.m │ │ ├── SSZipArchive-prefix.pch │ │ ├── SSZipArchive-umbrella.h │ │ ├── SSZipArchive.debug.xcconfig │ │ ├── SSZipArchive.modulemap │ │ └── SSZipArchive.release.xcconfig │ ├── ScrollableSegmentedControl │ │ ├── ScrollableSegmentedControl-Info.plist │ │ ├── ScrollableSegmentedControl-dummy.m │ │ ├── ScrollableSegmentedControl-prefix.pch │ │ ├── ScrollableSegmentedControl-umbrella.h │ │ ├── ScrollableSegmentedControl.debug.xcconfig │ │ ├── ScrollableSegmentedControl.modulemap │ │ └── ScrollableSegmentedControl.release.xcconfig │ ├── SnapKit │ │ ├── SnapKit-Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.debug.xcconfig │ │ ├── SnapKit.modulemap │ │ └── SnapKit.release.xcconfig │ ├── SwiftyJSON │ │ ├── SwiftyJSON-Info.plist │ │ ├── SwiftyJSON-dummy.m │ │ ├── SwiftyJSON-prefix.pch │ │ ├── SwiftyJSON-umbrella.h │ │ ├── SwiftyJSON.debug.xcconfig │ │ ├── SwiftyJSON.modulemap │ │ └── SwiftyJSON.release.xcconfig │ ├── VisualEffectView │ │ ├── VisualEffectView-Info.plist │ │ ├── VisualEffectView-dummy.m │ │ ├── VisualEffectView-prefix.pch │ │ ├── VisualEffectView-umbrella.h │ │ ├── VisualEffectView.debug.xcconfig │ │ ├── VisualEffectView.modulemap │ │ └── VisualEffectView.release.xcconfig │ ├── Whisper │ │ ├── Whisper-Info.plist │ │ ├── Whisper-dummy.m │ │ ├── Whisper-prefix.pch │ │ ├── Whisper-umbrella.h │ │ ├── Whisper.debug.xcconfig │ │ ├── Whisper.modulemap │ │ └── Whisper.release.xcconfig │ └── ZFDragableModalTransition │ │ ├── ZFDragableModalTransition-Info.plist │ │ ├── ZFDragableModalTransition-dummy.m │ │ ├── ZFDragableModalTransition-prefix.pch │ │ ├── ZFDragableModalTransition-umbrella.h │ │ ├── ZFDragableModalTransition.debug.xcconfig │ │ ├── ZFDragableModalTransition.modulemap │ │ └── ZFDragableModalTransition.release.xcconfig ├── VisualEffectView │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── UIViewEffectViewiOS14.swift │ │ └── VisualEffectView.swift ├── Whisper │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ ├── Config.swift │ │ ├── Configuration │ │ ├── ColorList.swift │ │ └── FontList.swift │ │ ├── Message.swift │ │ ├── ShoutFactory.swift │ │ ├── Showing.swift │ │ ├── UIView+Extensions.swift │ │ ├── WhisperFactory.swift │ │ ├── WhisperView.swift │ │ └── WhistleFactory.swift └── ZFDragableModalTransition │ ├── Classes │ ├── ZFModalTransitionAnimator.h │ └── ZFModalTransitionAnimator.m │ ├── LICENSE │ └── README.md ├── README.md └── preview ├── preview1.png ├── preview2.png ├── preview3.png ├── preview4.png ├── preview5.png └── preview6.png /EpubReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EpubReader.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EpubReader/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/AppDelegate.swift -------------------------------------------------------------------------------- /EpubReader/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /EpubReader/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /EpubReader/Base/Banner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Base/Banner.swift -------------------------------------------------------------------------------- /EpubReader/Base/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Base/BaseViewController.swift -------------------------------------------------------------------------------- /EpubReader/Base/FileDownloadInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Base/FileDownloadInfo.swift -------------------------------------------------------------------------------- /EpubReader/Common/ApiError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Common/ApiError.swift -------------------------------------------------------------------------------- /EpubReader/Common/ApiRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Common/ApiRouter.swift -------------------------------------------------------------------------------- /EpubReader/Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Common/Constants.swift -------------------------------------------------------------------------------- /EpubReader/Data/Network/ApiWebService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Data/Network/ApiWebService.swift -------------------------------------------------------------------------------- /EpubReader/Data/Network/NetworkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Data/Network/NetworkManager.swift -------------------------------------------------------------------------------- /EpubReader/DataFiles/about_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/DataFiles/about_us.html -------------------------------------------------------------------------------- /EpubReader/DataFiles/disable_ads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/DataFiles/disable_ads.html -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/Audio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/Audio.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/AudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/AudioPlayer.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/Book.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/Epub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/Epub.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/Message.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/ReadingBook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/ReadingBook.swift -------------------------------------------------------------------------------- /EpubReader/Domain/Entities/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Domain/Entities/User.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/IntExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/IntExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIButtonExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIButtonExtension.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIColorExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIDeviceExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIDeviceExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIFont.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIImage.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIImageExtension.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UILabelExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UILabelExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIScreenExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIScreenExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UITextFieldExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UITextFieldExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Extensions/UIViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Extensions/UIViewExtensions.swift -------------------------------------------------------------------------------- /EpubReader/Graphics/Example/ebook_example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Example/ebook_example.jpeg -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/cross_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/cross_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/download-icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/download.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/download_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/download_remove.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/fi_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/fi_download.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/fi_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/fi_heart.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/fi_heart_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/fi_heart_fill.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/headphones.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_book.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_chapters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_chapters.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_more.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_next.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_pages.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_profile.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_rating.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/ic_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/ic_view.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/no_wifi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/no_wifi_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/template_stop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/template_stop_square.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/tick_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/tick_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Icon/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Icon/trash.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/clock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/clock_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/home_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/home_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/rating_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/rating_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/search_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/us_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/us_icon.png -------------------------------------------------------------------------------- /EpubReader/Graphics/Tab Bar Icons/video_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Graphics/Tab Bar Icons/video_icon.png -------------------------------------------------------------------------------- /EpubReader/Helper/BannerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/BannerHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/DatabaseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/DatabaseHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/EpubReaderHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/EpubReaderHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/FileHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/FileHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/ItemDownloadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/ItemDownloadHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/MusicPlayerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/MusicPlayerHelper.swift -------------------------------------------------------------------------------- /EpubReader/Helper/PersistenceHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Helper/PersistenceHelper.swift -------------------------------------------------------------------------------- /EpubReader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Info.plist -------------------------------------------------------------------------------- /EpubReader/Presentation/Views/MenuBookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Presentation/Views/MenuBookView.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/AppAppearanceDesigner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/AppAppearanceDesigner.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/BuildApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/BuildApp.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/LocalNetworkPrivacy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/LocalNetworkPrivacy.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/PermissionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/PermissionManager.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/Reachability.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/UserDefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/UserDefs.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/Utilities.swift -------------------------------------------------------------------------------- /EpubReader/Utilities/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReader/Utilities/Utils.swift -------------------------------------------------------------------------------- /EpubReaderTests/EpubReaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReaderTests/EpubReaderTests.swift -------------------------------------------------------------------------------- /EpubReaderUITests/EpubReaderUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/EpubReaderUITests/EpubReaderUITests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AEXML/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/LICENSE -------------------------------------------------------------------------------- /Pods/AEXML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/README.md -------------------------------------------------------------------------------- /Pods/AEXML/Sources/AEXML/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/Sources/AEXML/Document.swift -------------------------------------------------------------------------------- /Pods/AEXML/Sources/AEXML/Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/Sources/AEXML/Element.swift -------------------------------------------------------------------------------- /Pods/AEXML/Sources/AEXML/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/Sources/AEXML/Error.swift -------------------------------------------------------------------------------- /Pods/AEXML/Sources/AEXML/Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/Sources/AEXML/Options.swift -------------------------------------------------------------------------------- /Pods/AEXML/Sources/AEXML/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AEXML/Sources/AEXML/Parser.swift -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Concurrency.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestCompression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/RequestCompression.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/AppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/AppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/README.md -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuth.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDAuthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDAuthState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDAuthState.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDError.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDFieldMapping.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDGrantTypes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDIDToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDIDToken.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDScopes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDScopes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/AppAuth/Source/AppAuthCore/OIDTokenRequest.m -------------------------------------------------------------------------------- /Pods/Connectivity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Connectivity/LICENSE -------------------------------------------------------------------------------- /Pods/Connectivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Connectivity/README.md -------------------------------------------------------------------------------- /Pods/FBAEMKit/XCFrameworks/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit: -------------------------------------------------------------------------------- 1 | Versions/Current/FBAEMKit -------------------------------------------------------------------------------- /Pods/FBAEMKit/XCFrameworks/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/FBAEMKit/XCFrameworks/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Pods/FBAEMKit/XCFrameworks/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/FBAEMKit/XCFrameworks/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit: -------------------------------------------------------------------------------- 1 | Versions/Current/FBSDKCoreKit -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit/XCFrameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/FBSDKCoreKit_Basics/XCFrameworks/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/XCFrameworks/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit: -------------------------------------------------------------------------------- 1 | Versions/Current/FBSDKLoginKit -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/XCFrameworks/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/XCFrameworks/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/XCFrameworks/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/FBSDKLoginKit/XCFrameworks/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/FontBlaster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/FontBlaster/LICENSE -------------------------------------------------------------------------------- /Pods/FontBlaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/FontBlaster/README.md -------------------------------------------------------------------------------- /Pods/FontBlaster/Sources/FontBlaster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/FontBlaster/Sources/FontBlaster.swift -------------------------------------------------------------------------------- /Pods/GTMAppAuth/GTMAppAuth/Sources/GTMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GTMAppAuth/GTMAppAuth/Sources/GTMKeychain.m -------------------------------------------------------------------------------- /Pods/GTMAppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GTMAppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/GTMAppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GTMAppAuth/README.md -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDToken.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GoogleSignIn/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleSignIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/GoogleSignIn/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/General/KF.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /Pods/Local Podspecs/FolioReaderKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Local Podspecs/FolioReaderKit.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/MenuItemKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/LICENSE -------------------------------------------------------------------------------- /Pods/MenuItemKit/MenuItemKit/Internals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/MenuItemKit/Internals.swift -------------------------------------------------------------------------------- /Pods/MenuItemKit/MenuItemKit/MenuItemKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/MenuItemKit/MenuItemKit.h -------------------------------------------------------------------------------- /Pods/MenuItemKit/MenuItemKit/Swizzlings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/MenuItemKit/Swizzlings.m -------------------------------------------------------------------------------- /Pods/MenuItemKit/MenuItemKit/Swizzlings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/MenuItemKit/Swizzlings.swift -------------------------------------------------------------------------------- /Pods/MenuItemKit/MenuItemKit/UIMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/MenuItemKit/UIMenuItem.swift -------------------------------------------------------------------------------- /Pods/MenuItemKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/MenuItemKit/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/index_set.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/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/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/results.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/util/fifo.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermissionResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncPermissionResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermissionResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncPermissionResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncPermission_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/audit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/audit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/collection_notifications.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_direct.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/chunked_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/chunked_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_backlink.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_link.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linkbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_linkbase.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linklist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_linklist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/descriptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/descriptor_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/group_shared.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/impl/clock.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/link_view_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/metrics/metrics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/olddatetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/olddatetime.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/parser/parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/query_operators.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/changeset.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/crypto.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/object_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/protocol.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/transform.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/sync/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/allocator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/backtrace.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/base64.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/cf_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/cf_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/demangle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/errno.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/flat_map.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/load_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/load_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/overload.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/parent_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/parent_dir.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/quote.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/random.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/scope_exit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/serializer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/substitute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/substitute.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/util/websocket.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/version_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_numbers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/version_numbers.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/execution_context_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/execution_context_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/results_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/keypath_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/keypath_helpers.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/async_open_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/async_open_task.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/work_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/impl/work_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/subscription_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/subscription_state.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_permission.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/sync_permission.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/thread_safe_reference.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/event_loop_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/event_loop_dispatcher.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/event_loop_signal.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/fifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/fifo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Pods/RealmSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/LICENSE -------------------------------------------------------------------------------- /Pods/RealmSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/README.md -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Error.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/LinkingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/LinkingObjects.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/List.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Object.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Property.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/RealmCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/RealmCollection.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Results.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/SwiftVersion.swift: -------------------------------------------------------------------------------- 1 | let swiftLanguageVersion = "5.8" 2 | -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Sync.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/RealmSwift/Util.swift -------------------------------------------------------------------------------- /Pods/RealmSwift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RealmSwift/build.sh -------------------------------------------------------------------------------- /Pods/RxBlocking/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxBlocking/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/README.md -------------------------------------------------------------------------------- /Pods/RxBlocking/RxBlocking/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/RxBlocking/Resources.swift -------------------------------------------------------------------------------- /Pods/RxBlocking/RxBlocking/RunLoopLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxBlocking/RxBlocking/RunLoopLock.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/README.md -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/RxTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Common/TextInput.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RX.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxRelay/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxRelay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/README.md -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/BehaviorRelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/RxRelay/BehaviorRelay.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/RxRelay/Observable+Bind.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/PublishRelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/RxRelay/PublishRelay.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/ReplayRelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/RxRelay/ReplayRelay.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxRelay/RxRelay/Utils.swift -------------------------------------------------------------------------------- /Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Binder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Binder.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Date+Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Date+Dispatch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observable+Concurrency.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/AddRef.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Amb.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsMaybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/AsSingle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Buffer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CompactMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/CompactMap.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Concat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Debounce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Decode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Decode.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Deferred.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Delay.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/ElementAt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Enumerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Enumerated.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/First.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/First.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Generate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/GroupBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/GroupBy.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Multicast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Never.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Optional.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Range.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Reduce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Repeat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Sample.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Scan.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Sequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Skip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/StartWith.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Take.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/TakeLast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Throttle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Timeout.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Timer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/ToArray.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Using.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Window.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observables/Zip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Pods/RxTest/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxTest/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /Pods/RxTest/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxTest/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxTest/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxTest/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxTest/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/README.md -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Any+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Any+Equatable.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/ColdObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/ColdObservable.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Event+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Event+Equatable.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/HotObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/HotObservable.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Recorded+Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Recorded+Event.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Recorded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Recorded.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/RxTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/RxTest.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Schedulers/TestScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Schedulers/TestScheduler.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/Subscription.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/TestableObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/TestableObservable.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/TestableObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/TestableObserver.swift -------------------------------------------------------------------------------- /Pods/RxTest/RxTest/XCTest+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/RxTest/RxTest/XCTest+Rx.swift -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDCallbackQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDCallbackQueue.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDCallbackQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDCallbackQueue.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SSZipArchive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/README.md -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/aes.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/hmac.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/hmac.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/prng.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/prng.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/sha1.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/aes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/aes/sha1.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/crypt.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/ioapi.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/unzip.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/zip.c -------------------------------------------------------------------------------- /Pods/SSZipArchive/SSZipArchive/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SSZipArchive/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /Pods/ScrollableSegmentedControl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/ScrollableSegmentedControl/LICENSE -------------------------------------------------------------------------------- /Pods/ScrollableSegmentedControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/ScrollableSegmentedControl/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/Constraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintConfig.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintDescription.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintMaker.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintPriority.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintRelation.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintView.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/Debugging.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/LayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Sources/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SnapKit/Sources/Typealiases.swift -------------------------------------------------------------------------------- /Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /Pods/SwiftyJSON/Source/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/SwiftyJSON/Source/SwiftyJSON.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/AEXML/AEXML-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AEXML/AEXML-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AEXML/AEXML-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AEXML/AEXML-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AEXML/AEXML-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AEXML/AEXML-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AEXML/AEXML-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AEXML/AEXML-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AEXML/AEXML.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AEXML/AEXML.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/AppAuth/AppAuth-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/Realm/Realm-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/Realm/Realm-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/Realm/Realm-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/RxRelay/RxRelay-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /Pods/VisualEffectView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/VisualEffectView/LICENSE -------------------------------------------------------------------------------- /Pods/VisualEffectView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/VisualEffectView/README.md -------------------------------------------------------------------------------- /Pods/Whisper/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/LICENSE.md -------------------------------------------------------------------------------- /Pods/Whisper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/README.md -------------------------------------------------------------------------------- /Pods/Whisper/Source/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/Config.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/Message.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/ShoutFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/ShoutFactory.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/Showing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/Showing.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/UIView+Extensions.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/WhisperFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/WhisperFactory.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/WhisperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/WhisperView.swift -------------------------------------------------------------------------------- /Pods/Whisper/Source/WhistleFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/Whisper/Source/WhistleFactory.swift -------------------------------------------------------------------------------- /Pods/ZFDragableModalTransition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/ZFDragableModalTransition/LICENSE -------------------------------------------------------------------------------- /Pods/ZFDragableModalTransition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/Pods/ZFDragableModalTransition/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/README.md -------------------------------------------------------------------------------- /preview/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview1.png -------------------------------------------------------------------------------- /preview/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview2.png -------------------------------------------------------------------------------- /preview/preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview3.png -------------------------------------------------------------------------------- /preview/preview4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview4.png -------------------------------------------------------------------------------- /preview/preview5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview5.png -------------------------------------------------------------------------------- /preview/preview6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhcse/EpubReader-iOS/HEAD/preview/preview6.png --------------------------------------------------------------------------------