├── .github └── workflows │ ├── main.yml │ └── swiftlint.yml ├── .gitignore ├── .swiftlint.yml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── AuthenticationInterceptor.swift │ │ ├── CachedResponseHandler.swift │ │ ├── Combine.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift ├── Manifest.lock ├── Mocker │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Mock.swift │ │ ├── Mocker.swift │ │ └── MockingURLProtocol.swift ├── Pods.xcodeproj │ └── project.pbxproj ├── SDWebImage │ ├── LICENSE │ ├── README.md │ ├── SDWebImage │ │ ├── Core │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── NSImage+Compatibility.m │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImage.m │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAnimatedImageView.m │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDiskCache.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoder.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCacheDefine.m │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManager.m │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoder.m │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCoderHelper.m │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageCodersManager.m │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFrame.m │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoder.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageHEICCoder.m │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageIOCoder.m │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoader.m │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageLoadersManager.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDMemoryCache.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageHEICCoderInternal.h │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h ├── SwiftGen │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.md │ ├── bin │ │ └── swiftgen │ ├── lib │ │ ├── Commander.framework │ │ │ ├── Commander │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Commander │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── Commander │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── Kanna.framework │ │ │ ├── Kanna │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Kanna │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── Kanna │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── PathKit.framework │ │ │ ├── PathKit │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── PathKit │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── PathKit │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── Stencil.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── Stencil │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── Stencil │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Stencil │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── StencilSwiftKit.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── StencilSwiftKit │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── StencilSwiftKit │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── StencilSwiftKit │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── SwiftGenKit.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SwiftGenKit │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── SwiftGenKit │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── SwiftGenKit │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── Yams.framework │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Yams │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Yams │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Yams │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ └── templates │ │ ├── colors │ │ ├── literals-swift3.stencil │ │ ├── literals-swift4.stencil │ │ ├── swift3.stencil │ │ └── swift4.stencil │ │ ├── coredata │ │ ├── swift3.stencil │ │ └── swift4.stencil │ │ ├── fonts │ │ ├── swift3.stencil │ │ └── swift4.stencil │ │ ├── ib │ │ ├── scenes-swift3.stencil │ │ ├── scenes-swift4.stencil │ │ ├── segues-swift3.stencil │ │ └── segues-swift4.stencil │ │ ├── json │ │ ├── inline-swift3.stencil │ │ ├── inline-swift4.stencil │ │ ├── runtime-swift3.stencil │ │ └── runtime-swift4.stencil │ │ ├── plist │ │ ├── inline-swift3.stencil │ │ ├── inline-swift4.stencil │ │ ├── runtime-swift3.stencil │ │ └── runtime-swift4.stencil │ │ ├── strings │ │ ├── flat-swift3.stencil │ │ ├── flat-swift4.stencil │ │ ├── structured-swift3.stencil │ │ └── structured-swift4.stencil │ │ ├── xcassets │ │ ├── swift3.stencil │ │ └── swift4.stencil │ │ └── yaml │ │ ├── inline-swift3.stencil │ │ └── inline-swift4.stencil ├── SwiftLint │ ├── LICENSE │ └── swiftlint └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.debug.xcconfig │ ├── Alamofire.modulemap │ ├── Alamofire.release.xcconfig │ └── Alamofire.xcconfig │ ├── Mocker │ ├── Mocker-Info.plist │ ├── Mocker-dummy.m │ ├── Mocker-prefix.pch │ ├── Mocker-umbrella.h │ ├── Mocker.modulemap │ └── Mocker.xcconfig │ ├── Pods-SayTheirNames │ ├── Pods-SayTheirNames-Info.plist │ ├── Pods-SayTheirNames-acknowledgements.markdown │ ├── Pods-SayTheirNames-acknowledgements.plist │ ├── Pods-SayTheirNames-dummy.m │ ├── Pods-SayTheirNames-frameworks-Debug-input-files.xcfilelist │ ├── Pods-SayTheirNames-frameworks-Debug-output-files.xcfilelist │ ├── Pods-SayTheirNames-frameworks-Release-input-files.xcfilelist │ ├── Pods-SayTheirNames-frameworks-Release-output-files.xcfilelist │ ├── Pods-SayTheirNames-frameworks.sh │ ├── Pods-SayTheirNames-umbrella.h │ ├── Pods-SayTheirNames.debug.xcconfig │ ├── Pods-SayTheirNames.modulemap │ └── Pods-SayTheirNames.release.xcconfig │ ├── Pods-SayTheirNamesTests │ ├── Pods-SayTheirNamesTests-Info.plist │ ├── Pods-SayTheirNamesTests-acknowledgements.markdown │ ├── Pods-SayTheirNamesTests-acknowledgements.plist │ ├── Pods-SayTheirNamesTests-dummy.m │ ├── Pods-SayTheirNamesTests-frameworks-Debug-input-files.xcfilelist │ ├── Pods-SayTheirNamesTests-frameworks-Debug-output-files.xcfilelist │ ├── Pods-SayTheirNamesTests-frameworks-Release-input-files.xcfilelist │ ├── Pods-SayTheirNamesTests-frameworks-Release-output-files.xcfilelist │ ├── Pods-SayTheirNamesTests-frameworks.sh │ ├── Pods-SayTheirNamesTests-umbrella.h │ ├── Pods-SayTheirNamesTests.debug.xcconfig │ ├── Pods-SayTheirNamesTests.modulemap │ └── Pods-SayTheirNamesTests.release.xcconfig │ ├── SDWebImage │ ├── SDWebImage-Info.plist │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ ├── SDWebImage-umbrella.h │ ├── SDWebImage.modulemap │ └── SDWebImage.xcconfig │ ├── SwiftGen │ └── SwiftGen.xcconfig │ └── SwiftLint │ └── SwiftLint.xcconfig ├── README.md ├── SayTheirNames.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ └── SayTheirNames.xcscheme ├── SayTheirNames.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SayTheirNames ├── Resources │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Localizable.strings │ ├── Color.xcassets │ │ ├── Contents.json │ │ ├── actionButton.colorset │ │ │ └── Contents.json │ │ ├── actionButtonTint.colorset │ │ │ └── Contents.json │ │ ├── background.colorset │ │ │ └── Contents.json │ │ ├── black.colorset │ │ │ └── Contents.json │ │ ├── cellBackground.colorset │ │ │ └── Contents.json │ │ ├── darkGray.colorset │ │ │ └── Contents.json │ │ ├── detailLabel.colorset │ │ │ └── Contents.json │ │ ├── gray.colorset │ │ │ └── Contents.json │ │ ├── inverse.colorset │ │ │ └── Contents.json │ │ ├── lightHeader.colorset │ │ │ └── Contents.json │ │ ├── navBarBackground.colorset │ │ │ └── Contents.json │ │ ├── navBarForeground.colorset │ │ │ └── Contents.json │ │ ├── primaryLabel.colorset │ │ │ └── Contents.json │ │ ├── searchBarText.colorset │ │ │ └── Contents.json │ │ ├── secondaryLabel.colorset │ │ │ └── Contents.json │ │ ├── separator.colorset │ │ │ └── Contents.json │ │ ├── strongHeader.colorset │ │ │ └── Contents.json │ │ ├── tabBarBarTint.colorset │ │ │ └── Contents.json │ │ ├── tabBarBorder.colorset │ │ │ └── Contents.json │ │ ├── tabBarTint.colorset │ │ │ └── Contents.json │ │ ├── tabBarUnselectedItemTint.colorset │ │ │ └── Contents.json │ │ └── white.colorset │ │ │ └── Contents.json │ ├── Generated │ │ ├── assets.swift │ │ └── strings.swift │ ├── Image.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 20@2x.png │ │ │ ├── 20@3x.png │ │ │ ├── 29.png │ │ │ ├── 29@2x.png │ │ │ ├── 29@3x.png │ │ │ ├── 40@2x.png │ │ │ ├── 40@3x.png │ │ │ ├── 57.png │ │ │ ├── 57@2x.png │ │ │ ├── 60@2x.png │ │ │ ├── 60@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── icons │ │ │ ├── Contents.json │ │ │ ├── Like.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Like.png │ │ │ │ ├── Like@2x.png │ │ │ │ └── Like@3x.png │ │ │ ├── STN_logo_blaock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── STN-Logo.png │ │ │ │ ├── STN-Logo@2x.png │ │ │ │ └── STN-Logo@3x.png │ │ │ ├── STN_logo_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── STN-Logo-white.png │ │ │ │ ├── STN-Logo-white@2x.png │ │ │ │ └── STN-Logo-white@3x.png │ │ │ ├── arrow_left.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group 174.png │ │ │ │ ├── Group 174@2x.png │ │ │ │ └── Group 174@3x.png │ │ │ ├── arrow_right.imageset │ │ │ │ ├── Arrow Icon.png │ │ │ │ ├── Arrow Icon@2x.png │ │ │ │ ├── Arrow Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── bookmark.imageset │ │ │ │ ├── BOOKMARK.png │ │ │ │ ├── BOOKMARK@2x.png │ │ │ │ ├── BOOKMARK@3x.png │ │ │ │ └── Contents.json │ │ │ ├── bookmark_active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Path_507.png │ │ │ │ ├── Path_507@2x.png │ │ │ │ └── Path_507@3x.png │ │ │ ├── bookmark_white.imageset │ │ │ │ ├── Bookmark.png │ │ │ │ ├── Bookmark@2x.png │ │ │ │ ├── Bookmark@3x.png │ │ │ │ └── Contents.json │ │ │ ├── close.imageset │ │ │ │ ├── Close Icon.png │ │ │ │ ├── Close Icon@2x.png │ │ │ │ ├── Close Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── gallery.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gallery.png │ │ │ │ ├── gallery@2x.png │ │ │ │ └── gallery@3x.png │ │ │ ├── gallery_active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gallery_active.png │ │ │ │ ├── gallery_active@2x.png │ │ │ │ └── gallery_active@3x.png │ │ │ ├── heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── heart.png │ │ │ │ ├── heart@2x.png │ │ │ │ └── heart@3x.png │ │ │ ├── heart_active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── heart_active.png │ │ │ │ ├── heart_active@2x.png │ │ │ │ └── heart_active@3x.png │ │ │ ├── news_bbc.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── news_bbc.png │ │ │ │ ├── news_bbc@2x.png │ │ │ │ └── news_bbc@3x.png │ │ │ ├── petition.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── petition.png │ │ │ │ ├── petition@2x.png │ │ │ │ └── petition@3x.png │ │ │ ├── petition_active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── petition_active.png │ │ │ │ ├── petition_active@2x.png │ │ │ │ └── petition_active@3x.png │ │ │ ├── search.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Simple Search Icon.png │ │ │ │ ├── Simple Search Icon@2x.png │ │ │ │ └── Simple Search Icon@3x.png │ │ │ ├── search_vector.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── search_vector.pdf │ │ │ ├── search_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── search 1.png │ │ │ │ ├── search 1@2x.png │ │ │ │ └── search 1@3x.png │ │ │ ├── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── settings.png │ │ │ │ ├── settings@2x.png │ │ │ │ └── settings@3x.png │ │ │ ├── settings_active.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── settings_active.png │ │ │ │ ├── settings_active@2x.png │ │ │ │ └── settings_active@3x.png │ │ │ ├── share_dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_dark.png │ │ │ │ ├── share_dark@2x.png │ │ │ │ └── share_dark@3x.png │ │ │ ├── share_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_white.png │ │ │ │ ├── share_white@2x.png │ │ │ │ └── share_white@3x.png │ │ │ ├── twitter_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── twitter_logo.png │ │ │ │ ├── twitter_logo@2x.png │ │ │ │ └── twitter_logo@3x.png │ │ │ └── user_circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── user_circle.png │ │ │ │ ├── user_circle@2x.png │ │ │ │ └── user_circle@3x.png │ │ └── stock │ │ │ ├── Contents.json │ │ │ ├── lives_matter.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 6.png │ │ │ ├── Group 6@2x.png │ │ │ └── Group 6@3x.png │ │ │ ├── man_in_red_jacket.imageset │ │ │ ├── Contents.json │ │ │ └── man-in-red-jacket-1681010.jpg │ │ │ ├── media_image_1.imageset │ │ │ ├── Contents.json │ │ │ └── media-image-1.png │ │ │ ├── media_image_2.imageset │ │ │ ├── Contents.json │ │ │ └── man-wearing-yellow-jacket-1317712.jpg │ │ │ └── placeholder.imageset │ │ │ ├── 1024.png │ │ │ └── Contents.json │ ├── Info.plist │ ├── ar.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ ├── LaunchScreen.strings │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ ├── LaunchScreen.strings │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ ├── LaunchScreen.strings │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ ├── LaunchScreen.strings │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ └── ru.lproj │ │ └── Localizable.strings ├── Say Their Names.entitlements └── Source │ ├── Components │ ├── CollectionViewManager │ │ ├── CollectionViewManager.swift │ │ └── SingleSection.swift │ ├── CustomNavigationController.swift │ └── MainTabBarController.swift │ ├── Controller │ ├── Donations │ │ ├── DonationFilter.swift │ │ ├── DonationFilterViewManager.swift │ │ ├── DonationsCollectionViewManager.swift │ │ ├── DonationsController.swift │ │ ├── DonationsMoreDetails │ │ │ ├── DMDCollectionViewDataSource.swift │ │ │ ├── DonationTypes.swift │ │ │ ├── DonationsMoreDetailsController+Layout.swift │ │ │ ├── DonationsMoreDetailsController.swift │ │ │ └── View │ │ │ │ ├── DMDDonationButtonSupplementaryView.swift │ │ │ │ ├── DMDPhotoSupplementaryView.swift │ │ │ │ ├── DMDSectionTitleSupplementaryView.swift │ │ │ │ ├── DMDTextContentCell.swift │ │ │ │ └── DMDTitleCell.swift │ │ └── DonationsView.swift │ ├── Home │ │ ├── CollectionViewDataSource │ │ │ ├── Carousel │ │ │ │ ├── CarouselCollectionViewCell.swift │ │ │ │ └── LineCarouselControl.swift │ │ │ ├── LocationCollectionViewDataSource.swift │ │ │ └── PersonCollectionViewDataSource.swift │ │ ├── HomeController.swift │ │ ├── HomeView.swift │ │ └── Person │ │ │ ├── PersonController.swift │ │ │ └── Views │ │ │ ├── PersonInfoTableViewCell.swift │ │ │ ├── PersonMediaCollectionViewCell.swift │ │ │ ├── PersonNewsCollectionViewCell.swift │ │ │ ├── PersonNewsTableViewCell.swift │ │ │ ├── PersonOverviewTableViewCell.swift │ │ │ └── PersonPhotoTableViewCell.swift │ ├── Launch │ │ ├── LaunchScreen.swift │ │ └── LaunchScreen.xib │ ├── More │ │ ├── MoreCard.swift │ │ ├── MoreController.swift │ │ ├── MoreView.swift │ │ └── RequestOrRemoveTextView.swift │ ├── Petitions │ │ ├── PetitionsCollectionViewManager.swift │ │ ├── PetitionsController.swift │ │ └── PetitionsView.swift │ ├── Search │ │ ├── SearchController.swift │ │ ├── SearchResult.swift │ │ ├── SearchResultCell.swift │ │ └── SearchView.swift │ └── Settings │ │ └── SettingsController.swift │ ├── Dependency │ ├── DateFormatter │ │ └── DateFormatterService.swift │ ├── DeepLinking │ │ ├── Deep Links │ │ │ ├── AboutDeepLink.swift │ │ │ ├── DonationsDeepLink.swift │ │ │ ├── HomeDeepLink.swift │ │ │ ├── PersonDeepLink.swift │ │ │ └── PetitionsDeepLink.swift │ │ ├── DeepLink.swift │ │ ├── DeepLinkDetails.swift │ │ ├── DeepLinkHandler.swift │ │ └── DeepLinkSupport.swift │ ├── DependencyContainer.swift │ ├── ImageService+MetadataService.swift │ ├── ImageService.swift │ ├── MetadataService.swift │ ├── Navigator │ │ └── Navigator.swift │ ├── Networking │ │ ├── Environment.swift │ │ ├── NetworkRequestor.swift │ │ └── Requestors │ │ │ ├── DonationsNetworkRequestor.swift │ │ │ ├── PeopleNetworkRequestor.swift │ │ │ ├── PetitionsNetworkRequestor.swift │ │ │ └── SearchNetworkRequestor.swift │ ├── ServiceReferring.swift │ └── ShareService.swift │ ├── FeatureFlags.swift │ ├── Log │ └── Log.swift │ ├── Model │ ├── Donation.swift │ ├── Hashtag.swift │ ├── HeaderCellContent.swift │ ├── HeroContent.swift │ ├── Image.swift │ ├── Link.swift │ ├── Location.swift │ ├── Media.swift │ ├── News.swift │ ├── Person.swift │ ├── Petition.swift │ ├── Search.swift │ ├── Shareable.swift │ └── SocialMedia.swift │ ├── STNAppDelegate.swift │ ├── SceneDelegate.swift │ ├── Utils │ ├── Extentions │ │ ├── AFError+STN.swift │ │ ├── Bundle+STN.swift │ │ ├── DispatchQueue+STN.swift │ │ ├── NSMutableAttributedString++.swift │ │ ├── Operation++.swift │ │ ├── Result+STN.swift │ │ ├── String+STN.swift │ │ ├── UIApplication+STN.swift │ │ ├── UIButton++.swift │ │ ├── UICollectionReusableView+Reusable.swift │ │ ├── UICollectionView++.swift │ │ ├── UIColor+STN.swift │ │ ├── UIDevice+STN.swift │ │ ├── UIEdgeInsets+init.swift │ │ ├── UIFont+STN.swift │ │ ├── UIStackView++.swift │ │ ├── UITableView++.swift │ │ ├── UITableViewCell++.swift │ │ ├── UITraitCollection++.swift │ │ ├── UIView++.swift │ │ ├── UIViewController++.swift │ │ ├── UIViewController+TabBar.swift │ │ └── URLComponents+STN.swift │ ├── Fonts │ │ ├── Karla-Bold.ttf │ │ ├── Karla-Regular.ttf │ │ └── UIFont+Resource.swift │ ├── Operators │ │ └── Operators.swift │ ├── Pagination │ │ └── Paginator.swift │ ├── Protocols │ │ ├── Creatable.swift │ │ ├── DynamicHeightCalculable.swift │ │ └── Reusable.swift │ ├── Size │ │ └── STNSize.swift │ ├── Theme │ │ └── Theme.swift │ └── Typealiases │ │ └── Typealiases.swift │ └── View │ ├── ButtonContainerView.swift │ ├── CallToAction │ ├── CallToAction.swift │ ├── CallToActionCell.swift │ ├── CallToActionCollectionView.swift │ └── TagView.swift │ ├── Filter │ ├── FilterCategory.swift │ ├── FilterCategoryCell.swift │ └── FiltersCollectionView.swift │ ├── Hashtag │ ├── HashtagTableViewCell.swift │ ├── HashtagView.swift │ └── HashtagViewCollectionViewCell.swift │ ├── Home │ ├── Hero │ │ └── HeroTextCell.swift │ └── Person │ │ ├── PersonCell.swift │ │ ├── PersonCell.xib │ │ └── PersonHeaderCell.swift │ └── ImageWithBlurView.swift ├── SayTheirNamesTests ├── DataSourceTests │ ├── LocationCollectionViewDataSourceTests.swift │ └── PersonCollectionViewDataSourceHelperTests.swift ├── DateFormatterServiceTest │ └── DateFormatterServiceTests.swift ├── ExtensionsTests │ ├── UIEdgeInsetsInitTests.swift │ └── UIFontSTNTests.swift ├── Info.plist ├── LaunchTests │ └── LaunchScreenTests.swift ├── Model │ ├── JSONDataModelAPIs.xcassets │ │ ├── Contents.json │ │ ├── donations.dataset │ │ │ ├── Contents.json │ │ │ └── donations.json │ │ ├── people.dataset │ │ │ ├── Contents.json │ │ │ └── people.json │ │ ├── petitions.dataset │ │ │ ├── Contents.json │ │ │ └── petitions.json │ │ └── search.dataset │ │ │ ├── Contents.json │ │ │ └── search.json │ └── ModelTests.swift ├── Say_Their_NamesTests.swift ├── ServiceTests │ ├── DeepLinkTests.swift │ ├── NetworkRequestorTests.swift │ └── Requestors │ │ ├── DonationsNetworkRequestorTests.swift │ │ ├── PeopleNetworkRequestorTests.swift │ │ ├── PetitionsNetworkRequestorTests.swift │ │ └── SearchNetworkRequestorTests.swift └── UtilsTests │ └── PaginatorTests.swift ├── SayTheirNamesUITests ├── Info.plist ├── SayTheirNamesUITests.swift └── XCUIApplication+SayTheirName.swift ├── scripts └── download_loco.sh └── swiftgen.yml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AuthenticationInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/AuthenticationInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/OperationQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/OperationQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/StringEncoding+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/StringEncoding+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Mocker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Mocker/LICENSE -------------------------------------------------------------------------------- /Pods/Mocker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Mocker/README.md -------------------------------------------------------------------------------- /Pods/Mocker/Sources/Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Mocker/Sources/Mock.swift -------------------------------------------------------------------------------- /Pods/Mocker/Sources/Mocker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Mocker/Sources/Mocker.swift -------------------------------------------------------------------------------- /Pods/Mocker/Sources/MockingURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Mocker/Sources/MockingURLProtocol.swift -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageHEICCoderInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageHEICCoderInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/SwiftGen/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/SwiftGen/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/LICENCE -------------------------------------------------------------------------------- /Pods/SwiftGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/README.md -------------------------------------------------------------------------------- /Pods/SwiftGen/bin/swiftgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/bin/swiftgen -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Commander -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/A/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/A/Commander -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/Current/Commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/Current/Commander -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Commander.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Commander.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Kanna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Kanna -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/A/Kanna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/A/Kanna -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/Current/Kanna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/Current/Kanna -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Kanna.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Kanna.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/PathKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/A/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/A/PathKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/Current/PathKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/Current/PathKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/PathKit.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/PathKit.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/A/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/A/Stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/Current/Stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/Current/Stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Stencil.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Stencil.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/StencilSwiftKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/StencilSwiftKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/StencilSwiftKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/StencilSwiftKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/StencilSwiftKit.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/SwiftGenKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/SwiftGenKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/SwiftGenKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/SwiftGenKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/SwiftGenKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/SwiftGenKit -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/SwiftGenKit.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/A/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/A/Yams -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/Current/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/Current/Yams -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/Yams.framework/Yams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/Yams.framework/Yams -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftAppKit.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftCore.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftCoreData.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftDarwin.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftDispatch.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftFoundation.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftIOKit.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftMetal.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftXPC.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/lib/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/lib/libswiftos.dylib -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/colors/literals-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/colors/literals-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/colors/literals-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/colors/literals-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/colors/swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/colors/swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/colors/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/colors/swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/coredata/swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/coredata/swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/coredata/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/coredata/swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/fonts/swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/fonts/swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/fonts/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/fonts/swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/ib/scenes-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/ib/scenes-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/ib/scenes-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/ib/scenes-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/ib/segues-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/ib/segues-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/ib/segues-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/ib/segues-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/json/inline-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/json/inline-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/json/inline-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/json/inline-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/json/runtime-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/json/runtime-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/json/runtime-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/json/runtime-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/plist/inline-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/plist/inline-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/plist/inline-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/plist/inline-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/plist/runtime-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/plist/runtime-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/plist/runtime-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/plist/runtime-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/strings/flat-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/strings/flat-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/strings/flat-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/strings/flat-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/strings/structured-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/strings/structured-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/strings/structured-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/strings/structured-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/xcassets/swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/xcassets/swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/xcassets/swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/xcassets/swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/yaml/inline-swift3.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/yaml/inline-swift3.stencil -------------------------------------------------------------------------------- /Pods/SwiftGen/templates/yaml/inline-swift4.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftGen/templates/yaml/inline-swift4.stencil -------------------------------------------------------------------------------- /Pods/SwiftLint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftLint/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Mocker/Mocker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Mocker/Mocker.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNames/Pods-SayTheirNames.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Mocker.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Mocker.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/Pods-SayTheirNamesTests/Pods-SayTheirNamesTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftGen/SwiftGen.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SwiftGen/SwiftGen.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/Pods/Target Support Files/SwiftLint/SwiftLint.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/README.md -------------------------------------------------------------------------------- /SayTheirNames.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SayTheirNames.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SayTheirNames.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SayTheirNames.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /SayTheirNames.xcodeproj/xcshareddata/xcschemes/SayTheirNames.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcodeproj/xcshareddata/xcschemes/SayTheirNames.xcscheme -------------------------------------------------------------------------------- /SayTheirNames.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SayTheirNames.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SayTheirNames/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SayTheirNames/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/actionButton.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/actionButton.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/actionButtonTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/actionButtonTint.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/background.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/black.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/black.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/cellBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/cellBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/darkGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/darkGray.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/detailLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/detailLabel.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/gray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/gray.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/inverse.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/inverse.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/lightHeader.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/lightHeader.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/navBarBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/navBarBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/navBarForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/navBarForeground.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/primaryLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/primaryLabel.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/searchBarText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/searchBarText.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/secondaryLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/secondaryLabel.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/separator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/separator.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/strongHeader.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/strongHeader.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/tabBarBarTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/tabBarBarTint.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/tabBarBorder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/tabBarBorder.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/tabBarTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/tabBarTint.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/tabBarUnselectedItemTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/tabBarUnselectedItemTint.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Color.xcassets/white.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Color.xcassets/white.colorset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Generated/assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Generated/assets.swift -------------------------------------------------------------------------------- /SayTheirNames/Resources/Generated/strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Generated/strings.swift -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/20@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/20@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/29@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/40@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/40@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/57@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/60@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/60@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/Like.imageset/Like@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_blaock.imageset/STN-Logo@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/STN_logo_white.imageset/STN-Logo-white@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_left.imageset/Group 174@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Arrow Icon@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/arrow_right.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/BOOKMARK@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_active.imageset/Path_507@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Bookmark@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/bookmark_white.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Close Icon@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/close.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery.imageset/gallery@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/gallery_active.imageset/gallery_active@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart.imageset/heart@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/heart_active.imageset/heart_active@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/news_bbc.imageset/news_bbc@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition.imageset/petition@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/petition_active.imageset/petition_active@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search.imageset/Simple Search Icon@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_vector.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_vector.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_vector.imageset/search_vector.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_vector.imageset/search_vector.pdf -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/search_white.imageset/search 1@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings.imageset/settings@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/settings_active.imageset/settings_active@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_dark.imageset/share_dark@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/share_white.imageset/share_white@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/twitter_logo.imageset/twitter_logo@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/icons/user_circle.imageset/user_circle@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6@2x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/lives_matter.imageset/Group 6@3x.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/man_in_red_jacket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/man_in_red_jacket.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/man_in_red_jacket.imageset/man-in-red-jacket-1681010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/man_in_red_jacket.imageset/man-in-red-jacket-1681010.jpg -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/media_image_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/media_image_1.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/media_image_1.imageset/media-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/media_image_1.imageset/media-image-1.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/media_image_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/media_image_2.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/placeholder.imageset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/placeholder.imageset/1024.png -------------------------------------------------------------------------------- /SayTheirNames/Resources/Image.xcassets/stock/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Image.xcassets/stock/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /SayTheirNames/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/Info.plist -------------------------------------------------------------------------------- /SayTheirNames/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SayTheirNames/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SayTheirNames/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SayTheirNames/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/nl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SayTheirNames/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /SayTheirNames/Say Their Names.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Say Their Names.entitlements -------------------------------------------------------------------------------- /SayTheirNames/Source/Components/CollectionViewManager/CollectionViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Components/CollectionViewManager/CollectionViewManager.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Components/CollectionViewManager/SingleSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Components/CollectionViewManager/SingleSection.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Components/CustomNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Components/CustomNavigationController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Components/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Components/MainTabBarController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationFilter.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationFilterViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationFilterViewManager.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsCollectionViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsCollectionViewManager.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DMDCollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DMDCollectionViewDataSource.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DonationTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DonationTypes.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DonationsMoreDetailsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/DonationsMoreDetailsController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDPhotoSupplementaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDPhotoSupplementaryView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDTextContentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDTextContentCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsMoreDetails/View/DMDTitleCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Donations/DonationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Donations/DonationsView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/CollectionViewDataSource/Carousel/LineCarouselControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/CollectionViewDataSource/Carousel/LineCarouselControl.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/CollectionViewDataSource/LocationCollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/CollectionViewDataSource/LocationCollectionViewDataSource.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/CollectionViewDataSource/PersonCollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/CollectionViewDataSource/PersonCollectionViewDataSource.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/HomeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/HomeController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/HomeView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/PersonController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/PersonController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonInfoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonInfoTableViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonMediaCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonMediaCollectionViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonNewsCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonNewsCollectionViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonNewsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonNewsTableViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonOverviewTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonOverviewTableViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Home/Person/Views/PersonPhotoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Home/Person/Views/PersonPhotoTableViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Launch/LaunchScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Launch/LaunchScreen.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Launch/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Launch/LaunchScreen.xib -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/More/MoreCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/More/MoreCard.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/More/MoreController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/More/MoreController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/More/MoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/More/MoreView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/More/RequestOrRemoveTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/More/RequestOrRemoveTextView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Petitions/PetitionsCollectionViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Petitions/PetitionsCollectionViewManager.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Petitions/PetitionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Petitions/PetitionsController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Petitions/PetitionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Petitions/PetitionsView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Search/SearchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Search/SearchController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Search/SearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Search/SearchResult.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Search/SearchResultCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Search/SearchResultCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Search/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Search/SearchView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Controller/Settings/SettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Controller/Settings/SettingsController.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DateFormatter/DateFormatterService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DateFormatter/DateFormatterService.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/Deep Links/AboutDeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/Deep Links/AboutDeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/Deep Links/DonationsDeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/Deep Links/DonationsDeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/Deep Links/HomeDeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/Deep Links/HomeDeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/Deep Links/PersonDeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/Deep Links/PersonDeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/Deep Links/PetitionsDeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/Deep Links/PetitionsDeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/DeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/DeepLink.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/DeepLinkDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/DeepLinkDetails.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/DeepLinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/DeepLinkHandler.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DeepLinking/DeepLinkSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DeepLinking/DeepLinkSupport.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/DependencyContainer.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/ImageService+MetadataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/ImageService+MetadataService.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/ImageService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/ImageService.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/MetadataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/MetadataService.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Navigator/Navigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Navigator/Navigator.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/Environment.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/NetworkRequestor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/NetworkRequestor.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/Requestors/DonationsNetworkRequestor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/Requestors/DonationsNetworkRequestor.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/Requestors/PeopleNetworkRequestor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/Requestors/PeopleNetworkRequestor.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/Requestors/PetitionsNetworkRequestor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/Requestors/PetitionsNetworkRequestor.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/Networking/Requestors/SearchNetworkRequestor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/Networking/Requestors/SearchNetworkRequestor.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/ServiceReferring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/ServiceReferring.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Dependency/ShareService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Dependency/ShareService.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/FeatureFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/FeatureFlags.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Log/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Log/Log.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Donation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Donation.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Hashtag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Hashtag.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/HeaderCellContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/HeaderCellContent.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/HeroContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/HeroContent.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Image.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Link.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Location.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Media.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/News.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Person.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Petition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Petition.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Search.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/Shareable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/Shareable.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Model/SocialMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Model/SocialMedia.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/STNAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/STNAppDelegate.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/SceneDelegate.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/AFError+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/AFError+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/Bundle+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/Bundle+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/DispatchQueue+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/DispatchQueue+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/NSMutableAttributedString++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/NSMutableAttributedString++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/Operation++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/Operation++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/Result+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/Result+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/String+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/String+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIApplication+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIApplication+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIButton++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIButton++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UICollectionReusableView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UICollectionReusableView+Reusable.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UICollectionView++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UICollectionView++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIColor+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIColor+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIDevice+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIDevice+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIEdgeInsets+init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIEdgeInsets+init.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIFont+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIFont+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIStackView++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIStackView++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UITableView++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UITableView++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UITableViewCell++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UITableViewCell++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UITraitCollection++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UITraitCollection++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIView++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIView++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIViewController++.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIViewController++.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/UIViewController+TabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/UIViewController+TabBar.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Extentions/URLComponents+STN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Extentions/URLComponents+STN.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Fonts/Karla-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Fonts/Karla-Bold.ttf -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Fonts/UIFont+Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Fonts/UIFont+Resource.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Operators/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Operators/Operators.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Pagination/Paginator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Pagination/Paginator.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Protocols/Creatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Protocols/Creatable.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Protocols/DynamicHeightCalculable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Protocols/DynamicHeightCalculable.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Protocols/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Protocols/Reusable.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Size/STNSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Size/STNSize.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Theme/Theme.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/Utils/Typealiases/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/Utils/Typealiases/Typealiases.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/ButtonContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/ButtonContainerView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/CallToAction/CallToAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/CallToAction/CallToAction.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/CallToAction/CallToActionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/CallToAction/CallToActionCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/CallToAction/CallToActionCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/CallToAction/CallToActionCollectionView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/CallToAction/TagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/CallToAction/TagView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Filter/FilterCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Filter/FilterCategory.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Filter/FilterCategoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Filter/FilterCategoryCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Filter/FiltersCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Filter/FiltersCollectionView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Hashtag/HashtagTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Hashtag/HashtagTableViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Hashtag/HashtagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Hashtag/HashtagView.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Hashtag/HashtagViewCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Hashtag/HashtagViewCollectionViewCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Home/Hero/HeroTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Home/Hero/HeroTextCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Home/Person/PersonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Home/Person/PersonCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Home/Person/PersonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Home/Person/PersonCell.xib -------------------------------------------------------------------------------- /SayTheirNames/Source/View/Home/Person/PersonHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/Home/Person/PersonHeaderCell.swift -------------------------------------------------------------------------------- /SayTheirNames/Source/View/ImageWithBlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNames/Source/View/ImageWithBlurView.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/DataSourceTests/LocationCollectionViewDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/DataSourceTests/LocationCollectionViewDataSourceTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/DataSourceTests/PersonCollectionViewDataSourceHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/DataSourceTests/PersonCollectionViewDataSourceHelperTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/DateFormatterServiceTest/DateFormatterServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/DateFormatterServiceTest/DateFormatterServiceTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ExtensionsTests/UIEdgeInsetsInitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ExtensionsTests/UIEdgeInsetsInitTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ExtensionsTests/UIFontSTNTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ExtensionsTests/UIFontSTNTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Info.plist -------------------------------------------------------------------------------- /SayTheirNamesTests/LaunchTests/LaunchScreenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/LaunchTests/LaunchScreenTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/Contents.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/donations.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/donations.dataset/Contents.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/donations.dataset/donations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/donations.dataset/donations.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/people.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/people.dataset/Contents.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/people.dataset/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/people.dataset/people.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/petitions.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/petitions.dataset/Contents.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/petitions.dataset/petitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/petitions.dataset/petitions.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/search.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/search.dataset/Contents.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/search.dataset/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/JSONDataModelAPIs.xcassets/search.dataset/search.json -------------------------------------------------------------------------------- /SayTheirNamesTests/Model/ModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Model/ModelTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/Say_Their_NamesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/Say_Their_NamesTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/DeepLinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/DeepLinkTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/NetworkRequestorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/NetworkRequestorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/Requestors/DonationsNetworkRequestorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/Requestors/DonationsNetworkRequestorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/Requestors/PeopleNetworkRequestorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/Requestors/PeopleNetworkRequestorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/Requestors/PetitionsNetworkRequestorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/Requestors/PetitionsNetworkRequestorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/ServiceTests/Requestors/SearchNetworkRequestorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/ServiceTests/Requestors/SearchNetworkRequestorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesTests/UtilsTests/PaginatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesTests/UtilsTests/PaginatorTests.swift -------------------------------------------------------------------------------- /SayTheirNamesUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesUITests/Info.plist -------------------------------------------------------------------------------- /SayTheirNamesUITests/SayTheirNamesUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesUITests/SayTheirNamesUITests.swift -------------------------------------------------------------------------------- /SayTheirNamesUITests/XCUIApplication+SayTheirName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/SayTheirNamesUITests/XCUIApplication+SayTheirName.swift -------------------------------------------------------------------------------- /scripts/download_loco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/scripts/download_loco.sh -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Say-Their-Name/say-their-names-ios/HEAD/swiftgen.yml --------------------------------------------------------------------------------