gitextract_d9aulut5/ ├── .gitignore ├── ARChromeActivity/ │ ├── ARChromeActivity.h │ └── ARChromeActivity.m ├── CSURITemplate/ │ ├── CSURITemplate.h │ └── CSURITemplate.m ├── ECSlidingViewController/ │ ├── ECSlidingViewController.h │ ├── ECSlidingViewController.m │ ├── UIImage+ImageWithUIView.h │ └── UIImage+ImageWithUIView.m ├── FLEX/ │ ├── Editing/ │ │ ├── ArgumentInputViews/ │ │ │ ├── FLEXArgumentInputColorView.h │ │ │ ├── FLEXArgumentInputColorView.m │ │ │ ├── FLEXArgumentInputDateView.h │ │ │ ├── FLEXArgumentInputDateView.m │ │ │ ├── FLEXArgumentInputFontView.h │ │ │ ├── FLEXArgumentInputFontView.m │ │ │ ├── FLEXArgumentInputFontsPickerView.h │ │ │ ├── FLEXArgumentInputFontsPickerView.m │ │ │ ├── FLEXArgumentInputJSONObjectView.h │ │ │ ├── FLEXArgumentInputJSONObjectView.m │ │ │ ├── FLEXArgumentInputNotSupportedView.h │ │ │ ├── FLEXArgumentInputNotSupportedView.m │ │ │ ├── FLEXArgumentInputNumberView.h │ │ │ ├── FLEXArgumentInputNumberView.m │ │ │ ├── FLEXArgumentInputStringView.h │ │ │ ├── FLEXArgumentInputStringView.m │ │ │ ├── FLEXArgumentInputStructView.h │ │ │ ├── FLEXArgumentInputStructView.m │ │ │ ├── FLEXArgumentInputSwitchView.h │ │ │ ├── FLEXArgumentInputSwitchView.m │ │ │ ├── FLEXArgumentInputTextView.h │ │ │ ├── FLEXArgumentInputTextView.m │ │ │ ├── FLEXArgumentInputView.h │ │ │ ├── FLEXArgumentInputView.m │ │ │ ├── FLEXArgumentInputViewFactory.h │ │ │ └── FLEXArgumentInputViewFactory.m │ │ ├── FLEXDefaultEditorViewController.h │ │ ├── FLEXDefaultEditorViewController.m │ │ ├── FLEXFieldEditorView.h │ │ ├── FLEXFieldEditorView.m │ │ ├── FLEXFieldEditorViewController.h │ │ ├── FLEXFieldEditorViewController.m │ │ ├── FLEXIvarEditorViewController.h │ │ ├── FLEXIvarEditorViewController.m │ │ ├── FLEXMethodCallingViewController.h │ │ ├── FLEXMethodCallingViewController.m │ │ ├── FLEXPropertyEditorViewController.h │ │ └── FLEXPropertyEditorViewController.m │ ├── ExplorerInterface/ │ │ ├── FLEXExplorerViewController.h │ │ ├── FLEXExplorerViewController.m │ │ ├── FLEXWindow.h │ │ └── FLEXWindow.m │ ├── FLEX.h │ ├── FLEXManager.h │ ├── GlobalStateExplorers/ │ │ ├── DatabaseBrowser/ │ │ │ ├── FLEXDatabaseManager.h │ │ │ ├── FLEXMultiColumnTableView.h │ │ │ ├── FLEXMultiColumnTableView.m │ │ │ ├── FLEXRealmDatabaseManager.h │ │ │ ├── FLEXRealmDatabaseManager.m │ │ │ ├── FLEXRealmDefines.h │ │ │ ├── FLEXSQLiteDatabaseManager.h │ │ │ ├── FLEXSQLiteDatabaseManager.m │ │ │ ├── FLEXTableColumnHeader.h │ │ │ ├── FLEXTableColumnHeader.m │ │ │ ├── FLEXTableContentCell.h │ │ │ ├── FLEXTableContentCell.m │ │ │ ├── FLEXTableContentViewController.h │ │ │ ├── FLEXTableContentViewController.m │ │ │ ├── FLEXTableLeftCell.h │ │ │ ├── FLEXTableLeftCell.m │ │ │ ├── FLEXTableListViewController.h │ │ │ ├── FLEXTableListViewController.m │ │ │ └── LICENSE │ │ ├── FLEXClassesTableViewController.h │ │ ├── FLEXClassesTableViewController.m │ │ ├── FLEXCookiesTableViewController.h │ │ ├── FLEXCookiesTableViewController.m │ │ ├── FLEXFileBrowserFileOperationController.h │ │ ├── FLEXFileBrowserFileOperationController.m │ │ ├── FLEXFileBrowserSearchOperation.h │ │ ├── FLEXFileBrowserSearchOperation.m │ │ ├── FLEXFileBrowserTableViewController.h │ │ ├── FLEXFileBrowserTableViewController.m │ │ ├── FLEXGlobalsTableViewController.h │ │ ├── FLEXGlobalsTableViewController.m │ │ ├── FLEXInstancesTableViewController.h │ │ ├── FLEXInstancesTableViewController.m │ │ ├── FLEXLibrariesTableViewController.h │ │ ├── FLEXLibrariesTableViewController.m │ │ ├── FLEXLiveObjectsTableViewController.h │ │ ├── FLEXLiveObjectsTableViewController.m │ │ ├── FLEXObjectRef.h │ │ ├── FLEXObjectRef.m │ │ ├── FLEXWebViewController.h │ │ ├── FLEXWebViewController.m │ │ └── SystemLog/ │ │ ├── FLEXSystemLogMessage.h │ │ ├── FLEXSystemLogMessage.m │ │ ├── FLEXSystemLogTableViewCell.h │ │ ├── FLEXSystemLogTableViewCell.m │ │ ├── FLEXSystemLogTableViewController.h │ │ └── FLEXSystemLogTableViewController.m │ ├── Info.plist │ ├── Manager/ │ │ ├── FLEXManager+Private.h │ │ └── FLEXManager.m │ ├── Network/ │ │ ├── FLEXNetworkCurlLogger.h │ │ ├── FLEXNetworkCurlLogger.m │ │ ├── FLEXNetworkHistoryTableViewController.h │ │ ├── FLEXNetworkHistoryTableViewController.m │ │ ├── FLEXNetworkRecorder.h │ │ ├── FLEXNetworkRecorder.m │ │ ├── FLEXNetworkSettingsTableViewController.h │ │ ├── FLEXNetworkSettingsTableViewController.m │ │ ├── FLEXNetworkTransaction.h │ │ ├── FLEXNetworkTransaction.m │ │ ├── FLEXNetworkTransactionDetailTableViewController.h │ │ ├── FLEXNetworkTransactionDetailTableViewController.m │ │ ├── FLEXNetworkTransactionTableViewCell.h │ │ ├── FLEXNetworkTransactionTableViewCell.m │ │ └── PonyDebugger/ │ │ ├── FLEXNetworkObserver.h │ │ ├── FLEXNetworkObserver.m │ │ └── LICENSE │ ├── ObjectExplorers/ │ │ ├── FLEXArrayExplorerViewController.h │ │ ├── FLEXArrayExplorerViewController.m │ │ ├── FLEXClassExplorerViewController.h │ │ ├── FLEXClassExplorerViewController.m │ │ ├── FLEXDefaultsExplorerViewController.h │ │ ├── FLEXDefaultsExplorerViewController.m │ │ ├── FLEXDictionaryExplorerViewController.h │ │ ├── FLEXDictionaryExplorerViewController.m │ │ ├── FLEXGlobalsTableViewControllerEntry.h │ │ ├── FLEXGlobalsTableViewControllerEntry.m │ │ ├── FLEXImageExplorerViewController.h │ │ ├── FLEXImageExplorerViewController.m │ │ ├── FLEXLayerExplorerViewController.h │ │ ├── FLEXLayerExplorerViewController.m │ │ ├── FLEXObjectExplorerFactory.h │ │ ├── FLEXObjectExplorerFactory.m │ │ ├── FLEXObjectExplorerViewController.h │ │ ├── FLEXObjectExplorerViewController.m │ │ ├── FLEXSetExplorerViewController.h │ │ ├── FLEXSetExplorerViewController.m │ │ ├── FLEXViewControllerExplorerViewController.h │ │ ├── FLEXViewControllerExplorerViewController.m │ │ ├── FLEXViewExplorerViewController.h │ │ └── FLEXViewExplorerViewController.m │ ├── Toolbar/ │ │ ├── FLEXExplorerToolbar.h │ │ ├── FLEXExplorerToolbar.m │ │ ├── FLEXToolbarItem.h │ │ └── FLEXToolbarItem.m │ ├── Utility/ │ │ ├── FLEXHeapEnumerator.h │ │ ├── FLEXHeapEnumerator.m │ │ ├── FLEXKeyboardHelpViewController.h │ │ ├── FLEXKeyboardHelpViewController.m │ │ ├── FLEXKeyboardShortcutManager.h │ │ ├── FLEXKeyboardShortcutManager.m │ │ ├── FLEXMultilineTableViewCell.h │ │ ├── FLEXMultilineTableViewCell.m │ │ ├── FLEXResources.h │ │ ├── FLEXResources.m │ │ ├── FLEXRuntimeUtility.h │ │ ├── FLEXRuntimeUtility.m │ │ ├── FLEXUtility.h │ │ └── FLEXUtility.m │ └── ViewHierarchy/ │ ├── FLEXHierarchyTableViewCell.h │ ├── FLEXHierarchyTableViewCell.m │ ├── FLEXHierarchyTableViewController.h │ ├── FLEXHierarchyTableViewController.m │ ├── FLEXImagePreviewViewController.h │ └── FLEXImagePreviewViewController.m ├── IRCCloud/ │ ├── 1Password.xcassets/ │ │ ├── onepassword-button-light.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-button.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-extension-light.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-extension.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-navbar-light.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-navbar.imageset/ │ │ │ └── Contents.json │ │ ├── onepassword-toolbar-light.imageset/ │ │ │ └── Contents.json │ │ └── onepassword-toolbar.imageset/ │ │ └── Contents.json │ ├── Classes/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── AvatarsDataSource.h │ │ ├── AvatarsDataSource.m │ │ ├── AvatarsTableViewController.h │ │ ├── AvatarsTableViewController.m │ │ ├── BuffersDataSource.h │ │ ├── BuffersDataSource.m │ │ ├── BuffersTableView.h │ │ ├── BuffersTableView.m │ │ ├── CallerIDTableViewController.h │ │ ├── CallerIDTableViewController.m │ │ ├── ChannelInfoViewController.h │ │ ├── ChannelInfoViewController.m │ │ ├── ChannelListTableViewController.h │ │ ├── ChannelListTableViewController.m │ │ ├── ChannelModeListTableViewController.h │ │ ├── ChannelModeListTableViewController.m │ │ ├── ChannelsDataSource.h │ │ ├── ChannelsDataSource.m │ │ ├── CollapsedEvents.h │ │ ├── CollapsedEvents.m │ │ ├── ColorFormatter.h │ │ ├── ColorFormatter.m │ │ ├── DisplayOptionsViewController.h │ │ ├── DisplayOptionsViewController.m │ │ ├── EditConnectionViewController.h │ │ ├── EditConnectionViewController.m │ │ ├── EventsDataSource.h │ │ ├── EventsDataSource.m │ │ ├── EventsTableView.h │ │ ├── EventsTableView.m │ │ ├── FileMetadataViewController.h │ │ ├── FileMetadataViewController.m │ │ ├── FileUploader.h │ │ ├── FileUploader.m │ │ ├── FilesTableViewController.h │ │ ├── FilesTableViewController.m │ │ ├── FontAwesome.h │ │ ├── HighlightsCountView.h │ │ ├── HighlightsCountView.m │ │ ├── IRCCloudJSONObject.h │ │ ├── IRCCloudJSONObject.m │ │ ├── IRCCloudSafariViewController.h │ │ ├── IRCCloudSafariViewController.m │ │ ├── IRCColorPickerView.h │ │ ├── IRCColorPickerView.m │ │ ├── Ignore.h │ │ ├── Ignore.m │ │ ├── IgnoresTableViewController.h │ │ ├── IgnoresTableViewController.m │ │ ├── ImageCache.h │ │ ├── ImageCache.m │ │ ├── ImageViewController.h │ │ ├── ImageViewController.m │ │ ├── ImageViewController.xib │ │ ├── LicenseViewController.h │ │ ├── LicenseViewController.m │ │ ├── LinkLabel.h │ │ ├── LinkLabel.m │ │ ├── LinkTextView.h │ │ ├── LinkTextView.m │ │ ├── LinksListTableViewController.h │ │ ├── LinksListTableViewController.m │ │ ├── LogExportsTableViewController.h │ │ ├── LogExportsTableViewController.m │ │ ├── LoginSplashViewController.h │ │ ├── LoginSplashViewController.m │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── NamesListTableViewController.h │ │ ├── NamesListTableViewController.m │ │ ├── NetworkConnection.h │ │ ├── NetworkConnection.m │ │ ├── NickCompletionView.h │ │ ├── NickCompletionView.m │ │ ├── NotificationsDataSource.h │ │ ├── NotificationsDataSource.m │ │ ├── PastebinEditorViewController.h │ │ ├── PastebinEditorViewController.m │ │ ├── PastebinViewController.h │ │ ├── PastebinViewController.m │ │ ├── PastebinsTableViewController.h │ │ ├── PastebinsTableViewController.m │ │ ├── PinReorderViewController.h │ │ ├── PinReorderViewController.m │ │ ├── SamlLoginViewController.h │ │ ├── SamlLoginViewController.m │ │ ├── SendMessageIntentHandler.h │ │ ├── SendMessageIntentHandler.m │ │ ├── ServerReorderViewController.h │ │ ├── ServerReorderViewController.m │ │ ├── ServersDataSource.h │ │ ├── ServersDataSource.m │ │ ├── SettingsViewController.h │ │ ├── SettingsViewController.m │ │ ├── SpamViewController.h │ │ ├── SpamViewController.m │ │ ├── SplashViewController.h │ │ ├── SplashViewController.m │ │ ├── TextTableViewController.h │ │ ├── TextTableViewController.m │ │ ├── UIColor+IRCCloud.h │ │ ├── UIColor+IRCCloud.m │ │ ├── UIDevice+UIDevice_iPhone6Hax.h │ │ ├── UIDevice+UIDevice_iPhone6Hax.m │ │ ├── UINavigationController+iPadSux.h │ │ ├── UINavigationController+iPadSux.m │ │ ├── UITableViewController+HeaderColorFix.h │ │ ├── UITableViewController+HeaderColorFix.m │ │ ├── URLHandler.h │ │ ├── URLHandler.m │ │ ├── UsersDataSource.h │ │ ├── UsersDataSource.m │ │ ├── UsersTableView.h │ │ ├── UsersTableView.m │ │ ├── WhoListTableViewController.h │ │ ├── WhoListTableViewController.m │ │ ├── WhoWasTableViewController.h │ │ ├── WhoWasTableViewController.m │ │ ├── WhoisViewController.h │ │ ├── WhoisViewController.m │ │ ├── YouTubeViewController.h │ │ └── YouTubeViewController.m │ ├── EventsTableCell.xib │ ├── EventsTableCell_File.xib │ ├── EventsTableCell_ReplyCount.xib │ ├── EventsTableCell_Thumbnail.xib │ ├── IRCCloud-Enterprise-Info.plist │ ├── IRCCloud-Info.plist │ ├── IRCCloud-Prefix.pch │ ├── IRCCloud.entitlements │ ├── Launch.storyboard │ ├── MainStoryboard.storyboard │ ├── OnePasswordExtension.h │ ├── OnePasswordExtension.m │ ├── Resources/ │ │ ├── EnterpriseImages.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── EnterpriseLogo.xcassets/ │ │ │ └── login_logo.imageset/ │ │ │ └── Contents.json │ │ ├── FontAwesome.otf │ │ ├── Icons.xcassets/ │ │ │ ├── accept.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── login_bottom_input.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── login_button.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── login_mid_input.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── login_only_input.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── login_top_input.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── menu.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── send_fail.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── settings.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── signup_button.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── tip_bg.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── upload_arrow.imageset/ │ │ │ │ └── Contents.json │ │ │ └── users.imageset/ │ │ │ └── Contents.json │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Logo.xcassets/ │ │ │ └── login_logo.imageset/ │ │ │ └── Contents.json │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ ├── a.caf │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ └── licenses.txt │ ├── UIExpandingTextView.h │ ├── UIExpandingTextView.m │ ├── UIExpandingTextViewInternal.h │ ├── UIExpandingTextViewInternal.m │ └── main.m ├── IRCCloud.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── IRCCloud Enterprise.xcscheme │ ├── IRCCloud Mock Data.xcscheme │ └── IRCCloud.xcscheme ├── IRCCloudUnitTests/ │ ├── CollapsedEventsTests.m │ ├── Info.plist │ ├── MessageTypeTests.m │ └── URLtoBIDTests.m ├── IRCEnterprise.entitlements ├── LICENSE.txt ├── NSURL+IDN/ │ ├── NSURL+IDN.h │ └── NSURL+IDN.m ├── NotificationService/ │ ├── Info.plist │ ├── NotificationService.entitlements │ ├── NotificationService.h │ └── NotificationService.m ├── NotificationService Enterprise.entitlements ├── OpenInChrome/ │ ├── OpenInChromeController.h │ └── OpenInChromeController.m ├── OpenInFirefoxClient/ │ ├── LICENSE │ ├── OpenInFirefoxControllerObjC.h │ └── OpenInFirefoxControllerObjC.m ├── Podfile ├── README.md ├── SBJson/ │ ├── SBJson5.h │ ├── SBJson5Parser.h │ ├── SBJson5Parser.m │ ├── SBJson5StreamParser.h │ ├── SBJson5StreamParser.m │ ├── SBJson5StreamParserState.h │ ├── SBJson5StreamParserState.m │ ├── SBJson5StreamTokeniser.h │ ├── SBJson5StreamTokeniser.m │ ├── SBJson5StreamWriter.h │ ├── SBJson5StreamWriter.m │ ├── SBJson5StreamWriterState.h │ ├── SBJson5StreamWriterState.m │ ├── SBJson5Writer.h │ └── SBJson5Writer.m ├── SECURITY.md ├── ShareExtension/ │ ├── Info-Enterprise.plist │ ├── Info.plist │ ├── ShareExtension.entitlements │ ├── ShareViewController.h │ └── ShareViewController.m ├── ShareExtension Enterprise.entitlements ├── StringScore/ │ ├── NSString+Score.h │ └── NSString+Score.m ├── TUSafariActivity/ │ ├── TUSafariActivity.h │ ├── TUSafariActivity.m │ └── en.lproj/ │ └── TUSafariActivity.strings ├── TrustKit/ │ ├── Dependencies/ │ │ ├── README.md │ │ ├── RSSwizzle/ │ │ │ ├── RSSwizzle.h │ │ │ └── RSSwizzle.m │ │ └── domain_registry/ │ │ ├── domain_registry.h │ │ ├── private/ │ │ │ ├── assert.c │ │ │ ├── assert.h │ │ │ ├── init_registry_tables.c │ │ │ ├── registry_search.c │ │ │ ├── registry_types.h │ │ │ ├── string_util.h │ │ │ ├── trie_node.h │ │ │ ├── trie_search.c │ │ │ └── trie_search.h │ │ └── registry_tables_genfiles/ │ │ └── registry_tables.h │ ├── Info.plist │ ├── Pinning/ │ │ ├── public_key_utils.h │ │ ├── public_key_utils.m │ │ ├── ssl_pin_verifier.h │ │ └── ssl_pin_verifier.m │ ├── Reporting/ │ │ ├── TSKBackgroundReporter.h │ │ ├── TSKBackgroundReporter.m │ │ ├── TSKPinFailureReport.h │ │ ├── TSKPinFailureReport.m │ │ ├── TSKReportsRateLimiter.h │ │ ├── TSKReportsRateLimiter.m │ │ ├── reporting_utils.h │ │ ├── reporting_utils.m │ │ ├── vendor_identifier.h │ │ └── vendor_identifier.m │ ├── Swizzling/ │ │ ├── TSKNSURLConnectionDelegateProxy.h │ │ ├── TSKNSURLConnectionDelegateProxy.m │ │ ├── TSKNSURLSessionDelegateProxy.h │ │ └── TSKNSURLSessionDelegateProxy.m │ ├── TSKPinningValidator.h │ ├── TSKPinningValidator.m │ ├── TrustKit+Private.h │ ├── TrustKit.h │ ├── TrustKit.m │ ├── configuration_utils.h │ ├── configuration_utils.m │ ├── module.modulemap │ ├── parse_configuration.h │ └── parse_configuration.m ├── UITests/ │ ├── Info.plist │ ├── SnapshotHelper.swift │ ├── UITests-Bridging-Header.h │ └── UITests.swift ├── WebP.framework/ │ ├── Headers/ │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ └── WebP ├── WebSocket/ │ ├── AsyncSocket.h │ ├── AsyncSocket.m │ ├── HandshakeHeader.h │ ├── HandshakeHeader.m │ ├── MutableQueue.h │ ├── MutableQueue.m │ ├── NSData+Base64.h │ ├── NSData+Base64.m │ ├── UnittWebSocketClient-Prefix.pch │ ├── WebSocket.h │ ├── WebSocket.m │ ├── WebSocketConnectConfig.h │ ├── WebSocketConnectConfig.m │ ├── WebSocketFragment.h │ ├── WebSocketFragment.m │ ├── WebSocketMessage.h │ └── WebSocketMessage.m ├── YYImage/ │ ├── YYAnimatedImageView.h │ ├── YYAnimatedImageView.m │ ├── YYFrameImage.h │ ├── YYFrameImage.m │ ├── YYImage.h │ ├── YYImage.m │ ├── YYImageCoder.h │ ├── YYImageCoder.m │ ├── YYSpriteSheetImage.h │ └── YYSpriteSheetImage.m ├── build-scripts/ │ ├── BUILD │ ├── VERSION │ ├── ace-modes.js │ ├── emocode-data.js │ └── git-revision.sh └── fastlane/ ├── Fastfile ├── README.md ├── Snapfile ├── metadata/ │ ├── copyright.txt │ ├── en-US/ │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── release_notes.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_notes.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt ├── metadata-enterprise/ │ ├── copyright.txt │ ├── en-US/ │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── release_notes.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_notes.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt └── review_info.json