├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── release.md ├── sphinx.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── sphinx.xcscheme ├── sphinx.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── sphinx ├── API │ ├── API.swift │ ├── APIAttachmentsExtension.swift │ ├── APIChatsExtension.swift │ ├── APIGroupsExtension.swift │ ├── APIInviteExtension.swift │ ├── APILogsExtension.swift │ ├── APIMessagesExtension.swift │ ├── APIPodcastExtension.swift │ ├── APIRedeemSatsExtension.swift │ ├── APISubscriptionsExtension.swift │ ├── APITransactionsExtension.swift │ ├── APIUsersExtension.swift │ ├── APIVersionsExtension.swift │ └── APIWalletExtension.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024-1x.png │ │ ├── icon-20-1x.png │ │ ├── icon-20-2x-1.png │ │ ├── icon-20-2x.png │ │ ├── icon-20-3x.png │ │ ├── icon-29-1x.png │ │ ├── icon-29-2x-1.png │ │ ├── icon-29-2x.png │ │ ├── icon-29-3x.png │ │ ├── icon-40-1x.png │ │ ├── icon-40-2x-1.png │ │ ├── icon-40-2x.png │ │ ├── icon-40-3x.png │ │ ├── icon-60-2x.png │ │ ├── icon-60-3x.png │ │ ├── icon-76-1x.png │ │ ├── icon-76-2x.png │ │ └── icon-83.5-2x.png │ ├── Contents.json │ ├── sphinx │ │ ├── Contents.json │ │ ├── Groups │ │ │ ├── Contents.json │ │ │ ├── altcoinsTagIcon.imageset │ │ │ │ ├── Altcoins.png │ │ │ │ └── Contents.json │ │ │ ├── bitcoinTagIcon.imageset │ │ │ │ ├── Bitcoin.png │ │ │ │ └── Contents.json │ │ │ ├── cryptoTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Crypto.png │ │ │ ├── lightningTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Lightning.png │ │ │ ├── musicTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Music.png │ │ │ ├── podcastTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── podcast.png │ │ │ ├── sphinxTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sphinx.png │ │ │ ├── techTagIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tech.png │ │ │ └── tribePlaceholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tribe_placeholder@1x.png │ │ │ │ ├── tribe_placeholder@2x.png │ │ │ │ └── tribe_placeholder@3x.png │ │ ├── Left Menu │ │ │ ├── Contents.json │ │ │ └── logoutIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── exit_tribe_icon@1x.png │ │ │ │ ├── exit_tribe_icon@2x.png │ │ │ │ └── exit_tribe_icon@3x.png │ │ ├── Payment Templates │ │ │ ├── Contents.json │ │ │ └── noTemplate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── no_template@1x.png │ │ │ │ ├── no_template@2x.png │ │ │ │ └── no_template@3x.png │ │ ├── Splash │ │ │ ├── Contents.json │ │ │ ├── sphinxLabel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sphinx_label@1x.png │ │ │ │ ├── sphinx_label@2x.png │ │ │ │ └── sphinx_label@3x.png │ │ │ ├── splashBackground.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash_background@1x.png │ │ │ │ ├── splash_background@2x.png │ │ │ │ └── splash_background@3x.png │ │ │ └── whiteIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sphinx-white-logo@1x.png │ │ │ │ ├── sphinx-white-logo@2x.png │ │ │ │ └── sphinx-white-logo@3x.png │ │ ├── Video Call │ │ │ ├── Contents.json │ │ │ └── image-resize.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image-resize@1x.png │ │ │ │ ├── image-resize@2x.png │ │ │ │ └── image-resize@3x.png │ │ ├── attachments │ │ │ ├── Contents.json │ │ │ ├── cameraOptionIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── camera-option-icon@1x.png │ │ │ │ ├── camera-option-icon@2x.png │ │ │ │ └── camera-option-icon@3x.png │ │ │ ├── contactOptionIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contact-option-icon@1x.png │ │ │ │ ├── contact-option-icon@2x.png │ │ │ │ └── contact-option-icon@3x.png │ │ │ ├── fileOptionIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── file-option-icon@1x.png │ │ │ │ ├── file-option-icon@2x.png │ │ │ │ └── file-option-icon@3x.png │ │ │ ├── imagePreloader.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image-uploader@1x.png │ │ │ │ ├── image-uploader@2x.png │ │ │ │ └── image-uploader@3x.png │ │ │ ├── mediaOptionIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── media-option-icon@1x.png │ │ │ │ ├── media-option-icon@2x.png │ │ │ │ └── media-option-icon@3x.png │ │ │ └── paidMessageIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── paid-message-icon@1x.png │ │ │ │ ├── paid-message-icon@2x.png │ │ │ │ └── paid-message-icon@3x.png │ │ ├── bottomBar │ │ │ ├── Contents.json │ │ │ ├── bottomBar1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottom-bar-icon-1@1x.png │ │ │ │ ├── bottom-bar-icon-1@2x.png │ │ │ │ └── bottom-bar-icon-1@3x.png │ │ │ ├── bottomBar2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottom-bar-icon-2@1x.png │ │ │ │ ├── bottom-bar-icon-2@2x.png │ │ │ │ └── bottom-bar-icon-2@3x.png │ │ │ ├── bottomBar3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottom-bar-icon-3@1x.png │ │ │ │ ├── bottom-bar-icon-3@2x.png │ │ │ │ └── bottom-bar-icon-3@3x.png │ │ │ └── bottomBar4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottom-bar-icon-4@1x.png │ │ │ │ ├── bottom-bar-icon-4@2x.png │ │ │ │ └── bottom-bar-icon-4@3x.png │ │ ├── chat │ │ │ ├── Contents.json │ │ │ ├── imageFullScreenShadow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── full_screen_shadow@1x.png │ │ │ │ ├── full_screen_shadow@2x.png │ │ │ │ └── full_screen_shadow@3x.png │ │ │ ├── imageNotAvailable.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image_not_available@1x.png │ │ │ │ ├── image_not_available@2x.png │ │ │ │ └── image_not_available@3x.png │ │ │ ├── invoice-pay-button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── invoice-pay-button@1x.png │ │ │ │ ├── invoice-pay-button@2x.png │ │ │ │ └── invoice-pay-button@3x.png │ │ │ ├── invoice-receive-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── invoice-received-icon@1x.png │ │ │ │ ├── invoice-received-icon@2x.png │ │ │ │ └── invoice-received-icon@3x.png │ │ │ ├── muteOffIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mute_off@1x.png │ │ │ │ ├── mute_off@2x.png │ │ │ │ └── mute_off@3x.png │ │ │ ├── muteOnIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mute_on@1x.png │ │ │ │ ├── mute_on@2x.png │ │ │ │ └── mute_on@3x.png │ │ │ ├── profile_avatar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── profileAvatar@1x-1.png │ │ │ │ ├── profileAvatar@1x-2.png │ │ │ │ ├── profileAvatar@1x.png │ │ │ │ ├── profileAvatar@2x-1.png │ │ │ │ ├── profileAvatar@2x-2.png │ │ │ │ ├── profileAvatar@2x.png │ │ │ │ ├── profileAvatar@3x-1.png │ │ │ │ ├── profileAvatar@3x-2.png │ │ │ │ └── profileAvatar@3x.png │ │ │ ├── qr_code.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── invoice-qr-code@1x.png │ │ │ │ ├── invoice-qr-code@2x.png │ │ │ │ └── invoice-qr-code@3x.png │ │ │ └── splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash@1x.png │ │ │ │ ├── splash@2x.png │ │ │ │ └── splash@3x.png │ │ ├── contacts │ │ │ ├── Contents.json │ │ │ ├── addContactIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_contact@1x.png │ │ │ │ ├── add_contact@2x.png │ │ │ │ └── add_contact@3x.png │ │ │ ├── profileImageIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── profile_image_icon@1x.png │ │ │ │ ├── profile_image_icon@2x.png │ │ │ │ └── profile_image_icon@3x.png │ │ │ └── shadowWithoutLine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shadow_without_line.png │ │ │ │ ├── shadow_without_line@2x.png │ │ │ │ └── shadow_without_line@3x.png │ │ ├── invite │ │ │ ├── Contents.json │ │ │ ├── defaultAvatar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── profile_avatar@1x.png │ │ │ │ ├── profile_avatar@2x.png │ │ │ │ └── profile_avatar@3x.png │ │ │ ├── inviteQrCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── invite_qr_code@1x.png │ │ │ │ ├── invite_qr_code@2x.png │ │ │ │ └── invite_qr_code@3x.png │ │ │ ├── scannerIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── scanner_icon@1x.png │ │ │ │ ├── scanner_icon@2x.png │ │ │ │ └── scanner_icon@3x.png │ │ │ ├── shareIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_icon@1x.png │ │ │ │ ├── share_icon@2x.png │ │ │ │ └── share_icon@3x.png │ │ │ └── tapToCopy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tap_to_copy@1x.png │ │ │ │ ├── tap_to_copy@2x.png │ │ │ │ └── tap_to_copy@3x.png │ │ ├── podcast │ │ │ ├── Contents.json │ │ │ ├── back15Icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── prev15@1x.png │ │ │ │ ├── prev15@2x.png │ │ │ │ └── prev15@3x.png │ │ │ ├── boostIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── boost_icon@1x.png │ │ │ │ ├── boost_icon@2x.png │ │ │ │ └── boost_icon@3x.png │ │ │ ├── boostIconGreen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── boost_icon_green@1x.png │ │ │ │ ├── boost_icon_green@2x.png │ │ │ │ └── boost_icon_green@3x.png │ │ │ ├── clipIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── clipIcon@1x.png │ │ │ │ ├── clipIcon@2x.png │ │ │ │ └── clipIcon@3x.png │ │ │ ├── forw30Icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── back30@1x.png │ │ │ │ ├── back30@2x.png │ │ │ │ └── back30@3x.png │ │ │ └── shareAudioClip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share-audio-clip@1x.png │ │ │ │ ├── share-audio-clip@2x.png │ │ │ │ └── share-audio-clip@3x.png │ │ ├── profile │ │ │ ├── Contents.json │ │ │ └── walletIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── new_wallet@1x.png │ │ │ │ ├── new_wallet@2x.png │ │ │ │ └── new_wallet@3x.png │ │ ├── swipableCell │ │ │ ├── Contents.json │ │ │ └── deleteIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_delete.png │ │ │ │ ├── icon_delete@2x.png │ │ │ │ └── icon_delete@3x.png │ │ └── transactions │ │ │ ├── Contents.json │ │ │ ├── cashAppIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── cash_app-1.png │ │ │ ├── cash_app-2.png │ │ │ └── cash_app.png │ │ │ ├── payment-received-arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── transaction-payment-received@1x.png │ │ │ ├── transaction-payment-received@2x.png │ │ │ └── transaction-payment-received@3x.png │ │ │ ├── payment-sent-arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── transaction-payment-sent@1x.png │ │ │ ├── transaction-payment-sent@2x.png │ │ │ └── transaction-payment-sent@3x.png │ │ │ └── transaction-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── transaction-icon@1x.png │ │ │ ├── transaction-icon@2x.png │ │ │ └── transaction-icon@3x.png │ └── splash-screen.imageset │ │ ├── Contents.json │ │ ├── splash@1x.png │ │ ├── splash@2x.png │ │ └── splash@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Colors.xcassets │ ├── Contents.json │ └── Sphinx │ │ ├── AddressBookHeader.colorset │ │ └── Contents.json │ │ ├── AuthorizeModalBack.colorset │ │ └── Contents.json │ │ ├── BadgeRed.colorset │ │ └── Contents.json │ │ ├── BlueTextAccent.colorset │ │ └── Contents.json │ │ ├── Body.colorset │ │ └── Contents.json │ │ ├── BodyInverted.colorset │ │ └── Contents.json │ │ ├── BubbleShadow.colorset │ │ └── Contents.json │ │ ├── ChatListSelected.colorset │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DashboardHeader.colorset │ │ └── Contents.json │ │ ├── DashboardSearch.colorset │ │ └── Contents.json │ │ ├── DashboardWashedOutText.colorset │ │ └── Contents.json │ │ ├── Divider.colorset │ │ └── Contents.json │ │ ├── ExpiredInvoice.colorset │ │ └── Contents.json │ │ ├── GreenBorder.colorset │ │ └── Contents.json │ │ ├── HeaderBG.colorset │ │ └── Contents.json │ │ ├── LightBG.colorset │ │ └── Contents.json │ │ ├── LightDivider.colorset │ │ └── Contents.json │ │ ├── LinkReceivedButtonColor.colorset │ │ └── Contents.json │ │ ├── LinkReceivedColor.colorset │ │ └── Contents.json │ │ ├── LinkSentButtonColor.colorset │ │ └── Contents.json │ │ ├── LinkSentColor.colorset │ │ └── Contents.json │ │ ├── ListBG.colorset │ │ └── Contents.json │ │ ├── MainBottomIcons.colorset │ │ └── Contents.json │ │ ├── MessageOptionDivider.colorset │ │ └── Contents.json │ │ ├── OldReceivedMsgBG.colorset │ │ └── Contents.json │ │ ├── OldSentMsgBG.colorset │ │ └── Contents.json │ │ ├── PlaceholderText.colorset │ │ └── Contents.json │ │ ├── PrimaryBlue.colorset │ │ └── Contents.json │ │ ├── PrimaryBlueBorder.colorset │ │ └── Contents.json │ │ ├── PrimaryBlueFontColor.colorset │ │ └── Contents.json │ │ ├── PrimaryGreen.colorset │ │ └── Contents.json │ │ ├── PrimaryRed.colorset │ │ └── Contents.json │ │ ├── PrimaryText.colorset │ │ └── Contents.json │ │ ├── ProfileBG.colorset │ │ └── Contents.json │ │ ├── ReceivedBubbleBorder.colorset │ │ └── Contents.json │ │ ├── ReceivedIcon.colorset │ │ └── Contents.json │ │ ├── ReceivedMsgBG.colorset │ │ └── Contents.json │ │ ├── ReplyDividerReceived.colorset │ │ └── Contents.json │ │ ├── ReplyDividerSent.colorset │ │ └── Contents.json │ │ ├── SecondaryRed.colorset │ │ └── Contents.json │ │ ├── SecondaryText.colorset │ │ └── Contents.json │ │ ├── SecondaryTextInverted.colorset │ │ └── Contents.json │ │ ├── SecondaryTextSent.colorset │ │ └── Contents.json │ │ ├── SemitransparentText.colorset │ │ └── Contents.json │ │ ├── SentBubbleBorder.colorset │ │ └── Contents.json │ │ ├── SentMsgBG.colorset │ │ └── Contents.json │ │ ├── Shadow.colorset │ │ └── Contents.json │ │ ├── Text.colorset │ │ └── Contents.json │ │ ├── TextInverted.colorset │ │ └── Contents.json │ │ ├── TextMessages.colorset │ │ └── Contents.json │ │ ├── TransactionBG.colorset │ │ └── Contents.json │ │ ├── TransactionBGBorder.colorset │ │ └── Contents.json │ │ ├── WashedOutGreen.colorset │ │ └── Contents.json │ │ ├── WashedOutReceivedText.colorset │ │ └── Contents.json │ │ ├── WashedOutSentText.colorset │ │ └── Contents.json │ │ └── sphinxOrange.colorset │ │ └── Contents.json ├── Configuration │ ├── Constants.swift │ └── UserData.swift ├── Coordinators │ └── MainCoordinator.swift ├── Core Data │ ├── Chat │ │ ├── Chat+CoreDataClass.swift │ │ ├── Chat+CoreDataProperties.swift │ │ └── ChatChatListExtension.swift │ ├── CoreDataManager.swift │ ├── NSManagedObjectContext.swift │ ├── Subscription+CoreDataClass.swift │ ├── Subscription+CoreDataProperties.swift │ ├── TransactionMessage │ │ ├── TransactionMessage+CoreDataClass.swift │ │ ├── TransactionMessage+CoreDataProperties.swift │ │ ├── TransactionMessageInfoGetterExtension.swift │ │ ├── TransactionMessageMediaExtension.swift │ │ ├── TransactionMessageParamsExtension.swift │ │ └── TransactionMessageQueriesExtension.swift │ ├── UserContact │ │ ├── UserContact+CoreDataClass.swift │ │ ├── UserContact+CoreDataProperties.swift │ │ └── UserContactChatListExtension.swift │ ├── UserInvite+CoreDataClass.swift │ ├── UserInvite+CoreDataProperties.swift │ └── sphinx.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── sphinx 10.xcdatamodel │ │ └── contents │ │ ├── sphinx 11.xcdatamodel │ │ └── contents │ │ ├── sphinx 12.xcdatamodel │ │ └── contents │ │ ├── sphinx 13.xcdatamodel │ │ └── contents │ │ ├── sphinx 14.xcdatamodel │ │ └── contents │ │ ├── sphinx 15.xcdatamodel │ │ └── contents │ │ ├── sphinx 16.xcdatamodel │ │ └── contents │ │ ├── sphinx 17.xcdatamodel │ │ └── contents │ │ ├── sphinx 18.xcdatamodel │ │ └── contents │ │ ├── sphinx 19.xcdatamodel │ │ └── contents │ │ ├── sphinx 2.xcdatamodel │ │ └── contents │ │ ├── sphinx 20.xcdatamodel │ │ └── contents │ │ ├── sphinx 21.xcdatamodel │ │ └── contents │ │ ├── sphinx 22.xcdatamodel │ │ └── contents │ │ ├── sphinx 23.xcdatamodel │ │ └── contents │ │ ├── sphinx 24.xcdatamodel │ │ └── contents │ │ ├── sphinx 25.xcdatamodel │ │ └── contents │ │ ├── sphinx 26.xcdatamodel │ │ └── contents │ │ ├── sphinx 27.xcdatamodel │ │ └── contents │ │ ├── sphinx 28.xcdatamodel │ │ └── contents │ │ ├── sphinx 3.xcdatamodel │ │ └── contents │ │ ├── sphinx 4.xcdatamodel │ │ └── contents │ │ ├── sphinx 5.xcdatamodel │ │ └── contents │ │ ├── sphinx 6.xcdatamodel │ │ └── contents │ │ ├── sphinx 7.xcdatamodel │ │ └── contents │ │ ├── sphinx 8.xcdatamodel │ │ └── contents │ │ ├── sphinx 9.xcdatamodel │ │ └── contents │ │ └── sphinx.xcdatamodel │ │ └── contents ├── Custom Classes │ ├── AlignedCollectionViewFlowLayout.swift │ ├── BotWebView.swift │ ├── CachingPlayerItem.swift │ ├── CustomImageScrollView.swift │ ├── CustomPipViewCoordinator.swift │ ├── CustomSwiftLinkPreview.swift │ ├── IntermitentAlphaAnimatedView.swift │ ├── LinkPreviewUIImage.swift │ ├── LogarithmicSlider.swift │ ├── SphinxCache.swift │ └── TouchUpGestureRecognizer.swift ├── Extensions │ ├── AVAudioSession.swift │ ├── CGFloat.swift │ ├── Data.swift │ ├── Date.swift │ ├── Int.swift │ ├── JSON.swift │ ├── LAContext.swift │ ├── Notification.Name.swift │ ├── String.swift │ ├── UIApplication.swift │ ├── UIButton.swift │ ├── UICollectionView.swift │ ├── UIColor.swift │ ├── UIDevice.swift │ ├── UIFont.swift │ ├── UIImage.swift │ ├── UILabel.swift │ ├── UITableView.swift │ ├── UITableViewCell.swift │ ├── UITapGestureRecognizer.swift │ ├── UIView.swift │ ├── UIViewController.swift │ ├── UIWindow.swift │ ├── URL.swift │ ├── URLResponse.swift │ └── UserDefaults.swift ├── Generated │ └── StoryboardScenes.swift ├── Helpers │ ├── AlertHelper.swift │ ├── Audio │ │ ├── AudioPlayerHelper.swift │ │ ├── AudioRecorderHelper.swift │ │ ├── CustomAudioPlayer.swift │ │ ├── NotificationSoundHelper.swift │ │ ├── PodcastRowAudioPlayer.swift │ │ └── PodcastRowPlayerHelper.swift │ ├── BiometricAuthenticationHelper.swift │ ├── CameraHelper.swift │ ├── ClipboardHelper.swift │ ├── ConnectivityHelper.swift │ ├── DeepLinksHandlerHelper.swift │ ├── DelayPerformertHelper.swift │ ├── EmailHelper.swift │ ├── KeyboardHelper.swift │ ├── LoadingWheelHelper.swift │ ├── MediaDownloader.swift │ ├── MediaLoader.swift │ ├── MetaDataCache.swift │ ├── NewMessageBubbleHelper.swift │ ├── PaymentRequestDecoder.swift │ ├── PlayAudioHelper.swift │ ├── RelayURLUpdateHelper.swift │ ├── SignupHelper.swift │ └── VideoCallHelper.swift ├── Info.plist ├── Libraries Extensions │ └── SocketIO │ │ ├── Ack │ │ ├── SocketAckEmitter.swift │ │ └── SocketAckManager.swift │ │ ├── Client │ │ ├── SocketAnyEvent.swift │ │ ├── SocketEventHandler.swift │ │ ├── SocketIOClient.swift │ │ ├── SocketIOClientConfiguration.swift │ │ ├── SocketIOClientOption.swift │ │ ├── SocketIOClientSpec.swift │ │ ├── SocketIOStatus.swift │ │ └── SocketRawView.swift │ │ ├── Engine │ │ ├── SocketEngine.swift │ │ ├── SocketEngineClient.swift │ │ ├── SocketEnginePacketType.swift │ │ ├── SocketEnginePollable.swift │ │ ├── SocketEngineSpec.swift │ │ └── SocketEngineWebsocket.swift │ │ ├── Manager │ │ ├── SocketManager.swift │ │ └── SocketManagerSpec.swift │ │ ├── Parse │ │ ├── SocketPacket.swift │ │ └── SocketParsable.swift │ │ └── Util │ │ ├── SSLSecurity.swift │ │ ├── SocketExtensions.swift │ │ ├── SocketLogger.swift │ │ ├── SocketStringReader.swift │ │ └── SocketTypes.swift ├── Managers │ ├── Attachments │ │ ├── AttachmentObject.swift │ │ ├── AttachmentsManager.swift │ │ └── ImagePickerManager.swift │ ├── Giphy │ │ └── GiphyHelper.swift │ ├── Groups │ │ ├── GroupsManager.swift │ │ └── GroupsPinManager.swift │ ├── Keychain │ │ └── KeychainManager.swift │ ├── Messages Encryption │ │ ├── EncryptionManager.swift │ │ └── SymmetricEncryptionManager.swift │ ├── Tor │ │ ├── OnionManager.swift │ │ └── SphinxOnionConnector.swift │ ├── Video Call │ │ └── VideoCallManager.swift │ ├── Websocket │ │ └── SphinxSocketManager.swift │ └── Windows │ │ └── WindowsManager.swift ├── Scenes │ ├── Chat │ │ ├── Base.lproj │ │ │ └── Chat.storyboard │ │ ├── Chat Models │ │ │ ├── ChatListViewModel.swift │ │ │ └── ChatViewModel.swift │ │ ├── Chat Objects │ │ │ ├── ChatListCommonObject.swift │ │ │ ├── ChatsHistory.swift │ │ │ └── TransactionMessageRow.swift │ │ ├── Custom Views │ │ │ ├── Amount Key Pad Views │ │ │ │ ├── NewKeyPadView.swift │ │ │ │ └── NewKeyPadView.xib │ │ │ ├── Audio Views │ │ │ │ ├── AudioRecordingTooltip.swift │ │ │ │ └── AudioRecordingTooltip.xib │ │ │ ├── Boosting Messages │ │ │ │ ├── MessageBoostView.swift │ │ │ │ └── MessageBoostView.xib │ │ │ ├── Bubble Views │ │ │ │ ├── AudioBubbleView.swift │ │ │ │ ├── AudioBubbleView.xib │ │ │ │ ├── CommonBubbleView.swift │ │ │ │ ├── FileBubbleView.swift │ │ │ │ ├── FileBubbleView.xib │ │ │ │ ├── LinkPreviewBubbleView.swift │ │ │ │ ├── MessageBubbleView.swift │ │ │ │ ├── MessageBubbleView.xib │ │ │ │ ├── PaymentInvoiceView.swift │ │ │ │ ├── PaymentInvoiceView.xib │ │ │ │ ├── PictureBubbleView.swift │ │ │ │ ├── PictureBubbleView.xib │ │ │ │ ├── VideoCallBubbleView.swift │ │ │ │ └── VideoCallBubbleView.xib │ │ │ ├── Chat Avatar View │ │ │ │ ├── ChatAvatarView.swift │ │ │ │ └── ChatAvatarView.xib │ │ │ ├── Chat │ │ │ │ ├── ChatHeaderView.swift │ │ │ │ ├── ChatHeaderView.xib │ │ │ │ ├── ChatListHeader.swift │ │ │ │ └── ChatListHeader.xib │ │ │ ├── Gif Support Views │ │ │ │ ├── GifOverlayView.swift │ │ │ │ └── GifOverlayView.xib │ │ │ ├── Keyboard Accessory Views │ │ │ │ ├── Base.lproj │ │ │ │ │ └── ChatAccessoryView.xib │ │ │ │ ├── ChatAccessoryView.swift │ │ │ │ ├── ChatAccessoryViewDelegateExtension.swift │ │ │ │ ├── en.lproj │ │ │ │ │ └── ChatAccessoryView.strings │ │ │ │ └── es.lproj │ │ │ │ │ └── ChatAccessoryView.strings │ │ │ ├── Link Preview Views │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── ContactLinkPreviewView.xib │ │ │ │ │ └── TribeLinkPreviewView.xib │ │ │ │ ├── ContactLinkPreviewView.swift │ │ │ │ ├── LinkPreviewView.swift │ │ │ │ ├── LinkPreviewView.xib │ │ │ │ ├── TribeLinkPreviewView.swift │ │ │ │ ├── en.lproj │ │ │ │ │ ├── ContactLinkPreviewView.strings │ │ │ │ │ └── TribeLinkPreviewView.strings │ │ │ │ └── es.lproj │ │ │ │ │ ├── ContactLinkPreviewView.strings │ │ │ │ │ └── TribeLinkPreviewView.strings │ │ │ ├── Media Full Screen Views │ │ │ │ ├── FullScreenImageView.swift │ │ │ │ └── FullScreenImageView.xib │ │ │ ├── Message Options │ │ │ │ ├── MessageOptionView.swift │ │ │ │ ├── MessageOptionView.xib │ │ │ │ └── MessageOptionsView.swift │ │ │ ├── Message Reply │ │ │ │ ├── MessageReplyView.swift │ │ │ │ └── MessageReplyView.xib │ │ │ ├── PDF │ │ │ │ ├── FileInfoView.swift │ │ │ │ └── FileInfoView.xib │ │ │ ├── Paid Attachments │ │ │ │ ├── AttachmentPriceView.swift │ │ │ │ ├── AttachmentPriceView.xib │ │ │ │ ├── Base.lproj │ │ │ │ │ └── PaidAttachmentView.xib │ │ │ │ ├── PaidAttachmentView.swift │ │ │ │ ├── en.lproj │ │ │ │ │ └── PaidAttachmentView.strings │ │ │ │ └── es.lproj │ │ │ │ │ └── PaidAttachmentView.strings │ │ │ └── Video Call Views │ │ │ │ ├── Base.lproj │ │ │ │ └── JoinVideoCallView.xib │ │ │ │ ├── JoinVideoCallView.swift │ │ │ │ ├── VideoCallPayButton.swift │ │ │ │ ├── VideoCallPayButton.xib │ │ │ │ ├── en.lproj │ │ │ │ └── JoinVideoCallView.strings │ │ │ │ └── es.lproj │ │ │ │ └── JoinVideoCallView.strings │ │ ├── Data Sources │ │ │ ├── ChatDataSource.swift │ │ │ ├── ChatListDataSource.swift │ │ │ └── Payment Templates │ │ │ │ └── PaymentTemplatesDataSource.swift │ │ ├── Helpers │ │ │ └── ChatHelper.swift │ │ ├── Table View Cells │ │ │ ├── Chat List │ │ │ │ ├── AddContactTableViewCell.swift │ │ │ │ ├── AddContactTableViewCell.xib │ │ │ │ ├── ChatListTableViewCell.swift │ │ │ │ └── ChatListTableViewCell.xib │ │ │ ├── Chat │ │ │ │ ├── Common │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LoadingMoreTableViewCell.xib │ │ │ │ │ ├── ChatTableCellProtocols.swift │ │ │ │ │ ├── CommonAudioTableViewCell.swift │ │ │ │ │ ├── CommonChatTableViewCell.swift │ │ │ │ │ ├── CommonDeletedMessageTableViewCell.swift │ │ │ │ │ ├── CommonDirectPaymentTableViewCell.swift │ │ │ │ │ ├── CommonFileTableViewCell.swift │ │ │ │ │ ├── CommonPaidMessageTableViewCell.swift │ │ │ │ │ ├── CommonPictureTableViewCell.swift │ │ │ │ │ ├── CommonPodcastBoostTableViewCell.swift │ │ │ │ │ ├── CommonPodcastCommentTableViewCell.swift │ │ │ │ │ ├── CommonReplyTableViewCell.swift │ │ │ │ │ ├── CommonVideoCallTableViewCell.swift │ │ │ │ │ ├── CommonVideoTableViewCell.swift │ │ │ │ │ ├── ExpiredInvoiceCommonTableViewCell.swift │ │ │ │ │ ├── InvoiceCommonChatTableViewCell.swift │ │ │ │ │ ├── LoadingMoreTableViewCell.swift │ │ │ │ │ ├── SwipableReplyCell.swift │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── LoadingMoreTableViewCell.strings │ │ │ │ │ └── es.lproj │ │ │ │ │ │ └── LoadingMoreTableViewCell.strings │ │ │ │ ├── Groups │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── GroupActionMessageTableViewCell.xib │ │ │ │ │ │ └── GroupRemovedTableViewCell.xib │ │ │ │ │ ├── CommonGroupActionTableViewCell.swift │ │ │ │ │ ├── GroupActionMessageTableViewCell.swift │ │ │ │ │ ├── GroupRemovedTableViewCell.swift │ │ │ │ │ ├── GroupRequestTableViewCell.swift │ │ │ │ │ ├── GroupRequestTableViewCell.xib │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── GroupLeaveTableViewCell.strings │ │ │ │ │ │ └── GroupRemovedTableViewCell.strings │ │ │ │ │ └── es.lproj │ │ │ │ │ │ ├── GroupLeaveTableViewCell.strings │ │ │ │ │ │ └── GroupRemovedTableViewCell.strings │ │ │ │ ├── Headers │ │ │ │ │ ├── DayHeaderTableViewCell.swift │ │ │ │ │ └── DayHeaderTableViewCell.xib │ │ │ │ ├── Received │ │ │ │ │ ├── AudioReceivedTableViewCell.swift │ │ │ │ │ ├── AudioReceivedTableViewCell.xib │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── DeletedMessageReceivedTableViewCell.xib │ │ │ │ │ │ ├── ExpiredInvoiceReceivedTableViewCell.xib │ │ │ │ │ │ └── InvoiceReceivedTableViewCell.xib │ │ │ │ │ ├── DeletedMessageReceivedTableViewCell.swift │ │ │ │ │ ├── DirectPaymentReceivedTableViewCell.swift │ │ │ │ │ ├── DirectPaymentReceivedTableViewCell.xib │ │ │ │ │ ├── ExpiredInvoiceReceivedTableViewCell.swift │ │ │ │ │ ├── FileReceivedTableViewCell.swift │ │ │ │ │ ├── FileReceivedTableViewCell.xib │ │ │ │ │ ├── InvoiceReceivedTableViewCell.swift │ │ │ │ │ ├── MessageReceivedTableViewCell.swift │ │ │ │ │ ├── MessageReceivedTableViewCell.xib │ │ │ │ │ ├── MessageWebViewTableViewCell.swift │ │ │ │ │ ├── MessageWebViewTableViewCell.xib │ │ │ │ │ ├── PaidInvoiceReceivedTableViewCell.swift │ │ │ │ │ ├── PaidInvoiceReceivedTableViewCell.xib │ │ │ │ │ ├── PaidMessageReceivedTableViewCell.swift │ │ │ │ │ ├── PaidMessageReceivedTableViewCell.xib │ │ │ │ │ ├── PaymentReceivedTableViewCell.swift │ │ │ │ │ ├── PaymentReceivedTableViewCell.xib │ │ │ │ │ ├── PictureReceivedTableViewCell.swift │ │ │ │ │ ├── PictureReceivedTableViewCell.xib │ │ │ │ │ ├── PodcastBoostReceivedTableViewCell.swift │ │ │ │ │ ├── PodcastBoostReceivedTableViewCell.xib │ │ │ │ │ ├── PodcastCommentReceivedTableViewCell.swift │ │ │ │ │ ├── PodcastCommentReceivedTableViewCell.xib │ │ │ │ │ ├── VideoCallReceivedTableViewCell.swift │ │ │ │ │ ├── VideoCallReceivedTableViewCell.xib │ │ │ │ │ ├── VideoReceivedTableViewCell.swift │ │ │ │ │ ├── VideoReceivedTableViewCell.xib │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── DeletedMessageReceivedTableViewCell.strings │ │ │ │ │ │ ├── ExpiredInvoiceReceivedTableViewCell.strings │ │ │ │ │ │ └── InvoiceReceivedTableViewCell.strings │ │ │ │ │ └── es.lproj │ │ │ │ │ │ ├── DeletedMessageReceivedTableViewCell.strings │ │ │ │ │ │ ├── ExpiredInvoiceReceivedTableViewCell.strings │ │ │ │ │ │ └── InvoiceReceivedTableViewCell.strings │ │ │ │ └── Sent │ │ │ │ │ ├── AudioSentTableViewCell.swift │ │ │ │ │ ├── AudioSentTableViewCell.xib │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── DeletedMessageSentTableViewCell.xib │ │ │ │ │ └── ExpiredInvoiceSentTableViewCell.xib │ │ │ │ │ ├── DeletedMessageSentTableViewCell.swift │ │ │ │ │ ├── DirectPaymentSentTableViewCell.swift │ │ │ │ │ ├── DirectPaymentSentTableViewCell.xib │ │ │ │ │ ├── ExpiredInvoiceSentTableViewCell.swift │ │ │ │ │ ├── FileSentTableViewCell.swift │ │ │ │ │ ├── FileSentTableViewCell.xib │ │ │ │ │ ├── InvoiceSentTableViewCell.swift │ │ │ │ │ ├── InvoiceSentTableViewCell.xib │ │ │ │ │ ├── MessageSentTableViewCell.swift │ │ │ │ │ ├── MessageSentTableViewCell.xib │ │ │ │ │ ├── PaidInvoiceSentTableViewCell.swift │ │ │ │ │ ├── PaidInvoiceSentTableViewCell.xib │ │ │ │ │ ├── PaidMessageSentTableViewCell.swift │ │ │ │ │ ├── PaidMessageSentTableViewCell.xib │ │ │ │ │ ├── PaymentSentTableViewCell.swift │ │ │ │ │ ├── PaymentSentTableViewCell.xib │ │ │ │ │ ├── PictureSentTableViewCell.swift │ │ │ │ │ ├── PictureSentTableViewCell.xib │ │ │ │ │ ├── PodcastBoostSentTableViewCell.swift │ │ │ │ │ ├── PodcastBoostSentTableViewCell.xib │ │ │ │ │ ├── PodcastCommentSentTableViewCell.swift │ │ │ │ │ ├── PodcastCommentSentTableViewCell.xib │ │ │ │ │ ├── VideoCallSentTableViewCell.swift │ │ │ │ │ ├── VideoCallSentTableViewCell.xib │ │ │ │ │ ├── VideoSentTableViewCell.swift │ │ │ │ │ ├── VideoSentTableViewCell.xib │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── DeletedMessageSentTableViewCell.strings │ │ │ │ │ ├── ExpiredInvoiceSentTableViewCell.strings │ │ │ │ │ └── InvoiceSentTableViewCell.strings │ │ │ │ │ └── es.lproj │ │ │ │ │ ├── DeletedMessageSentTableViewCell.strings │ │ │ │ │ ├── ExpiredInvoiceSentTableViewCell.strings │ │ │ │ │ └── InvoiceSentTableViewCell.strings │ │ │ └── Payment Templates │ │ │ │ ├── PaymentTemplateCollectionViewCell.swift │ │ │ │ └── PaymentTemplateCollectionViewCell.xib │ │ ├── View Controllers │ │ │ ├── Chat Attachment │ │ │ │ ├── AVViewController.swift │ │ │ │ ├── AttachmentPriceViewController.swift │ │ │ │ ├── ChatAttachmentViewController.swift │ │ │ │ ├── ChatAttachmentViewControllerExtension.swift │ │ │ │ ├── ImageFullScreenViewController.swift │ │ │ │ └── PaidMessagePreviewViewController.swift │ │ │ ├── Chat List │ │ │ │ ├── ChatListDelegatesExtension.swift │ │ │ │ ├── ChatListViewController.swift │ │ │ │ └── ChatListViewLogicExtension.swift │ │ │ ├── Chat │ │ │ │ ├── ChatViewController.swift │ │ │ │ ├── ChatViewControllerAttachmentDelegateExtension.swift │ │ │ │ ├── ChatViewControllerDelegates.swift │ │ │ │ ├── ChatViewControllerPodcastExtension.swift │ │ │ │ └── ChatViewControllerVideoCallExtension.swift │ │ │ ├── Common │ │ │ │ ├── CommonPaymentViewController.swift │ │ │ │ └── OrientationHandlerViewController.swift │ │ │ ├── CreateInvoiceViewController.swift │ │ │ ├── KeyboardEventsViewController.swift │ │ │ ├── KeyboardHandlerViewController.swift │ │ │ ├── MessageOptionsViewController.swift │ │ │ ├── PayInvoiceViewController.swift │ │ │ └── PaymentTemplateViewController.swift │ │ ├── en.lproj │ │ │ └── Chat.strings │ │ └── es.lproj │ │ │ └── Chat.strings │ ├── Contacts │ │ ├── AddressBookViewController.swift │ │ ├── Base.lproj │ │ │ └── Contacts.storyboard │ │ ├── Custom Views │ │ │ ├── AddressBookHeaderView.swift │ │ │ ├── AddressBookHeaderView.xib │ │ │ ├── Base.lproj │ │ │ │ └── GroupPinView.xib │ │ │ ├── GroupPinView.swift │ │ │ ├── en.lproj │ │ │ │ └── GroupPinView.strings │ │ │ └── es.lproj │ │ │ │ └── GroupPinView.strings │ │ ├── Data Sources │ │ │ └── AddressBookDataSource.swift │ │ ├── NewContactDelegatesExtension.swift │ │ ├── NewContactViewController.swift │ │ ├── Table View Cells │ │ │ ├── ContactTableViewCell.swift │ │ │ ├── ContactTableViewCell.xib │ │ │ └── SwipableCell.swift │ │ ├── en.lproj │ │ │ └── Contacts.strings │ │ └── es.lproj │ │ │ └── Contacts.strings │ ├── Groups │ │ ├── Base.lproj │ │ │ └── Groups.storyboard │ │ ├── Common │ │ │ └── CommonGroupContactsViewController.swift │ │ ├── Custom Views │ │ │ ├── PodcastSatsView.swift │ │ │ └── PodcastSatsView.xib │ │ ├── Data Sources │ │ │ ├── GroupAddedContactsDataSource.swift │ │ │ ├── GroupAllContactsDataSource.swift │ │ │ └── GroupMembersDataSource.swift │ │ ├── GroupContactsViewController.swift │ │ ├── GroupDetailsViewController.swift │ │ ├── GroupNameViewController.swift │ │ ├── GroupPaymentViewController.swift │ │ ├── Public Groups │ │ │ ├── Custom Views │ │ │ │ ├── Base.lproj │ │ │ │ │ └── TribeMemberInfoView.xib │ │ │ │ ├── GroupTagView.swift │ │ │ │ ├── GroupTagView.xib │ │ │ │ ├── TribeMemberInfoView.swift │ │ │ │ ├── en.lproj │ │ │ │ │ └── TribeMemberInfoView.strings │ │ │ │ └── es.lproj │ │ │ │ │ └── TribeMemberInfoView.strings │ │ │ ├── Data Sources │ │ │ │ └── TagsAddedDataSource.swift │ │ │ ├── GroupTagsViewController.swift │ │ │ ├── JoinGroupDetailsViewController.swift │ │ │ ├── NewPublicGroupViewController.swift │ │ │ ├── NewPublicGroupViewControllerExtension.swift │ │ │ └── Table View Cells │ │ │ │ ├── GroupTagCollectionViewCell.swift │ │ │ │ ├── GroupTagCollectionViewCell.xib │ │ │ │ ├── GroupTagTableViewCell.swift │ │ │ │ └── GroupTagTableViewCell.xib │ │ ├── View Cells │ │ │ ├── GroupAddMemberTableViewCell.swift │ │ │ ├── GroupAddMemberTableViewCell.xib │ │ │ ├── GroupContactCollectionViewCell.swift │ │ │ ├── GroupContactCollectionViewCell.xib │ │ │ ├── GroupContactTableViewCell.swift │ │ │ └── GroupContactTableViewCell.xib │ │ ├── en.lproj │ │ │ └── Groups.strings │ │ └── es.lproj │ │ │ └── Groups.strings │ ├── History │ │ ├── Base.lproj │ │ │ └── History.storyboard │ │ ├── Data Sources │ │ │ ├── HistoryDataSource.swift │ │ │ └── Models │ │ │ │ └── PaymentTransaction.swift │ │ ├── HistoryViewController.swift │ │ ├── Table View Cells │ │ │ ├── TransactionCommonTableViewCell.swift │ │ │ ├── TransactionPaymentReceivedTableViewCell.swift │ │ │ ├── TransactionPaymentReceivedTableViewCell.xib │ │ │ ├── TransactionPaymentSentTableViewCell.swift │ │ │ └── TransactionPaymentSentTableViewCell.xib │ │ ├── en.lproj │ │ │ └── History.strings │ │ └── es.lproj │ │ │ └── History.strings │ ├── Invite │ │ ├── AddFriendViewController.swift │ │ ├── Base.lproj │ │ │ └── Invite.storyboard │ │ ├── ConfirmAddFriendViewController.swift │ │ ├── Custom Views │ │ │ ├── AddFriendRowButton.swift │ │ │ ├── Base.lproj │ │ │ │ └── AddFriendRowButton.xib │ │ │ ├── en.lproj │ │ │ │ └── AddFriendRowButton.strings │ │ │ └── es.lproj │ │ │ │ └── AddFriendRowButton.strings │ │ ├── Helpers │ │ │ └── InviteActionsHelper.swift │ │ ├── Invite Code VC │ │ │ ├── InviteCodeViewController.swift │ │ │ └── InviteCodeViewControllerExtension.swift │ │ ├── InviteWelcomeViewController.swift │ │ ├── KeychainRestoreViewController.swift │ │ ├── SetDataViewController.swift │ │ ├── SetNickNameViewController.swift │ │ ├── SetProfileImageViewController.swift │ │ ├── ShareInviteCodeViewController.swift │ │ ├── SphinxReadyViewController.swift │ │ ├── Table View Cells │ │ │ ├── KeychainRestoreTableViewCell.swift │ │ │ └── KeychainRestoreTableViewCell.xib │ │ ├── en.lproj │ │ │ └── Invite.strings │ │ └── es.lproj │ │ │ └── Invite.strings │ ├── Left Menu │ │ ├── Add Sats │ │ │ ├── AddSatsAppViewController.swift │ │ │ └── AddSatsViewController.swift │ │ ├── Base.lproj │ │ │ └── LeftMenu.storyboard │ │ ├── LeftMenuAddFriendTableViewCell.swift │ │ ├── LeftMenuOptionTableViewCell.swift │ │ ├── LeftMenuViewController.swift │ │ ├── SupportViewController.swift │ │ ├── en.lproj │ │ │ └── LeftMenu.strings │ │ └── es.lproj │ │ │ └── LeftMenu.strings │ ├── Pin │ │ ├── Base.lproj │ │ │ └── Pin.storyboard │ │ ├── PinCodeViewController.swift │ │ ├── SetPinCodeViewController.swift │ │ ├── en.lproj │ │ │ └── Pin.strings │ │ └── es.lproj │ │ │ └── Pin.strings │ ├── Profile │ │ ├── Base.lproj │ │ │ └── Profile.storyboard │ │ ├── Custom Views │ │ │ ├── AppAppearenceView.swift │ │ │ ├── AppSizeView.swift │ │ │ ├── Base.lproj │ │ │ │ ├── AppAppearenceView.xib │ │ │ │ ├── AppSizeView.xib │ │ │ │ └── SettingsTabsView.xib │ │ │ ├── CommonTabsView.swift │ │ │ ├── PinTimeSlider.swift │ │ │ ├── PinTimeSlider.xib │ │ │ ├── SettingsTabsView.swift │ │ │ ├── en.lproj │ │ │ │ ├── AppAppearenceView.strings │ │ │ │ ├── AppSizeView.strings │ │ │ │ └── SettingsTabsView.strings │ │ │ └── es.lproj │ │ │ │ ├── AppAppearenceView.strings │ │ │ │ ├── AppSizeView.strings │ │ │ │ └── SettingsTabsView.strings │ │ ├── NotificationSoundViewController.swift │ │ ├── ProfileViewController.swift │ │ ├── ProfileViewControllerExtensions.swift │ │ ├── ProfileViewControllerRelayExtension.swift │ │ ├── Table View Cells │ │ │ ├── NotificationSoundTableViewCell.swift │ │ │ └── NotificationSoundTableViewCell.xib │ │ ├── en.lproj │ │ │ └── Profile.strings │ │ └── es.lproj │ │ │ └── Profile.strings │ ├── QR Code Details │ │ ├── Base.lproj │ │ │ └── QRCodeDetail.storyboard │ │ ├── CreateInvoiceDetailsViewController.swift │ │ ├── Manager │ │ │ └── InvoiceManager.swift │ │ ├── QRCodeDetailViewController.swift │ │ ├── QRCodeDetailViewModel.swift │ │ ├── en.lproj │ │ │ └── QRCodeDetail.strings │ │ └── es.lproj │ │ │ └── QRCodeDetail.strings │ ├── QR Code Scanner │ │ ├── Base.lproj │ │ │ └── QRCodeScanner.storyboard │ │ ├── NewQRScannerProcessingCodeExtension.swift │ │ ├── NewQRScannerViewController.swift │ │ ├── QRCodeScannerView.swift │ │ ├── en.lproj │ │ │ └── QRCodeScanner.strings │ │ └── es.lproj │ │ │ └── QRCodeScanner.strings │ ├── Root │ │ ├── ContainerViewController.swift │ │ ├── Root.storyboard │ │ └── RootViewController.swift │ ├── Stakwork Login │ │ ├── Base.lproj │ │ │ └── Stakwork.storyboard │ │ ├── StakworkAuthorizeViewController.swift │ │ ├── en.lproj │ │ │ └── Stakwork.strings │ │ └── es.lproj │ │ │ └── Stakwork.strings │ ├── Subscriptions │ │ ├── Base.lproj │ │ │ └── Subscription.storyboard │ │ ├── Custom Views │ │ │ ├── Base.lproj │ │ │ │ ├── SubscriptionAmountView.xib │ │ │ │ ├── SubscriptionEndRuleView.xib │ │ │ │ └── SubscriptionTimeIntervalView.xib │ │ │ ├── SubscriptionAmountView.swift │ │ │ ├── SubscriptionCommonView.swift │ │ │ ├── SubscriptionEndRuleView.swift │ │ │ ├── SubscriptionFormTableHeaderView.swift │ │ │ ├── SubscriptionFormTableHeaderView.xib │ │ │ ├── SubscriptionTimeIntervalView.swift │ │ │ ├── en.lproj │ │ │ │ ├── SubscriptionAmountView.strings │ │ │ │ ├── SubscriptionEndRuleView.strings │ │ │ │ └── SubscriptionTimeIntervalView.strings │ │ │ └── es.lproj │ │ │ │ ├── SubscriptionAmountView.strings │ │ │ │ ├── SubscriptionEndRuleView.strings │ │ │ │ └── SubscriptionTimeIntervalView.strings │ │ ├── Manager │ │ │ └── SubscriptionManager.swift │ │ ├── SubscriptionDetailsViewController.swift │ │ ├── SubscriptionFormDataSource.swift │ │ ├── SubscriptionFormViewController.swift │ │ ├── SubscriptionFormViewControllerExtensions.swift │ │ ├── Table View Cells │ │ │ ├── SubscriptionFormButtonTableViewCell.swift │ │ │ ├── SubscriptionFormButtonTableViewCell.xib │ │ │ ├── SubscriptionFormTableViewCell.swift │ │ │ └── SubscriptionFormTableViewCell.xib │ │ ├── en.lproj │ │ │ └── Subscription.strings │ │ └── es.lproj │ │ │ └── Subscription.strings │ └── WebAppsAndPodcasts │ │ ├── Base.lproj │ │ └── WebApps.storyboard │ │ ├── Data Sources │ │ ├── PodcastEpisodesDataSource.swift │ │ └── PodcastLiveDataSource.swift │ │ ├── Downloads │ │ ├── Download.swift │ │ └── DownloadService.swift │ │ ├── Helper │ │ ├── PodcastModels.swift │ │ ├── PodcastPaymentsHelper.swift │ │ ├── PodcastPlayerHelper.swift │ │ └── WebAppHelper.swift │ │ ├── NewPodcastPlayerViewController.swift │ │ ├── PickerViewController.swift │ │ ├── PodcastAnimationViewController.swift │ │ ├── PodcastNewEpisodeViewController.swift │ │ ├── Table Views │ │ ├── PodcastEpisodeTableViewCell.swift │ │ └── PodcastEpisodeTableViewCell.xib │ │ ├── Views │ │ ├── AuthorizeAppView.swift │ │ ├── Base.lproj │ │ │ └── AuthorizeAppView.xib │ │ ├── BoostButtonView.swift │ │ ├── BoostButtonView.xib │ │ ├── BoostFireworksAnimationView.swift │ │ ├── BoostFireworksAnimationView.xib │ │ ├── EpisodesHeaderView.swift │ │ ├── EpisodesHeaderView.xib │ │ ├── PodcastPlayerView.swift │ │ ├── PodcastPlayerView.xib │ │ ├── PodcastSmallPlayer.swift │ │ ├── PodcastSmallPlayer.xib │ │ ├── en.lproj │ │ │ └── AuthorizeAppView.strings │ │ └── es.lproj │ │ │ └── AuthorizeAppView.strings │ │ ├── WebAppViewController.swift │ │ ├── en.lproj │ │ └── WebApps.strings │ │ └── es.lproj │ │ └── WebApps.strings ├── Services │ ├── ContactsService.swift │ ├── LocalNetworkPermissionService.swift │ └── WalletBalanceService.swift ├── Supporting Files │ ├── Animation │ │ ├── boost_animation.json │ │ └── fireworks.json │ ├── Fonts │ │ ├── MaterialIcons-Regular.ttf │ │ ├── Montserrat-Black.otf │ │ ├── Montserrat-Bold.otf │ │ ├── Montserrat-ExtraBold.otf │ │ ├── Montserrat-Light.otf │ │ ├── Montserrat-Regular.otf │ │ ├── Montserrat-SemiBold.otf │ │ ├── MyriadPro-Regular.otf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Medium.ttf │ │ └── Roboto-Regular.ttf │ ├── Sounds │ │ ├── aurora.caf │ │ ├── bamboo.caf │ │ ├── bell.caf │ │ ├── bells.caf │ │ ├── glass.caf │ │ ├── horn.caf │ │ ├── note.caf │ │ ├── popcorn.caf │ │ ├── synth.caf │ │ ├── tri-tone.caf │ │ └── tweet.caf │ ├── en.lproj │ │ └── Localizable.strings │ └── es.lproj │ │ └── Localizable.strings ├── es.lproj │ └── LaunchScreen.strings └── sphinx.entitlements ├── sphinxTests ├── Info.plist └── sphinxTests.swift └── sphinxUITests ├── Info.plist └── sphinxUITests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | ## Build generated 2 | build/ 3 | DerivedData/ 4 | 5 | ## Various settings 6 | xcuserdata/ 7 | 8 | Pods/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sphinx-ios 2 | 3 | 4 | # Setup 5 | 6 | ## CocoaPods 7 | 8 | - This repository uses CocoaPods submodules. After cloning run: 9 | 10 | ``` 11 | pod install 12 | ``` 13 | 14 | - Set a valid API KEY for Giphy library on info.plist file 15 | 16 | ## Branch 17 | 18 | This repository uses ```test-flight``` branch as base branch for development. Master is not up to date. 19 | 20 | -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- 1 | July 27 at 7am PST 2 | -------------------------------------------------------------------------------- /sphinx.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sphinx.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sphinx.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sphinx.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-1024-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-1024-1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-2x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-20-3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-2x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-29-3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-2x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-40-3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-60-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-60-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-60-3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-76-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-76-1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-76-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/AppIcon.appiconset/icon-83.5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/AppIcon.appiconset/icon-83.5-2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/altcoinsTagIcon.imageset/Altcoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/altcoinsTagIcon.imageset/Altcoins.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/altcoinsTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Altcoins.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/bitcoinTagIcon.imageset/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/bitcoinTagIcon.imageset/Bitcoin.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/bitcoinTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Bitcoin.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/cryptoTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Crypto.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/cryptoTagIcon.imageset/Crypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/cryptoTagIcon.imageset/Crypto.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/lightningTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Lightning.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/lightningTagIcon.imageset/Lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/lightningTagIcon.imageset/Lightning.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/musicTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Music.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/musicTagIcon.imageset/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/musicTagIcon.imageset/Music.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/podcastTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "podcast.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/podcastTagIcon.imageset/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/podcastTagIcon.imageset/podcast.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/sphinxTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Sphinx.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/sphinxTagIcon.imageset/Sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/sphinxTagIcon.imageset/Sphinx.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/techTagIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Tech.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/techTagIcon.imageset/Tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/techTagIcon.imageset/Tech.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tribe_placeholder@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "tribe_placeholder@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "tribe_placeholder@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Groups/tribePlaceholder.imageset/tribe_placeholder@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Left Menu/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "exit_tribe_icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "exit_tribe_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "exit_tribe_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Left Menu/logoutIcon.imageset/exit_tribe_icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Payment Templates/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no_template@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "no_template@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "no_template@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Payment Templates/noTemplate.imageset/no_template@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sphinx_label@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "sphinx_label@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "sphinx_label@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/sphinxLabel.imageset/sphinx_label@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "splash_background@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "splash_background@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "splash_background@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/splashBackground.imageset/splash_background@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sphinx-white-logo@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "sphinx-white-logo@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "sphinx-white-logo@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Splash/whiteIcon.imageset/sphinx-white-logo@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Video Call/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-resize@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "image-resize@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "image-resize@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/Video Call/image-resize.imageset/image-resize@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "camera-option-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "camera-option-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "camera-option-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/cameraOptionIcon.imageset/camera-option-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "contact-option-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "contact-option-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "contact-option-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/contactOptionIcon.imageset/contact-option-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "file-option-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "file-option-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "file-option-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/fileOptionIcon.imageset/file-option-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-uploader@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "image-uploader@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "image-uploader@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/imagePreloader.imageset/image-uploader@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "media-option-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "media-option-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "media-option-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/mediaOptionIcon.imageset/media-option-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "paid-message-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "paid-message-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "paid-message-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/attachments/paidMessageIcon.imageset/paid-message-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bottom-bar-icon-1@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bottom-bar-icon-1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "bottom-bar-icon-1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar1.imageset/bottom-bar-icon-1@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bottom-bar-icon-2@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bottom-bar-icon-2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "bottom-bar-icon-2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar2.imageset/bottom-bar-icon-2@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bottom-bar-icon-3@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bottom-bar-icon-3@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "bottom-bar-icon-3@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar3.imageset/bottom-bar-icon-3@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bottom-bar-icon-4@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bottom-bar-icon-4@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "bottom-bar-icon-4@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/bottomBar/bottomBar4.imageset/bottom-bar-icon-4@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "full_screen_shadow@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "full_screen_shadow@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "full_screen_shadow@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageFullScreenShadow.imageset/full_screen_shadow@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_not_available@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "image_not_available@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "image_not_available@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/imageNotAvailable.imageset/image_not_available@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "invoice-pay-button@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "invoice-pay-button@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "invoice-pay-button@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-pay-button.imageset/invoice-pay-button@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "invoice-received-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "invoice-received-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "invoice-received-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/invoice-receive-icon.imageset/invoice-received-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mute_off@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mute_off@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "mute_off@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOffIcon.imageset/mute_off@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mute_on@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mute_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "mute_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/muteOnIcon.imageset/mute_on@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x-2.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x-2.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x-2.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/profile_avatar.imageset/profileAvatar@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "invoice-qr-code@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "invoice-qr-code@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "invoice-qr-code@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/qr_code.imageset/invoice-qr-code@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/splash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "splash@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "splash@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "splash@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/chat/splash.imageset/splash@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add_contact@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "add_contact@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "add_contact@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/addContactIcon.imageset/add_contact@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "profile_image_icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "profile_image_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "profile_image_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/profileImageIcon.imageset/profile_image_icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shadow_without_line.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "shadow_without_line@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "shadow_without_line@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/contacts/shadowWithoutLine.imageset/shadow_without_line@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "profile_avatar@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "profile_avatar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "profile_avatar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/defaultAvatar.imageset/profile_avatar@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "invite_qr_code@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "invite_qr_code@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "invite_qr_code@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/inviteQrCode.imageset/invite_qr_code@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "scanner_icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "scanner_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "scanner_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/scannerIcon.imageset/scanner_icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "share_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "share_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/shareIcon.imageset/share_icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tap_to_copy@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "tap_to_copy@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "tap_to_copy@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/invite/tapToCopy.imageset/tap_to_copy@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "prev15@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "prev15@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "prev15@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/back15Icon.imageset/prev15@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "boost_icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "boost_icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "boost_icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIcon.imageset/boost_icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "boost_icon_green@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "boost_icon_green@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "boost_icon_green@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/boostIconGreen.imageset/boost_icon_green@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "clipIcon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "clipIcon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "clipIcon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/clipIcon.imageset/clipIcon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "back30@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "back30@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "back30@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/forw30Icon.imageset/back30@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share-audio-clip@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "share-audio-clip@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "share-audio-clip@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/podcast/shareAudioClip.imageset/share-audio-clip@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/profile/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "new_wallet@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "new_wallet@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "new_wallet@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/profile/walletIcon.imageset/new_wallet@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/swipableCell/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_delete.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_delete@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_delete@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/swipableCell/deleteIcon.imageset/icon_delete@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cash_app.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "cash_app-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "cash_app-2.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app-1.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app-2.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/cashAppIcon.imageset/cash_app.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "transaction-payment-received@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "transaction-payment-received@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "transaction-payment-received@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-received-arrow.imageset/transaction-payment-received@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "transaction-payment-sent@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "transaction-payment-sent@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "transaction-payment-sent@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/payment-sent-arrow.imageset/transaction-payment-sent@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "transaction-icon@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "transaction-icon@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "transaction-icon@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/sphinx/transactions/transaction-icon.imageset/transaction-icon@3x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/splash-screen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "splash@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "splash@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "splash@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/splash-screen.imageset/splash@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/splash-screen.imageset/splash@1x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/splash-screen.imageset/splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/splash-screen.imageset/splash@2x.png -------------------------------------------------------------------------------- /sphinx/Assets.xcassets/splash-screen.imageset/splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Assets.xcassets/splash-screen.imageset/splash@3x.png -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/AddressBookHeader.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF4", 13 | "alpha" : "1.000", 14 | "blue" : "0xF4", 15 | "green" : "0xF4" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x22", 31 | "alpha" : "1.000", 32 | "blue" : "0x3A", 33 | "green" : "0x2E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/BadgeRed.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0x52", 15 | "green" : "0x52" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "1.000", 32 | "blue" : "0x52", 33 | "green" : "0x52" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/BlueTextAccent.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x5D", 13 | "alpha" : "1.000", 14 | "blue" : "0xDD", 15 | "green" : "0x8F" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x5D", 31 | "alpha" : "1.000", 32 | "blue" : "0xDD", 33 | "green" : "0x8F" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/Body.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x15", 31 | "alpha" : "1.000", 32 | "blue" : "0x27", 33 | "green" : "0x1E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/BodyInverted.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x15", 13 | "alpha" : "1.000", 14 | "blue" : "0x27", 15 | "green" : "0x1E" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "1.000", 31 | "alpha" : "1.000", 32 | "blue" : "1.000", 33 | "green" : "1.000" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/BubbleShadow.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xD0", 13 | "alpha" : "1.000", 14 | "blue" : "0xD8", 15 | "green" : "0xD5" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "0.000", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ChatListSelected.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF8", 13 | "alpha" : "1.000", 14 | "blue" : "0xF8", 15 | "green" : "0xF8" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x15", 31 | "alpha" : "1.000", 32 | "blue" : "0x27", 33 | "green" : "0x1E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/DashboardHeader.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x50", 13 | "alpha" : "1.000", 14 | "blue" : "0xF2", 15 | "green" : "0x78" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x1A", 31 | "alpha" : "1.000", 32 | "blue" : "0x2E", 33 | "green" : "0x24" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/DashboardSearch.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x15", 31 | "alpha" : "1.000", 32 | "blue" : "0x27", 33 | "green" : "0x1E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/Divider.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDC", 13 | "alpha" : "1.000", 14 | "blue" : "0xE3", 15 | "green" : "0xE0" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x15", 31 | "alpha" : "1.000", 32 | "blue" : "0x27", 33 | "green" : "0x1E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ExpiredInvoice.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xD0", 13 | "alpha" : "1.000", 14 | "blue" : "0xD8", 15 | "green" : "0xD5" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "0.800", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/GreenBorder.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x2F", 13 | "alpha" : "1.000", 14 | "blue" : "0x79", 15 | "green" : "0xB3" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0.184", 31 | "alpha" : "1.000", 32 | "blue" : "0.475", 33 | "green" : "0.702" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/HeaderBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x1A", 31 | "alpha" : "1.000", 32 | "blue" : "0x2E", 33 | "green" : "0x24" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/LightBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF2", 13 | "alpha" : "1.000", 14 | "blue" : "0xF5", 15 | "green" : "0xF3" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x1A", 31 | "alpha" : "1.000", 32 | "blue" : "0x2E", 33 | "green" : "0x24" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/LightDivider.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDC", 13 | "alpha" : "1.000", 14 | "blue" : "0xE3", 15 | "green" : "0xE0" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3B", 31 | "alpha" : "1.000", 32 | "blue" : "0x55", 33 | "green" : "0x47" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/LinkReceivedColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDD", 13 | "alpha" : "1.000", 14 | "blue" : "0xE5", 15 | "green" : "0xE1" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x6B", 31 | "alpha" : "1.000", 32 | "blue" : "0x8D", 33 | "green" : "0x7A" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/LinkSentButtonColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x61", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0x8A" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3E", 31 | "alpha" : "1.000", 32 | "blue" : "0x89", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/LinkSentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDD", 13 | "alpha" : "1.000", 14 | "blue" : "0xE5", 15 | "green" : "0xE1" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3E", 31 | "alpha" : "1.000", 32 | "blue" : "0x89", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ListBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF8", 13 | "alpha" : "1.000", 14 | "blue" : "0xF8", 15 | "green" : "0xF8" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x14", 31 | "alpha" : "1.000", 32 | "blue" : "0x27", 33 | "green" : "0x1E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/MainBottomIcons.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x5F", 13 | "alpha" : "1.000", 14 | "blue" : "0x68", 15 | "green" : "0x63" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x90", 31 | "alpha" : "1.000", 32 | "blue" : "0xAA", 33 | "green" : "0x9B" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/MessageOptionDivider.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDC", 13 | "alpha" : "1.000", 14 | "blue" : "0xE3", 15 | "green" : "0xE0" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "0.500", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/OldReceivedMsgBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x22", 31 | "alpha" : "1.000", 32 | "blue" : "0x3A", 33 | "green" : "0x2E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/OldSentMsgBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF9", 13 | "alpha" : "1.000", 14 | "blue" : "0xFC", 15 | "green" : "0xFA" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3E", 31 | "alpha" : "1.000", 32 | "blue" : "0x89", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PlaceholderText.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xB0", 13 | "alpha" : "1.000", 14 | "blue" : "0xBC", 15 | "green" : "0xB7" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x55", 31 | "alpha" : "1.000", 32 | "blue" : "0x71", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryBlue.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x61", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0x8A" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x61", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0x8A" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryBlueBorder.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x50", 13 | "alpha" : "1.000", 14 | "blue" : "0xF2", 15 | "green" : "0x78" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x50", 31 | "alpha" : "1.000", 32 | "blue" : "0xF2", 33 | "green" : "0x78" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryBlueFontColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xA3", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xC1" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xA3", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0xC1" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryGreen.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x49", 13 | "alpha" : "1.000", 14 | "blue" : "0x98", 15 | "green" : "0xC9" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x49", 31 | "alpha" : "1.000", 32 | "blue" : "0x98", 33 | "green" : "0xC9" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryRed.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xED", 13 | "alpha" : "1.000", 14 | "blue" : "0x74", 15 | "green" : "0x74" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xED", 31 | "alpha" : "1.000", 32 | "blue" : "0x74", 33 | "green" : "0x74" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/PrimaryText.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x29", 13 | "alpha" : "1.000", 14 | "blue" : "0x33", 15 | "green" : "0x2C" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ProfileBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF8", 13 | "alpha" : "1.000", 14 | "blue" : "0xF8", 15 | "green" : "0xF8" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x1A", 31 | "alpha" : "1.000", 32 | "blue" : "0x2E", 33 | "green" : "0x24" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ReceivedBubbleBorder.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDF", 13 | "alpha" : "1.000", 14 | "blue" : "0xE5", 15 | "green" : "0xE1" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x22", 31 | "alpha" : "1.000", 32 | "blue" : "0x3A", 33 | "green" : "0x2E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ReceivedIcon.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x82", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xB4" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x82", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0xB4" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ReceivedMsgBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xF2", 13 | "alpha" : "1.000", 14 | "blue" : "0xF5", 15 | "green" : "0xF3" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x22", 31 | "alpha" : "1.000", 32 | "blue" : "0x3A", 33 | "green" : "0x2E" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ReplyDividerReceived.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "0.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x55", 31 | "alpha" : "1.000", 32 | "blue" : "0x71", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/ReplyDividerSent.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "0.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x82", 31 | "alpha" : "1.000", 32 | "blue" : "0xB9", 33 | "green" : "0x9C" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/SecondaryRed.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0x80", 15 | "green" : "0x8F" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "1.000", 32 | "blue" : "0x80", 33 | "green" : "0x8F" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/SecondaryText.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x8E", 13 | "alpha" : "1.000", 14 | "blue" : "0x9C", 15 | "green" : "0x96" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x6B", 31 | "alpha" : "1.000", 32 | "blue" : "0x8D", 33 | "green" : "0x7A" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/SentBubbleBorder.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDC", 13 | "alpha" : "1.000", 14 | "blue" : "0xE3", 15 | "green" : "0xE0" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3E", 31 | "alpha" : "1.000", 32 | "blue" : "0x89", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/SentMsgBG.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xDD", 13 | "alpha" : "1.000", 14 | "blue" : "0xFD", 15 | "green" : "0xED" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3E", 31 | "alpha" : "1.000", 32 | "blue" : "0x89", 33 | "green" : "0x61" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/Shadow.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x3C", 13 | "alpha" : "1.000", 14 | "blue" : "0x41", 15 | "green" : "0x3F" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x00", 31 | "alpha" : "1.000", 32 | "blue" : "0x00", 33 | "green" : "0x00" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/Text.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x3C", 13 | "alpha" : "1.000", 14 | "blue" : "0x41", 15 | "green" : "0x3F" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/TextInverted.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0xFF", 13 | "alpha" : "1.000", 14 | "blue" : "0xFF", 15 | "green" : "0xFF" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x3C", 31 | "alpha" : "1.000", 32 | "blue" : "0x41", 33 | "green" : "0x3F" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/TextMessages.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x1E", 13 | "alpha" : "1.000", 14 | "blue" : "0x25", 15 | "green" : "0x1F" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0xFF", 31 | "alpha" : "1.000", 32 | "blue" : "0xFF", 33 | "green" : "0xFF" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Colors.xcassets/Sphinx/WashedOutGreen.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0x86", 13 | "alpha" : "1.000", 14 | "blue" : "0xB9", 15 | "green" : "0xD9" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0x2F", 31 | "alpha" : "1.000", 32 | "blue" : "0x60", 33 | "green" : "0x74" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /sphinx/Core Data/UserInvite+CoreDataProperties.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserInvite+CoreDataProperties.swift 3 | // 4 | // 5 | // Created by Tomas Timinskas on 06/11/2019. 6 | // 7 | // 8 | 9 | import Foundation 10 | import CoreData 11 | 12 | 13 | extension UserInvite { 14 | 15 | @nonobjc public class func fetchRequest() -> NSFetchRequest { 16 | return NSFetchRequest(entityName: "UserInvite") 17 | } 18 | 19 | @NSManaged public var inviteString: String? 20 | @NSManaged public var welcomeMessage: String? 21 | @NSManaged public var status: Int 22 | @NSManaged public var price: NSDecimalNumber? 23 | @NSManaged public var contact: UserContact? 24 | 25 | } 26 | -------------------------------------------------------------------------------- /sphinx/Core Data/sphinx.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | sphinx 28.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /sphinx/Custom Classes/BotWebView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BotWebView.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 16/09/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import WebKit 11 | 12 | class BotWebView : WKWebView { 13 | var contentString: String? = "" 14 | 15 | override func loadHTMLString(_ string: String, baseURL: URL?) -> WKNavigation? { 16 | self.contentString = string 17 | return super.loadHTMLString(string, baseURL: baseURL) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sphinx/Custom Classes/CustomSwiftLinkPreview.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CustomSwiftLinkPreview.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 05/03/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftLinkPreview 11 | 12 | class CustomSwiftLinkPreview { 13 | 14 | class var sharedInstance : SwiftLinkPreview { 15 | struct Static { 16 | static let instance = SwiftLinkPreview(cache: InMemoryCache()) 17 | } 18 | return Static.instance 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /sphinx/Custom Classes/LinkPreviewUIImage.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LinkPreviewImageView.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 24/09/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class LinkPreviewUIImage : UIImage { 12 | var imageName : String? = nil 13 | 14 | convenience init?(named name: String) { 15 | guard let image = UIImage(named: name), 16 | let cgImage = image.cgImage else { 17 | return nil 18 | } 19 | self.init(cgImage: cgImage) 20 | self.imageName = name 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sphinx/Custom Classes/TouchUpGestureRecognizer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TouchUpGestureRecognizer.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 24/01/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit.UIGestureRecognizerSubclass 10 | 11 | class TouchUpGestureRecognizer: UIGestureRecognizer { 12 | override func touchesEnded(_ touches: Set, with event: UIEvent) { 13 | if self.state == .possible { 14 | self.state = .recognized 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sphinx/Extensions/AVAudioSession.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AVAudioSession.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 03/03/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import AVFoundation 10 | 11 | extension AVAudioSession { 12 | 13 | static var isDeviceConnected: Bool { 14 | return sharedInstance().isDeviceConnected 15 | } 16 | 17 | var isDeviceConnected: Bool { 18 | return !currentRoute.outputs.filter { $0.isDeviceConnected }.isEmpty 19 | } 20 | } 21 | 22 | extension AVAudioSessionPortDescription { 23 | var isDeviceConnected: Bool { 24 | return (portType == .airPlay || portType == .bluetoothA2DP || portType == .bluetoothLE || portType == .bluetoothHFP || portType == .carAudio || portType == .headphones || portType == .headsetMic || portType == .usbAudio) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sphinx/Extensions/CGFloat.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CGFloat.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 21/05/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension CGFloat { 12 | static func random() -> CGFloat { 13 | return CGFloat(arc4random()) / CGFloat(UInt32.max) 14 | } 15 | } 16 | 17 | extension Float { 18 | var speedDescription: String { 19 | get { 20 | if self == Float(Int(self)) { 21 | return "\(Int(self))" 22 | } else { 23 | return self.formattedWithDotDecimalSeparator 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /sphinx/Extensions/JSON.swift: -------------------------------------------------------------------------------- 1 | // 2 | // JSON.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 17/03/2021. 6 | // Copyright © 2021 Tomas Timinskas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftyJSON 11 | 12 | extension JSON { 13 | func getJSONId() -> Int? { 14 | var id : Int? 15 | if let idInt = self["id"].int { 16 | id = idInt 17 | } else if let idString = self["id"].string, let idInt = Int(idString) { 18 | id = idInt 19 | } 20 | return id 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sphinx/Extensions/Notification.Name.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Notification.Name.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 08/04/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Notification.Name { 12 | static let onKeyboardShown = Notification.Name("onKeyboardShown") 13 | static let onMessageLongPressed = Notification.Name("onMessageLongPressed") 14 | static let onBalanceDidChange = Notification.Name("onBalanceDidChange") 15 | static let onGroupDeleted = Notification.Name("onGroupDeleted") 16 | static let onMessageMenuShow = Notification.Name("onMessageMenuShow") 17 | static let onMessageMenuHide = Notification.Name("onMessageMenuHide") 18 | static let onConnectionStatusChanged = Notification.Name("onConnectionStatusChanged") 19 | } 20 | -------------------------------------------------------------------------------- /sphinx/Extensions/UIApplication.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplication.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 28/06/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIApplication { 12 | public var isSplitOrSlideOver: Bool { 13 | guard let w = self.delegate?.window, let window = w else { return false } 14 | return !(window.frame.width == window.screen.bounds.width) 15 | } 16 | 17 | public func isActive() -> Bool { 18 | return self.applicationState == .active 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sphinx/Extensions/UICollectionView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UICollectionView.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 07/01/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UICollectionView { 12 | func registerCell(_ type: UICollectionViewCell.Type) { 13 | register(UINib(nibName: String(describing: type), bundle: Bundle.main), forCellWithReuseIdentifier: String(describing: type)) 14 | } 15 | 16 | func dequeueCellForIndexPath(_ indexPath: IndexPath) -> T { 17 | guard let cell = dequeueReusableCell(withReuseIdentifier: String(describing: T.self), for: indexPath) as? T else { 18 | fatalError("\(String(describing: T.self)) cell could not be instantiated because it was not found on the tableView") 19 | } 20 | return cell 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sphinx/Extensions/UIDevice.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIDevice.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 21/06/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIDevice { 12 | 13 | var isIpad: Bool { 14 | get { 15 | return self.userInterfaceIdiom == .pad 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sphinx/Extensions/UITableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UITableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 11/04/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UITableViewCell { 12 | func isCompletelyVisible(tableView: UITableView) -> Bool { 13 | if let indexPath = tableView.indexPath(for: self) { 14 | let cellRect = tableView.rectForRow(at: indexPath) 15 | let completelyVisible = tableView.bounds.contains(cellRect) 16 | return completelyVisible 17 | } 18 | return false 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sphinx/Extensions/URLResponse.swift: -------------------------------------------------------------------------------- 1 | // 2 | // URLResponse.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 15/09/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension URLResponse { 12 | func getFileName() -> String? { 13 | if let httpResponse = self as? HTTPURLResponse, let contentDisposition = httpResponse.allHeaderFields["Content-Disposition"] as? String { 14 | if let range = contentDisposition.range(of: "filename=") { 15 | let fileName = String(contentDisposition[range.upperBound...]) 16 | return fileName 17 | } 18 | } 19 | return nil 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sphinx/Helpers/ClipboardHelper.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ClipboardHelper.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 22/01/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ClipboardHelper { 12 | 13 | public static func copyToClipboard(text: String, message: String? = "text.copied.clipboard".localized) { 14 | UIPasteboard.general.string = text 15 | PlayAudioHelper.playHaptic() 16 | 17 | if let message = message { 18 | NewMessageBubbleHelper().showGenericMessageView(text: message) 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sphinx/Helpers/ConnectivityHelper.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ReachabilityHelper.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 20/05/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Alamofire 10 | 11 | struct ConnectivityHelper { 12 | static let sharedInstance = NetworkReachabilityManager()! 13 | static var isConnectedToInternet: Bool { 14 | return self.sharedInstance.isReachable 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sphinx/Helpers/DelayPerformertHelper.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DelayPerformertHelper.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 28/01/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class DelayPerformedHelper { 12 | 13 | public static func performAfterDelay(seconds: Double, completion: @escaping () -> ()) { 14 | let delayTime = DispatchTime.now() + Double(Int64(seconds * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC) 15 | DispatchQueue.main.asyncAfter(deadline: delayTime) { 16 | completion() 17 | } 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Chat Objects/ChatsHistory.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Library 3 | // 4 | // Created by Tomas Timinskas on 19/03/2019. 5 | // Copyright © 2019 Sphinx. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | import SwiftyJSON 10 | 11 | class ChatsHistory { 12 | 13 | var sentInvoices: [JSON] = [] 14 | var receivedInvoices: [JSON] = [] 15 | var sentMessages: [JSON] = [] 16 | var receivedMessages: [JSON] = [] 17 | var confirmations: [JSON] = [] 18 | 19 | init() { 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Keyboard Accessory Views/en.lproj/ChatAccessoryView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Slide to cancel"; ObjectID = "iLc-z6-RUC"; */ 3 | "iLc-z6-RUC.text" = "Slide to cancel"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Keyboard Accessory Views/es.lproj/ChatAccessoryView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Slide to cancel"; ObjectID = "iLc-z6-RUC"; */ 3 | "iLc-z6-RUC.text" = "Deslice para cancelar"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Link Preview Views/en.lproj/ContactLinkPreviewView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "ADD CONTACT"; ObjectID = "lRf-of-dIg"; */ 2 | "lRf-of-dIg.text" = "ADD CONTACT"; 3 | 4 | /* Class = "UILabel"; text = "New Contact"; ObjectID = "usc-2z-GcC"; */ 5 | "usc-2z-GcC.text" = "New Contact"; 6 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Link Preview Views/en.lproj/TribeLinkPreviewView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "SEE TRIBE"; ObjectID = "CqD-fw-U0a"; */ 3 | "CqD-fw-U0a.text" = "SEE TRIBE"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Link Preview Views/es.lproj/ContactLinkPreviewView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "ADD CONTACT"; ObjectID = "lRf-of-dIg"; */ 3 | "lRf-of-dIg.text" = "AGREGAR CONTACTO"; 4 | 5 | /* Class = "UILabel"; text = "New Contact"; ObjectID = "usc-2z-GcC"; */ 6 | "usc-2z-GcC.text" = "Nuevo Contacto"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Link Preview Views/es.lproj/TribeLinkPreviewView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "SEE TRIBE"; ObjectID = "CqD-fw-U0a"; */ 3 | "CqD-fw-U0a.text" = "VER TRIBU"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Paid Attachments/en.lproj/PaidAttachmentView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Processing payment..."; ObjectID = "8g0-gq-jaf"; */ 3 | "8g0-gq-jaf.text" = "Processing payment..."; 4 | 5 | /* Class = "UILabel"; text = "Purchase Succeeded"; ObjectID = "DbX-b0-czT"; */ 6 | "DbX-b0-czT.text" = "Purchase Succeeded"; 7 | 8 | /* Class = "UILabel"; text = "PAY"; ObjectID = "l1j-i5-mZA"; */ 9 | "l1j-i5-mZA.text" = "PAY"; 10 | 11 | /* Class = "UILabel"; text = "Purchase Denied"; ObjectID = "sRP-LE-M0I"; */ 12 | "sRP-LE-M0I.text" = "Purchase Denied"; 13 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Paid Attachments/es.lproj/PaidAttachmentView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Processing payment..."; ObjectID = "8g0-gq-jaf"; */ 3 | "8g0-gq-jaf.text" = "Procesando..."; 4 | 5 | /* Class = "UILabel"; text = "Purchase Succeeded"; ObjectID = "DbX-b0-czT"; */ 6 | "DbX-b0-czT.text" = "Compra exitosa"; 7 | 8 | /* Class = "UILabel"; text = "PAY"; ObjectID = "l1j-i5-mZA"; */ 9 | "l1j-i5-mZA.text" = "PAGAR"; 10 | 11 | /* Class = "UILabel"; text = "Purchase Denied"; ObjectID = "sRP-LE-M0I"; */ 12 | "sRP-LE-M0I.text" = "Compra denegada"; 13 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Video Call Views/en.lproj/JoinVideoCallView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "VIDEO"; ObjectID = "1dd-eP-y7r"; */ 3 | "1dd-eP-y7r.text" = "VIDEO"; 4 | 5 | /* Class = "UILabel"; text = "JOIN CALL BY ..."; ObjectID = "HpA-EW-kei"; */ 6 | "HpA-EW-kei.text" = "JOIN CALL BY ..."; 7 | 8 | /* Class = "UILabel"; text = "COPY LINK"; ObjectID = "VWO-or-LC3"; */ 9 | "VWO-or-LC3.text" = "COPY LINK"; 10 | 11 | /* Class = "UILabel"; text = "AUDIO"; ObjectID = "cgF-Zn-a7l"; */ 12 | "cgF-Zn-a7l.text" = "AUDIO"; 13 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Custom Views/Video Call Views/es.lproj/JoinVideoCallView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "VIDEO"; ObjectID = "1dd-eP-y7r"; */ 3 | "1dd-eP-y7r.text" = "VIDEO"; 4 | 5 | /* Class = "UILabel"; text = "JOIN CALL BY ..."; ObjectID = "HpA-EW-kei"; */ 6 | "HpA-EW-kei.text" = "UNIRSE MEDIANTE ..."; 7 | 8 | /* Class = "UILabel"; text = "COPY LINK"; ObjectID = "VWO-or-LC3"; */ 9 | "VWO-or-LC3.text" = "COPIAR ENLACE"; 10 | 11 | /* Class = "UILabel"; text = "AUDIO"; ObjectID = "cgF-Zn-a7l"; */ 12 | "cgF-Zn-a7l.text" = "AUDIO"; 13 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Common/en.lproj/LoadingMoreTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Loading more messages..."; ObjectID = "MkL-m8-DI3"; */ 3 | "MkL-m8-DI3.text" = "Loading more messages..."; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Common/es.lproj/LoadingMoreTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Loading more messages..."; ObjectID = "MkL-m8-DI3"; */ 3 | "MkL-m8-DI3.text" = "Cargando más mensajes..."; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Groups/CommonGroupActionTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CommonGroupActionTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 07/07/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class CommonGroupActionTableViewCell : UITableViewCell { 12 | 13 | @IBOutlet weak var groupLeaveLabelContainer: UIView! 14 | 15 | override func awakeFromNib() { 16 | super.awakeFromNib() 17 | 18 | groupLeaveLabelContainer.layer.cornerRadius = getCornerRadius() 19 | groupLeaveLabelContainer.layer.borderColor = UIColor.Sphinx.LightDivider.resolvedCGColor(with: self) 20 | groupLeaveLabelContainer.layer.borderWidth = 1 21 | } 22 | 23 | func getCornerRadius() -> CGFloat { 24 | return groupLeaveLabelContainer.frame.size.height / 2 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Groups/en.lproj/GroupLeaveTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Tomas just left the group"; ObjectID = "Tkv-4T-hEB"; */ 3 | "Tkv-4T-hEB.text" = "Tomas just left the group"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Groups/en.lproj/GroupRemovedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "The admin has removed \nyou from this group"; ObjectID = "bMf-V2-wL4"; */ 3 | "bMf-V2-wL4.text" = "The admin has removed \nyou from this tribe"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Delete group"; ObjectID = "o85-do-HbP"; */ 6 | "o85-do-HbP.normalTitle" = "Delete tribe"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Groups/es.lproj/GroupLeaveTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Tomas just left the group"; ObjectID = "Tkv-4T-hEB"; */ 3 | "Tkv-4T-hEB.text" = "Tomas just left the group"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Groups/es.lproj/GroupRemovedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "The admin has removed \nyou from this group"; ObjectID = "bMf-V2-wL4"; */ 3 | "bMf-V2-wL4.text" = "El administrador te ha \neliminado de esta tribu"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Delete group"; ObjectID = "o85-do-HbP"; */ 6 | "o85-do-HbP.normalTitle" = "Elminar tribu"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/DeletedMessageReceivedTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeletedMessageReceivedTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 29/06/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class DeletedMessageReceivedTableViewCell: CommonDeletedMessageTableViewCell, MessageRowProtocol { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | } 16 | 17 | override func setSelected(_ selected: Bool, animated: Bool) { 18 | super.setSelected(selected, animated: animated) 19 | } 20 | 21 | override func configureMessageRow(messageRow: TransactionMessageRow, contact: UserContact?, chat: Chat?) { 22 | super.configureMessageRow(messageRow: messageRow, contact: contact, chat: chat) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/DirectPaymentReceivedTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Library 3 | // 4 | // Created by Tomas Timinskas on 05/07/2019. 5 | // Copyright © 2019 Sphinx. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class DirectPaymentReceivedTableViewCell: CommonDirectPaymentTableViewCell, MessageRowProtocol { 11 | 12 | override func awakeFromNib() { 13 | super.awakeFromNib() 14 | 15 | paymentIcon.tintColorDidChange() 16 | } 17 | 18 | override func setSelected(_ selected: Bool, animated: Bool) { 19 | super.setSelected(selected, animated: animated) 20 | } 21 | 22 | func configureMessageRow(messageRow: TransactionMessageRow, contact: UserContact?, chat: Chat?) { 23 | super.configurePayment(messageRow: messageRow, contact: contact, chat: chat, incoming: true) 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/en.lproj/DeletedMessageReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "This message has been deleted"; ObjectID = "GGd-Id-cgM"; */ 3 | "GGd-Id-cgM.text" = "This message has been deleted"; 4 | 5 | /* Class = "UILabel"; text = "Monday 6:05 AM"; ObjectID = "LJJ-F6-lrB"; */ 6 | "LJJ-F6-lrB.text" = "Monday 6:05 AM"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/en.lproj/ExpiredInvoiceReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "REQUEST EXPIRED"; ObjectID = "v2S-lD-9aN"; */ 3 | "v2S-lD-9aN.text" = "REQUEST EXPIRED"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/en.lproj/InvoiceReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "PAY"; ObjectID = "wUm-4G-XfL"; */ 2 | "wUm-4G-XfL.text" = "PAY"; 3 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/es.lproj/DeletedMessageReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "This message has been deleted"; ObjectID = "GGd-Id-cgM"; */ 3 | "GGd-Id-cgM.text" = "Este mensaje ha sido eliminado"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/es.lproj/ExpiredInvoiceReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "REQUEST EXPIRED"; ObjectID = "v2S-lD-9aN"; */ 2 | "v2S-lD-9aN.text" = "SOLICITUD CADUCADA"; 3 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Received/es.lproj/InvoiceReceivedTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "PAY"; ObjectID = "wUm-4G-XfL"; */ 2 | "wUm-4G-XfL.text" = "PAGAR"; 3 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/DeletedMessageSentTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeletedMessageSentTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 29/06/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class DeletedMessageSentTableViewCell: CommonDeletedMessageTableViewCell, MessageRowProtocol { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | } 16 | 17 | override func setSelected(_ selected: Bool, animated: Bool) { 18 | super.setSelected(selected, animated: animated) 19 | } 20 | 21 | override func configureMessageRow(messageRow: TransactionMessageRow, contact: UserContact?, chat: Chat?) { 22 | super.configureMessageRow(messageRow: messageRow, contact: contact, chat: chat) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/en.lproj/DeletedMessageSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "This message has been deleted"; ObjectID = "j3D-OC-PiZ"; */ 3 | "j3D-OC-PiZ.text" = "This message has been deleted"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/en.lproj/ExpiredInvoiceSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "REQUEST EXPIRED"; ObjectID = "gji-Ko-PF6"; */ 2 | "gji-Ko-PF6.text" = "REQUEST EXPIRED"; 3 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/en.lproj/InvoiceSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Expire in 39 minutes"; ObjectID = "gIK-Ok-irq"; */ 2 | "gIK-Ok-irq.text" = "Expire in 39 minutes"; 3 | 4 | /* Class = "UILabel"; text = "CANCEL"; ObjectID = "wUm-4G-XfL"; */ 5 | "wUm-4G-XfL.text" = "CANCEL"; 6 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/es.lproj/DeletedMessageSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "This message has been deleted"; ObjectID = "j3D-OC-PiZ"; */ 3 | "j3D-OC-PiZ.text" = "Este mensaje ha sido eliminado"; 4 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/es.lproj/ExpiredInvoiceSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "REQUEST EXPIRED"; ObjectID = "gji-Ko-PF6"; */ 2 | "gji-Ko-PF6.text" = "SOLICITUD CADUCADA"; 3 | -------------------------------------------------------------------------------- /sphinx/Scenes/Chat/Table View Cells/Chat/Sent/es.lproj/InvoiceSentTableViewCell.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Expire in 39 minutes"; ObjectID = "gIK-Ok-irq"; */ 3 | "gIK-Ok-irq.text" = "Expira en 39 minutos"; 4 | 5 | /* Class = "UILabel"; text = "CANCEL"; ObjectID = "wUm-4G-XfL"; */ 6 | "wUm-4G-XfL.text" = "CANCELAR"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Contacts/Custom Views/en.lproj/GroupPinView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Group PIN"; ObjectID = "nHw-HO-PXI"; */ 2 | "nHw-HO-PXI.text" = "Privacy Setting"; 3 | 4 | "RSH-gY-dua.text" = "Standard PIN / Privacy PIN"; 5 | -------------------------------------------------------------------------------- /sphinx/Scenes/Contacts/Custom Views/es.lproj/GroupPinView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Group PIN"; ObjectID = "nHw-HO-PXI"; */ 2 | "nHw-HO-PXI.text" = "Configuración de Privacidad"; 3 | 4 | "RSH-gY-dua.text" = "PIN Estandar / PIN Privado"; 5 | -------------------------------------------------------------------------------- /sphinx/Scenes/Groups/Public Groups/Custom Views/en.lproj/TribeMemberInfoView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "My Picture"; ObjectID = "TBo-qO-YPB"; */ 3 | "TBo-qO-YPB.text" = "Profile Picture"; 4 | 5 | /* Class = "UILabel"; text = "Alias"; ObjectID = "hDK-Gq-EAB"; */ 6 | "hDK-Gq-EAB.text" = "Alias"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Groups/Public Groups/Custom Views/es.lproj/TribeMemberInfoView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "My Picture"; ObjectID = "TBo-qO-YPB"; */ 3 | "TBo-qO-YPB.text" = "Foto de Perfil"; 4 | 5 | /* Class = "UILabel"; text = "My Alias"; ObjectID = "hDK-Gq-EAB"; */ 6 | "hDK-Gq-EAB.text" = "Alias"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Groups/Public Groups/Table View Cells/GroupTagCollectionViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GroupTagCollectionViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 19/05/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class GroupTagCollectionViewCell: UICollectionViewCell { 12 | 13 | @IBOutlet weak var groupTagView: GroupTagView! 14 | 15 | override func awakeFromNib() { 16 | super.awakeFromNib() 17 | } 18 | 19 | func configureWith(tag: GroupsManager.Tag) { 20 | groupTagView.configureWith(tag: tag) 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /sphinx/Scenes/Groups/Public Groups/Table View Cells/GroupTagTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GroupTagTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 19/05/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class GroupTagTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var groupTagView: GroupTagView! 14 | 15 | override func awakeFromNib() { 16 | super.awakeFromNib() 17 | } 18 | 19 | override func setSelected(_ selected: Bool, animated: Bool) { 20 | super.setSelected(selected, animated: animated) 21 | } 22 | 23 | func configureWith(tag: GroupsManager.Tag) { 24 | groupTagView.configureWith(tag: tag) 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /sphinx/Scenes/History/Table View Cells/TransactionPaymentReceivedTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Library 3 | // 4 | // Created by Tomas Timinskas on 19/04/2019. 5 | // Copyright © 2019 Sphinx. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class TransactionPaymentReceivedTableViewCell: TransactionCommonTableViewCell { 11 | 12 | override func awakeFromNib() { 13 | super.awakeFromNib() 14 | super.initialConfiguration() 15 | } 16 | 17 | override func setSelected(_ selected: Bool, animated: Bool) { 18 | super.setSelected(selected, animated: animated) 19 | } 20 | 21 | override func configureCell(transaction: PaymentTransaction?) { 22 | super.configureCell(transaction: transaction) 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /sphinx/Scenes/History/Table View Cells/TransactionPaymentSentTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Library 3 | // 4 | // Created by Tomas Timinskas on 19/04/2019. 5 | // Copyright © 2019 Sphinx. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class TransactionPaymentSentTableViewCell: TransactionCommonTableViewCell { 11 | 12 | override func awakeFromNib() { 13 | super.awakeFromNib() 14 | super.initialConfiguration() 15 | } 16 | 17 | override func setSelected(_ selected: Bool, animated: Bool) { 18 | super.setSelected(selected, animated: animated) 19 | } 20 | 21 | override func configureCell(transaction: PaymentTransaction?) { 22 | super.configureCell(transaction: transaction) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sphinx/Scenes/History/en.lproj/History.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "TRANSACTIONS"; ObjectID = "Qdx-XD-Mbl"; */ 2 | "Qdx-XD-Mbl.text" = "TRANSACTIONS"; 3 | 4 | /* Class = "UILabel"; text = "No transactions found"; ObjectID = "stK-eH-Bki"; */ 5 | "stK-eH-Bki.text" = "No transactions found"; 6 | -------------------------------------------------------------------------------- /sphinx/Scenes/History/es.lproj/History.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "TRANSACTIONS"; ObjectID = "Qdx-XD-Mbl"; */ 2 | "Qdx-XD-Mbl.text" = "TRANSACCIONES"; 3 | 4 | /* Class = "UILabel"; text = "No transactions found"; ObjectID = "stK-eH-Bki"; */ 5 | "stK-eH-Bki.text" = "No se encontraron transacciones"; 6 | -------------------------------------------------------------------------------- /sphinx/Scenes/Invite/Custom Views/en.lproj/AddFriendRowButton.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Add Friend"; ObjectID = "29C-Oy-Bxb"; */ 3 | "29C-Oy-Bxb.text" = "Add Friend"; 4 | 5 | /* Class = "UILabel"; text = "Create Group"; ObjectID = "LZc-5P-LQX"; */ 6 | "LZc-5P-LQX.text" = "Create Tribe"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Invite/Custom Views/es.lproj/AddFriendRowButton.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Add Friend"; ObjectID = "29C-Oy-Bxb"; */ 3 | "29C-Oy-Bxb.text" = "Agregar Amigo"; 4 | 5 | /* Class = "UILabel"; text = "Create Group"; ObjectID = "LZc-5P-LQX"; */ 6 | "LZc-5P-LQX.text" = "Crear Tribu"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Invite/SetDataViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SetDataViewController.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 01/10/2019. 6 | // Copyright © 2019 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SetDataViewController : UIViewController { 12 | 13 | var rootViewController : RootViewController! 14 | var contactsService : ContactsService! 15 | 16 | @IBOutlet weak var nextButton: UIButton! 17 | 18 | override func viewDidLoad() { 19 | nextButton.layer.cornerRadius = nextButton.frame.size.height / 2 20 | nextButton.clipsToBounds = true 21 | nextButton.addShadow(location: .bottom, opacity: 0.5, radius: 2.0) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sphinx/Scenes/Left Menu/Add Sats/AddSatsAppViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AddSatsAppViewController.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 16/12/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class AddSatsAppViewController: UIViewController { 12 | 13 | var rootViewController : RootViewController! 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | } 18 | 19 | static func instantiate(rootViewController : RootViewController) -> AddSatsAppViewController { 20 | let viewController = StoryboardScene.LeftMenu.addSatsAppViewController.instantiate() 21 | viewController.rootViewController = rootViewController 22 | return viewController 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sphinx/Scenes/Left Menu/LeftMenuOptionTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LeftMenuOptionTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 20/09/2019. 6 | // Copyright © 2019 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class LeftMenuOptionTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var titleLabel: UILabel! 14 | @IBOutlet weak var iconLabel: UILabel! 15 | 16 | override func awakeFromNib() { 17 | super.awakeFromNib() 18 | } 19 | 20 | override func setSelected(_ selected: Bool, animated: Bool) { 21 | super.setSelected(selected, animated: animated) 22 | } 23 | 24 | func configureCell(option: LeftMenuViewController.MenuOption) { 25 | iconLabel.text = option.iconCharacter 26 | titleLabel.text = option.optionTitle 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /sphinx/Scenes/Pin/en.lproj/Pin.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "ENTER PIN"; ObjectID = "2Ad-3F-LRd"; */ 3 | "2Ad-3F-LRd.text" = "ENTER PIN"; 4 | 5 | /* Class = "UILabel"; text = "CHOOSE PIN"; ObjectID = "JQG-3J-yyD"; */ 6 | "JQG-3J-yyD.text" = "CHOOSE PIN"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Pin/es.lproj/Pin.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "ENTER PIN"; ObjectID = "2Ad-3F-LRd"; */ 3 | "2Ad-3F-LRd.text" = "INGRESA TU PIN"; 4 | 5 | /* Class = "UILabel"; text = "CHOOSE PIN"; ObjectID = "JQG-3J-yyD"; */ 6 | "JQG-3J-yyD.text" = "ELIGE TU PIN"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/en.lproj/AppAppearenceView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Light"; ObjectID = "eDT-he-L0Q"; */ 3 | "eDT-he-L0Q.normalTitle" = "Light"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Dark"; ObjectID = "mNb-Ed-DhZ"; */ 6 | "mNb-Ed-DhZ.normalTitle" = "Dark"; 7 | 8 | /* Class = "UIButton"; normalTitle = "System"; ObjectID = "uWS-ao-oEr"; */ 9 | "uWS-ao-oEr.normalTitle" = "System"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/en.lproj/AppSizeView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Big"; ObjectID = "YVn-ix-g9Q"; */ 3 | "YVn-ix-g9Q.normalTitle" = "Big"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Small"; ObjectID = "bFw-d1-vd8"; */ 6 | "bFw-d1-vd8.normalTitle" = "Small"; 7 | 8 | /* Class = "UIButton"; normalTitle = "Medium"; ObjectID = "tPS-mJ-Jxa"; */ 9 | "tPS-mJ-Jxa.normalTitle" = "Medium"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/en.lproj/SettingsTabsView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Basic"; ObjectID = "I5t-ra-mE4"; */ 3 | "I5t-ra-mE4.normalTitle" = "Basic"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Advanced"; ObjectID = "dxC-MV-YVW"; */ 6 | "dxC-MV-YVW.normalTitle" = "Advanced"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/es.lproj/AppAppearenceView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Light"; ObjectID = "eDT-he-L0Q"; */ 3 | "eDT-he-L0Q.normalTitle" = "Claro"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Dark"; ObjectID = "mNb-Ed-DhZ"; */ 6 | "mNb-Ed-DhZ.normalTitle" = "Oscuro"; 7 | 8 | /* Class = "UIButton"; normalTitle = "System"; ObjectID = "uWS-ao-oEr"; */ 9 | "uWS-ao-oEr.normalTitle" = "Sistema"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/es.lproj/AppSizeView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Big"; ObjectID = "YVn-ix-g9Q"; */ 3 | "YVn-ix-g9Q.normalTitle" = "Grande"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Small"; ObjectID = "bFw-d1-vd8"; */ 6 | "bFw-d1-vd8.normalTitle" = "Chico"; 7 | 8 | /* Class = "UIButton"; normalTitle = "Medium"; ObjectID = "tPS-mJ-Jxa"; */ 9 | "tPS-mJ-Jxa.normalTitle" = "Mediano"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/Custom Views/es.lproj/SettingsTabsView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Basic"; ObjectID = "I5t-ra-mE4"; */ 3 | "I5t-ra-mE4.normalTitle" = "Basico"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Advanced"; ObjectID = "dxC-MV-YVW"; */ 6 | "dxC-MV-YVW.normalTitle" = "Avanzado"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Profile/ProfileViewControllerRelayExtension.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProfileViewControllerRelayExtension.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 21/08/2020. 6 | // Copyright © 2020 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension ProfileViewController { 12 | func updateRelayURL() { 13 | view.endEditing(true) 14 | 15 | if let relayURL = relayUrlTextField.text { 16 | urlUpdateHelper.updateRelayURL(newValue: relayURL, completion: relayUpdateFinished) 17 | } else { 18 | relayUpdateFinished() 19 | } 20 | } 21 | 22 | func relayUpdateFinished() { 23 | configureProfile() 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /sphinx/Scenes/QR Code Details/QRCodeDetailViewModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // QRCodeDetailsViewModel.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 23/09/2019. 6 | // Copyright © 2019 Sphinx. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class QRCodeDetailViewModel { 12 | 13 | var viewTitle: String? 14 | var qrCodeString: String? 15 | var amount: Int? 16 | 17 | init(qrCodeString: String, amount: Int?, viewTitle: String) { 18 | self.qrCodeString = qrCodeString 19 | self.amount = amount 20 | self.viewTitle = viewTitle 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sphinx/Scenes/QR Code Details/en.lproj/QRCodeDetail.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "CONFIRM"; ObjectID = "4kd-55-TFX"; */ 2 | "4kd-55-TFX.normalTitle" = "CONFIRM"; 3 | 4 | /* Class = "UILabel"; text = "Generate Invoice"; ObjectID = "Eej-fz-fO1"; */ 5 | "Eej-fz-fO1.text" = "Generate Invoice"; 6 | 7 | /* Class = "UIButton"; normalTitle = "Share"; ObjectID = "R9A-Rd-gNX"; */ 8 | "R9A-Rd-gNX.normalTitle" = "Share"; 9 | 10 | /* Class = "UILabel"; text = "Amount: "; ObjectID = "VB7-rS-zTG"; */ 11 | "VB7-rS-zTG.text" = "Amount: "; 12 | 13 | /* Class = "UILabel"; text = "PAID"; ObjectID = "daJ-Bf-qdS"; */ 14 | "daJ-Bf-qdS.text" = "PAID"; 15 | 16 | /* Class = "UIButton"; normalTitle = "Copy"; ObjectID = "t6Q-AH-Dpt"; */ 17 | "t6Q-AH-Dpt.normalTitle" = "Copy"; 18 | 19 | /* Class = "UILabel"; text = "PUBLIC KEY"; ObjectID = "xtc-ef-mNL"; */ 20 | "xtc-ef-mNL.text" = "PUBLIC KEY"; 21 | -------------------------------------------------------------------------------- /sphinx/Scenes/QR Code Details/es.lproj/QRCodeDetail.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "CONFIRM"; ObjectID = "4kd-55-TFX"; */ 3 | "4kd-55-TFX.normalTitle" = "CONFIRMAR"; 4 | 5 | /* Class = "UILabel"; text = "Generate Invoice"; ObjectID = "Eej-fz-fO1"; */ 6 | "Eej-fz-fO1.text" = "Generar solicitud"; 7 | 8 | /* Class = "UIButton"; normalTitle = "Share"; ObjectID = "R9A-Rd-gNX"; */ 9 | "R9A-Rd-gNX.normalTitle" = "Compartir"; 10 | 11 | /* Class = "UILabel"; text = "Amount: "; ObjectID = "VB7-rS-zTG"; */ 12 | "VB7-rS-zTG.text" = "Importe: "; 13 | 14 | /* Class = "UILabel"; text = "PAID"; ObjectID = "daJ-Bf-qdS"; */ 15 | "daJ-Bf-qdS.text" = "PAGADO"; 16 | 17 | /* Class = "UIButton"; normalTitle = "Copy"; ObjectID = "t6Q-AH-Dpt"; */ 18 | "t6Q-AH-Dpt.normalTitle" = "Copiar"; 19 | 20 | /* Class = "UILabel"; text = "PUBLIC KEY"; ObjectID = "xtc-ef-mNL"; */ 21 | "xtc-ef-mNL.text" = "CLAVE PÚBLICA"; 22 | -------------------------------------------------------------------------------- /sphinx/Scenes/Stakwork Login/en.lproj/Stakwork.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "AUTHORIZE"; ObjectID = "OsM-qt-t4R"; */ 3 | "OsM-qt-t4R.normalTitle" = "AUTHORIZE"; 4 | 5 | /* Class = "UILabel"; text = "AUTHORIZE WITH"; ObjectID = "Vdr-Qe-v8u"; */ 6 | "Vdr-Qe-v8u.text" = "AUTHORIZE WITH"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Stakwork Login/es.lproj/Stakwork.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "AUTHORIZE"; ObjectID = "OsM-qt-t4R"; */ 3 | "OsM-qt-t4R.normalTitle" = "AUTORIZAR"; 4 | 5 | /* Class = "UILabel"; text = "AUTHORIZE WITH"; ObjectID = "Vdr-Qe-v8u"; */ 6 | "Vdr-Qe-v8u.text" = "AUTORIZAR CON"; 7 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/en.lproj/SubscriptionAmountView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "DONE"; ObjectID = "6kD-b4-dmx"; */ 3 | "6kD-b4-dmx.normalTitle" = "DONE"; 4 | 5 | /* Class = "UIButton"; normalTitle = "CANCEL"; ObjectID = "OW6-Fc-9Ei"; */ 6 | "OW6-Fc-9Ei.normalTitle" = "CANCEL"; 7 | 8 | /* Class = "UILabel"; text = "Custom amount:"; ObjectID = "Z49-ZY-yl7"; */ 9 | "Z49-ZY-yl7.text" = "Custom amount:"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/en.lproj/SubscriptionEndRuleView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "CANCEL"; ObjectID = "GbQ-xN-c4F"; */ 3 | "GbQ-xN-c4F.normalTitle" = "CANCEL"; 4 | 5 | /* Class = "UILabel"; text = "Pay until"; ObjectID = "MtN-hi-VeI"; */ 6 | "MtN-hi-VeI.text" = "Pay until"; 7 | 8 | /* Class = "UILabel"; text = "Payments"; ObjectID = "XDq-qi-RaU"; */ 9 | "XDq-qi-RaU.text" = "Payments"; 10 | 11 | /* Class = "UIButton"; normalTitle = "DONE"; ObjectID = "Zh5-LL-F2J"; */ 12 | "Zh5-LL-F2J.normalTitle" = "DONE"; 13 | 14 | /* Class = "UILabel"; text = "Make"; ObjectID = "dIl-Hs-vmD"; */ 15 | "dIl-Hs-vmD.text" = "Make"; 16 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/en.lproj/SubscriptionTimeIntervalView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Weekly"; ObjectID = "8qG-zu-P4U"; */ 3 | "8qG-zu-P4U.text" = "Weekly"; 4 | 5 | /* Class = "UILabel"; text = "Monthly"; ObjectID = "D1Q-ch-K0W"; */ 6 | "D1Q-ch-K0W.text" = "Monthly"; 7 | 8 | /* Class = "UILabel"; text = "Daily"; ObjectID = "TC2-KU-45W"; */ 9 | "TC2-KU-45W.text" = "Daily"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/es.lproj/SubscriptionAmountView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "DONE"; ObjectID = "6kD-b4-dmx"; */ 3 | "6kD-b4-dmx.normalTitle" = "CONFIRMAR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "CANCEL"; ObjectID = "OW6-Fc-9Ei"; */ 6 | "OW6-Fc-9Ei.normalTitle" = "CANCELAR"; 7 | 8 | /* Class = "UILabel"; text = "Custom amount:"; ObjectID = "Z49-ZY-yl7"; */ 9 | "Z49-ZY-yl7.text" = "Monto:"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/es.lproj/SubscriptionEndRuleView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "CANCEL"; ObjectID = "GbQ-xN-c4F"; */ 3 | "GbQ-xN-c4F.normalTitle" = "CANCELAR"; 4 | 5 | /* Class = "UILabel"; text = "Pay until"; ObjectID = "MtN-hi-VeI"; */ 6 | "MtN-hi-VeI.text" = "Pagar hasta"; 7 | 8 | /* Class = "UILabel"; text = "Payments"; ObjectID = "XDq-qi-RaU"; */ 9 | "XDq-qi-RaU.text" = "Pagos"; 10 | 11 | /* Class = "UIButton"; normalTitle = "DONE"; ObjectID = "Zh5-LL-F2J"; */ 12 | "Zh5-LL-F2J.normalTitle" = "CONFIRMAR"; 13 | 14 | /* Class = "UILabel"; text = "Make"; ObjectID = "dIl-Hs-vmD"; */ 15 | "dIl-Hs-vmD.text" = "Realizar"; 16 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Custom Views/es.lproj/SubscriptionTimeIntervalView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Weekly"; ObjectID = "8qG-zu-P4U"; */ 3 | "8qG-zu-P4U.text" = "Semanalmente"; 4 | 5 | /* Class = "UILabel"; text = "Monthly"; ObjectID = "D1Q-ch-K0W"; */ 6 | "D1Q-ch-K0W.text" = "Mensualmente"; 7 | 8 | /* Class = "UILabel"; text = "Daily"; ObjectID = "TC2-KU-45W"; */ 9 | "TC2-KU-45W.text" = "Diariamente"; 10 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/Table View Cells/SubscriptionFormTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SubscriptionFormTableViewCell.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 12/11/2019. 6 | // Copyright © 2019 Sphinx. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SubscriptionFormTableViewCell: UITableViewCell { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | } 16 | 17 | override func setSelected(_ selected: Bool, animated: Bool) { 18 | super.setSelected(selected, animated: animated) 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/en.lproj/Subscription.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "sat / month"; ObjectID = "egx-me-iNi"; */ 2 | "egx-me-iNi.text" = "sat / month"; 3 | 4 | /* Class = "UIButton"; normalTitle = "SUBSCRIBE"; ObjectID = "j5w-7K-euL"; */ 5 | "j5w-7K-euL.normalTitle" = "SUBSCRIBE"; 6 | 7 | /* Class = "UILabel"; text = "RECURRING"; ObjectID = "sHc-7M-z7f"; */ 8 | "sHc-7M-z7f.text" = "RECURRING"; 9 | 10 | /* Class = "UILabel"; text = "Pay until:"; ObjectID = "tPr-km-QZm"; */ 11 | "tPr-km-QZm.text" = "Pay until:"; 12 | 13 | /* Class = "UILabel"; text = "ACTIVE"; ObjectID = "tX4-KT-z3P"; */ 14 | "tX4-KT-z3P.text" = "ACTIVE"; 15 | -------------------------------------------------------------------------------- /sphinx/Scenes/Subscriptions/es.lproj/Subscription.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "sat / month"; ObjectID = "egx-me-iNi"; */ 2 | "egx-me-iNi.text" = "sat / mes"; 3 | 4 | /* Class = "UIButton"; normalTitle = "SUBSCRIBE"; ObjectID = "j5w-7K-euL"; */ 5 | "j5w-7K-euL.normalTitle" = "SUSCRIBIRSE"; 6 | 7 | /* Class = "UILabel"; text = "RECURRING"; ObjectID = "sHc-7M-z7f"; */ 8 | "sHc-7M-z7f.text" = "PAGOS RECURRENTES"; 9 | 10 | /* Class = "UILabel"; text = "Pay until:"; ObjectID = "tPr-km-QZm"; */ 11 | "tPr-km-QZm.text" = "Pagar hasta:"; 12 | 13 | /* Class = "UILabel"; text = "ACTIVE"; ObjectID = "tX4-KT-z3P"; */ 14 | "tX4-KT-z3P.text" = "ACTIVO"; 15 | -------------------------------------------------------------------------------- /sphinx/Scenes/WebAppsAndPodcasts/Downloads/Download.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Download.swift 3 | // sphinx 4 | // 5 | // Created by Tomas Timinskas on 25/02/2021. 6 | // Copyright © 2021 Tomas Timinskas. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Download { 12 | var isDownloading = false 13 | var progress: Float = 0 14 | var resumeData: Data? 15 | var task: URLSessionDownloadTask? 16 | var episode: PodcastEpisode 17 | 18 | init(episode: PodcastEpisode) { 19 | self.episode = episode 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sphinx/Scenes/WebAppsAndPodcasts/Views/en.lproj/AuthorizeAppView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "AUTHORIZE"; ObjectID = "gJV-Mb-BKs"; */ 2 | "gJV-Mb-BKs.normalTitle" = "AUTHORIZE"; 3 | 4 | /* Class = "UILabel"; text = "sats before reauthorizing"; ObjectID = "hnl-fy-YH4"; */ 5 | "hnl-fy-YH4.text" = "sats before reauthorizing"; 6 | 7 | /* Class = "UILabel"; text = "Authorize"; ObjectID = "or5-Hw-Tjf"; */ 8 | "or5-Hw-Tjf.text" = "Authorize"; 9 | 10 | /* Class = "UILabel"; text = "to withdraw up to"; ObjectID = "x6U-ec-b6h"; */ 11 | "x6U-ec-b6h.text" = "to withdraw up to"; 12 | -------------------------------------------------------------------------------- /sphinx/Scenes/WebAppsAndPodcasts/Views/es.lproj/AuthorizeAppView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "AUTHORIZE"; ObjectID = "gJV-Mb-BKs"; */ 2 | "gJV-Mb-BKs.normalTitle" = "AUTORIZAR"; 3 | 4 | /* Class = "UILabel"; text = "sats before reauthorizing"; ObjectID = "hnl-fy-YH4"; */ 5 | "hnl-fy-YH4.text" = "sats antes de reautorizar"; 6 | 7 | /* Class = "UILabel"; text = "Authorize"; ObjectID = "or5-Hw-Tjf"; */ 8 | "or5-Hw-Tjf.text" = "Autorizar"; 9 | 10 | /* Class = "UILabel"; text = "to withdraw up to"; ObjectID = "x6U-ec-b6h"; */ 11 | "x6U-ec-b6h.text" = "a retirar hasta"; 12 | -------------------------------------------------------------------------------- /sphinx/Scenes/WebAppsAndPodcasts/en.lproj/WebApps.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "SATS EARNED"; ObjectID = "L59-9f-2z9"; */ 2 | "L59-9f-2z9.text" = "SATS EARNED"; 3 | 4 | "bmE-a4-L39.text" = "NEW EPISODE"; 5 | -------------------------------------------------------------------------------- /sphinx/Scenes/WebAppsAndPodcasts/es.lproj/WebApps.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "SATS EARNED"; ObjectID = "L59-9f-2z9"; */ 2 | "L59-9f-2z9.text" = "SATS GANADOS"; 3 | 4 | "bmE-a4-L39.text" = "NUEVO EPISODIO"; 5 | -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-Black.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-Bold.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-ExtraBold.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-Light.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Montserrat-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Montserrat-SemiBold.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/MyriadPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/MyriadPro-Regular.otf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/aurora.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/aurora.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/bamboo.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/bamboo.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/bell.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/bell.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/bells.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/bells.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/glass.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/glass.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/horn.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/horn.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/note.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/note.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/popcorn.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/popcorn.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/synth.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/synth.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/tri-tone.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/tri-tone.caf -------------------------------------------------------------------------------- /sphinx/Supporting Files/Sounds/tweet.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakwork/sphinx-ios/6fc59948c8c6dd97fe2da031b537e29c161493d4/sphinx/Supporting Files/Sounds/tweet.caf -------------------------------------------------------------------------------- /sphinx/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sphinx/sphinx.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | keychain-access-groups 8 | 9 | $(AppIdentifierPrefix)sphinxSharedItems 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /sphinxTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /sphinxUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | --------------------------------------------------------------------------------