├── .gitignore ├── Podfile ├── Podfile.lock ├── Pods ├── AlertToast │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ └── AlertToast │ │ ├── ActivityIndicator.swift │ │ ├── AlertToast.swift │ │ └── BlurView.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── alexanderchiou.xcuserdatad │ │ └── xcschemes │ │ ├── AlertToast.xcscheme │ │ ├── Pods-TCG.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── SDWebImageSwiftUI.xcscheme │ │ ├── SwiftUIPager.xcscheme │ │ ├── lottie-ios.xcscheme │ │ └── xcschememanagement.plist ├── 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 │ │ │ ├── SDImageAWebPCoder.h │ │ │ ├── SDImageAWebPCoder.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCacheDefine.m │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManager.m │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoder.m │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCoderHelper.m │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageCodersManager.m │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFrame.m │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoder.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageHEICCoder.m │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageIOCoder.m │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoader.m │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageLoadersManager.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDMemoryCache.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h ├── SDWebImageSwiftUI │ ├── LICENSE │ ├── README.md │ └── SDWebImageSwiftUI │ │ ├── Classes │ │ ├── AnimatedImage.swift │ │ ├── Image.swift │ │ ├── ImageManager.swift │ │ ├── ImagePlayer.swift │ │ ├── ImageViewWrapper.swift │ │ ├── Indicator │ │ │ ├── ActivityIndicator.swift │ │ │ ├── Indicator.swift │ │ │ └── ProgressIndicator.swift │ │ ├── SDWebImageSwiftUI.swift │ │ ├── SwiftUICompatibility.swift │ │ ├── Transition │ │ │ └── Transition.swift │ │ └── WebImage.swift │ │ └── Module │ │ └── SDWebImageSwiftUI.h ├── SwiftUIPager │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── SwiftUIPager │ │ ├── Helpers │ │ ├── Buildable.swift │ │ ├── CGPoint+Angle.swift │ │ ├── OnAnimationCompletedModifier.swift │ │ ├── OnDeactivateModifier.swift │ │ └── View+Helper.swift │ │ ├── Page.swift │ │ ├── PageConfiguration │ │ ├── ContentLoadingPolicy.swift │ │ ├── GesturePriority.swift │ │ ├── PaginationSensitivity.swift │ │ ├── PagingAnimation.swift │ │ ├── PositionAlignment.swift │ │ ├── SwipeDirection.swift │ │ └── SwipeInteractionArea.swift │ │ ├── PageTransition.swift │ │ ├── PageWrapper.swift │ │ ├── Pager+Buildable.swift │ │ ├── Pager.swift │ │ ├── PagerContent+Buildable.swift │ │ ├── PagerContent+Helper.swift │ │ └── PagerContent.swift ├── Target Support Files │ ├── AlertToast │ │ ├── AlertToast-Info.plist │ │ ├── AlertToast-dummy.m │ │ ├── AlertToast-prefix.pch │ │ ├── AlertToast-umbrella.h │ │ ├── AlertToast.debug.xcconfig │ │ ├── AlertToast.modulemap │ │ └── AlertToast.release.xcconfig │ ├── Pods-TCG │ │ ├── Pods-TCG-Info.plist │ │ ├── Pods-TCG-acknowledgements.markdown │ │ ├── Pods-TCG-acknowledgements.plist │ │ ├── Pods-TCG-dummy.m │ │ ├── Pods-TCG-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-TCG-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-TCG-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-TCG-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-TCG-frameworks.sh │ │ ├── Pods-TCG-umbrella.h │ │ ├── Pods-TCG.debug.xcconfig │ │ ├── Pods-TCG.modulemap │ │ └── Pods-TCG.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.release.xcconfig │ ├── SDWebImageSwiftUI │ │ ├── SDWebImageSwiftUI-Info.plist │ │ ├── SDWebImageSwiftUI-dummy.m │ │ ├── SDWebImageSwiftUI-prefix.pch │ │ ├── SDWebImageSwiftUI-umbrella.h │ │ ├── SDWebImageSwiftUI.debug.xcconfig │ │ ├── SDWebImageSwiftUI.modulemap │ │ └── SDWebImageSwiftUI.release.xcconfig │ ├── SwiftUIPager │ │ ├── SwiftUIPager-Info.plist │ │ ├── SwiftUIPager-dummy.m │ │ ├── SwiftUIPager-prefix.pch │ │ ├── SwiftUIPager-umbrella.h │ │ ├── SwiftUIPager.debug.xcconfig │ │ ├── SwiftUIPager.modulemap │ │ └── SwiftUIPager.release.xcconfig │ └── lottie-ios │ │ ├── lottie-ios-Info.plist │ │ ├── lottie-ios-dummy.m │ │ ├── lottie-ios-prefix.pch │ │ ├── lottie-ios-umbrella.h │ │ ├── lottie-ios.debug.xcconfig │ │ ├── lottie-ios.modulemap │ │ └── lottie-ios.release.xcconfig └── lottie-ios │ ├── LICENSE │ ├── README.md │ └── Sources │ ├── Private │ ├── LayerContainers │ │ ├── AnimationContainer.swift │ │ ├── CompLayers │ │ │ ├── CompositionLayer.swift │ │ │ ├── ImageCompositionLayer.swift │ │ │ ├── MaskContainerLayer.swift │ │ │ ├── NullCompositionLayer.swift │ │ │ ├── PreCompositionLayer.swift │ │ │ ├── ShapeCompositionLayer.swift │ │ │ ├── SolidCompositionLayer.swift │ │ │ └── TextCompositionLayer.swift │ │ └── Utility │ │ │ ├── CompositionLayersInitializer.swift │ │ │ ├── InvertedMatteLayer.swift │ │ │ ├── LayerFontProvider.swift │ │ │ ├── LayerImageProvider.swift │ │ │ ├── LayerTextProvider.swift │ │ │ ├── LayerTransformNode.swift │ │ │ └── TextLayer.swift │ ├── Model │ │ ├── Animation.swift │ │ ├── Assets │ │ │ ├── Asset.swift │ │ │ ├── AssetLibrary.swift │ │ │ ├── ImageAsset.swift │ │ │ └── PrecompAsset.swift │ │ ├── Extensions │ │ │ ├── Bundle.swift │ │ │ └── KeyedDecodingContainerExtensions.swift │ │ ├── Keyframes │ │ │ ├── Keyframe.swift │ │ │ └── KeyframeGroup.swift │ │ ├── Layers │ │ │ ├── ImageLayerModel.swift │ │ │ ├── LayerModel.swift │ │ │ ├── PreCompLayerModel.swift │ │ │ ├── ShapeLayerModel.swift │ │ │ ├── SolidLayerModel.swift │ │ │ └── TextLayerModel.swift │ │ ├── Objects │ │ │ ├── DashPattern.swift │ │ │ ├── Marker.swift │ │ │ ├── Mask.swift │ │ │ └── Transform.swift │ │ ├── ShapeItems │ │ │ ├── Ellipse.swift │ │ │ ├── FillI.swift │ │ │ ├── GradientFill.swift │ │ │ ├── GradientStroke.swift │ │ │ ├── Group.swift │ │ │ ├── Merge.swift │ │ │ ├── Rectangle.swift │ │ │ ├── Repeater.swift │ │ │ ├── Shape.swift │ │ │ ├── ShapeItem.swift │ │ │ ├── ShapeTransform.swift │ │ │ ├── Star.swift │ │ │ ├── Stroke.swift │ │ │ └── Trim.swift │ │ └── Text │ │ │ ├── Font.swift │ │ │ ├── Glyph.swift │ │ │ ├── TextAnimator.swift │ │ │ └── TextDocument.swift │ ├── NodeRenderSystem │ │ ├── Extensions │ │ │ └── ItemsExtension.swift │ │ ├── NodeProperties │ │ │ ├── NodeProperty.swift │ │ │ ├── Protocols │ │ │ │ ├── AnyNodeProperty.swift │ │ │ │ ├── AnyValueContainer.swift │ │ │ │ ├── KeypathSearchable.swift │ │ │ │ └── NodePropertyMap.swift │ │ │ ├── ValueContainer.swift │ │ │ └── ValueProviders │ │ │ │ ├── GroupInterpolator.swift │ │ │ │ ├── KeyframeInterpolator.swift │ │ │ │ └── SingleValueProvider.swift │ │ ├── Nodes │ │ │ ├── ModifierNodes │ │ │ │ └── TrimPathNode.swift │ │ │ ├── OutputNodes │ │ │ │ ├── GroupOutputNode.swift │ │ │ │ ├── PassThroughOutputNode.swift │ │ │ │ ├── PathOutputNode.swift │ │ │ │ └── Renderables │ │ │ │ │ ├── FillRenderer.swift │ │ │ │ │ ├── GradientFillRenderer.swift │ │ │ │ │ ├── GradientStrokeRenderer.swift │ │ │ │ │ └── StrokeRenderer.swift │ │ │ ├── PathNodes │ │ │ │ ├── EllipseNode.swift │ │ │ │ ├── PolygonNode.swift │ │ │ │ ├── RectNode.swift │ │ │ │ ├── ShapeNode.swift │ │ │ │ └── StarNode.swift │ │ │ ├── RenderContainers │ │ │ │ └── GroupNode.swift │ │ │ ├── RenderNodes │ │ │ │ ├── FillNode.swift │ │ │ │ ├── GradientFillNode.swift │ │ │ │ ├── GradientStrokeNode.swift │ │ │ │ └── StrokeNode.swift │ │ │ └── Text │ │ │ │ └── TextAnimatorNode.swift │ │ ├── Protocols │ │ │ ├── AnimatorNode.swift │ │ │ ├── PathNode.swift │ │ │ └── RenderNode.swift │ │ └── RenderLayers │ │ │ ├── ShapeContainerLayer.swift │ │ │ └── ShapeRenderLayer.swift │ └── Utility │ │ ├── Debugging │ │ ├── AnimatorNodeDebugging.swift │ │ └── LayerDebugging.swift │ │ ├── Extensions │ │ ├── AnimationKeypathExtension.swift │ │ ├── CGFloatExtensions.swift │ │ ├── MathKit.swift │ │ └── StringExtensions.swift │ │ ├── Helpers │ │ └── AnimationContext.swift │ │ ├── Interpolatable │ │ ├── Interpolatable.swift │ │ ├── InterpolatableExtensions.swift │ │ └── KeyframeExtensions.swift │ │ └── Primitives │ │ ├── BezierPath.swift │ │ ├── ColorExtension.swift │ │ ├── CompoundBezierPath.swift │ │ ├── CurveVertex.swift │ │ ├── PathElement.swift │ │ └── VectorsExtensions.swift │ └── Public │ ├── Animation │ ├── AnimationPublic.swift │ ├── AnimationView.swift │ └── AnimationViewInitializers.swift │ ├── AnimationCache │ ├── AnimationCacheProvider.swift │ └── LRUAnimationCache.swift │ ├── DynamicProperties │ ├── AnimationKeypath.swift │ ├── AnyValueProvider.swift │ └── ValueProviders │ │ ├── ColorValueProvider.swift │ │ ├── FloatValueProvider.swift │ │ ├── GradientValueProvider.swift │ │ ├── PointValueProvider.swift │ │ └── SizeValueProvider.swift │ ├── FontProvider │ └── AnimationFontProvider.swift │ ├── ImageProvider │ └── AnimationImageProvider.swift │ ├── Primitives │ ├── AnimationTime.swift │ ├── Color.swift │ └── Vectors.swift │ ├── TextProvider │ └── AnimationTextProvider.swift │ └── iOS │ ├── AnimatedButton.swift │ ├── AnimatedControl.swift │ ├── AnimatedSwitch.swift │ ├── AnimationSubview.swift │ ├── BundleImageProvider.swift │ ├── Compatibility │ ├── CompatibleAnimationKeypath.swift │ └── CompatibleAnimationView.swift │ ├── FilepathImageProvider.swift │ ├── LottieView.swift │ └── UIColorExtension.swift ├── README.md ├── TCG.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── alexanderchiou.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── alexanderchiou.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── TCG.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved └── TCG ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-App-20x20@1x.png │ ├── Icon-App-20x20@2x.png │ ├── Icon-App-20x20@3x.png │ ├── Icon-App-29x29@1x.png │ ├── Icon-App-29x29@2x.png │ ├── Icon-App-29x29@3x.png │ ├── Icon-App-40x40@1x.png │ ├── Icon-App-40x40@2x.png │ ├── Icon-App-40x40@3x.png │ ├── Icon-App-60x60@2x.png │ ├── Icon-App-60x60@3x.png │ ├── Icon-App-76x76@1x.png │ ├── Icon-App-76x76@2x.png │ ├── Icon-App-83.5x83.5@2x.png │ └── ItunesArtwork@2x.png ├── Contents.json ├── TechCareerGrowthLogo.imageset │ ├── Contents.json │ └── TechCareerGrowthLogo.jpg ├── footerTextColor.colorset │ └── Contents.json ├── highlightedTextColor.colorset │ └── Contents.json ├── indicatorCircleColor.colorset │ └── Contents.json ├── normalTextColor.colorset │ └── Contents.json ├── titleTextColor.colorset │ └── Contents.json └── white80Alpha.colorset │ └── Contents.json ├── Common ├── Colors.swift ├── Extensions.swift └── Toaster.swift ├── ContentProviders ├── InterviewContentProvider.swift ├── LearningQuicklyContentProvider.swift ├── LessonProvider.swift ├── MeetingsContentProvider.swift ├── ProductivityContentProvider.swift ├── PromotionContentProvider.swift └── ResumeContentProvider.swift ├── ContentView.swift ├── Home ├── BrowseLessonsView.swift ├── HomepageView.swift ├── LessonGalleryCardView.swift ├── LessonGalleryView.swift ├── LessonTagRowView.swift ├── LessonTagViewModel.swift └── LessonTagsView.swift ├── Intro ├── IntroDotsView.swift ├── IntroSlideView.swift └── IntroSlideshowView.swift ├── Launch Screen.storyboard ├── Learning ├── LearningView.swift ├── LearningViewModel.swift ├── Quiz │ ├── HorizontalProgressBar.swift │ ├── QuizView.swift │ └── RadioButtonField.swift ├── Score │ └── ScoreReportView.swift └── WatchingContent │ ├── WatchContentView.swift │ └── YouTubePlayerKit.swift ├── LessonList ├── LessonFullCardView.swift └── LessonListView.swift ├── Lottie ├── LottieView.swift ├── feedback.json ├── learn.json └── welcome.json ├── Models ├── Lesson.swift ├── LessonTag.swift └── Question.swift ├── Persistence └── UserDefaultUtil.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Settings ├── MailView.swift ├── OrderContentView.swift ├── SettingsRow.swift └── SettingsView.swift ├── TCG.entitlements └── TCGApp.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AlertToast/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/AlertToast/LICENSE.md -------------------------------------------------------------------------------- /Pods/AlertToast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/AlertToast/README.md -------------------------------------------------------------------------------- /Pods/AlertToast/Sources/AlertToast/ActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/AlertToast/Sources/AlertToast/ActivityIndicator.swift -------------------------------------------------------------------------------- /Pods/AlertToast/Sources/AlertToast/AlertToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/AlertToast/Sources/AlertToast/AlertToast.swift -------------------------------------------------------------------------------- /Pods/AlertToast/Sources/AlertToast/BlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/AlertToast/Sources/AlertToast/BlurView.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/AlertToast.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/AlertToast.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/Pods-TCG.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/Pods-TCG.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SwiftUIPager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/SwiftUIPager.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/lottie-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/lottie-ios.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Pods.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/README.md -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/AnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/AnimatedImage.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Image.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImageManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImageManager.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImagePlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImagePlayer.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImageViewWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/ImageViewWrapper.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/ActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/ActivityIndicator.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/Indicator.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/ProgressIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Indicator/ProgressIndicator.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/SDWebImageSwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/SDWebImageSwiftUI.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/SwiftUICompatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/SwiftUICompatibility.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Transition/Transition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/Transition/Transition.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/WebImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Classes/WebImage.swift -------------------------------------------------------------------------------- /Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Module/SDWebImageSwiftUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SDWebImageSwiftUI/SDWebImageSwiftUI/Module/SDWebImageSwiftUI.h -------------------------------------------------------------------------------- /Pods/SwiftUIPager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftUIPager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/README.md -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/Buildable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/Buildable.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/CGPoint+Angle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/CGPoint+Angle.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/OnAnimationCompletedModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/OnAnimationCompletedModifier.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/OnDeactivateModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/OnDeactivateModifier.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/View+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Helpers/View+Helper.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Page.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/ContentLoadingPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/ContentLoadingPolicy.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/GesturePriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/GesturePriority.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PaginationSensitivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PaginationSensitivity.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PagingAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PagingAnimation.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PositionAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/PositionAlignment.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/SwipeDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/SwipeDirection.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/SwipeInteractionArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageConfiguration/SwipeInteractionArea.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageTransition.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PageWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PageWrapper.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Pager+Buildable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Pager+Buildable.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/Pager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/Pager.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent+Buildable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent+Buildable.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent+Helper.swift -------------------------------------------------------------------------------- /Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/SwiftUIPager/Sources/SwiftUIPager/PagerContent.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/AlertToast/AlertToast.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/AlertToast/AlertToast.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TCG/Pods-TCG.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/Pods-TCG/Pods-TCG.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SDWebImageSwiftUI/SDWebImageSwiftUI.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftUIPager/SwiftUIPager.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/SwiftUIPager/SwiftUIPager.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/lottie-ios/lottie-ios.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/Target Support Files/lottie-ios/lottie-ios.release.xcconfig -------------------------------------------------------------------------------- /Pods/lottie-ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/LICENSE -------------------------------------------------------------------------------- /Pods/lottie-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/README.md -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/AnimationContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/AnimationContainer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/CompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/CompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/ImageCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/ImageCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/MaskContainerLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/MaskContainerLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/NullCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/NullCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/PreCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/PreCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/ShapeCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/ShapeCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/SolidCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/SolidCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/TextCompositionLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/CompLayers/TextCompositionLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/CompositionLayersInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/CompositionLayersInitializer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/InvertedMatteLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/InvertedMatteLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerFontProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerFontProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerImageProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerTextProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerTextProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerTransformNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/LayerTransformNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/LayerContainers/Utility/TextLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/LayerContainers/Utility/TextLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Animation.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Assets/Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Assets/Asset.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Assets/AssetLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Assets/AssetLibrary.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Assets/ImageAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Assets/ImageAsset.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Assets/PrecompAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Assets/PrecompAsset.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Extensions/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Extensions/Bundle.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Keyframes/Keyframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Keyframes/Keyframe.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Keyframes/KeyframeGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Keyframes/KeyframeGroup.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/ImageLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/ImageLayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/LayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/LayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/PreCompLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/PreCompLayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/ShapeLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/ShapeLayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/SolidLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/SolidLayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Layers/TextLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Layers/TextLayerModel.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Objects/DashPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Objects/DashPattern.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Objects/Marker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Objects/Marker.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Objects/Mask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Objects/Mask.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Objects/Transform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Objects/Transform.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Ellipse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Ellipse.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/FillI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/FillI.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/GradientFill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/GradientFill.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/GradientStroke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/GradientStroke.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Group.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Merge.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Rectangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Rectangle.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Repeater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Repeater.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Shape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Shape.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/ShapeItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/ShapeItem.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/ShapeTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/ShapeTransform.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Star.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Star.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Stroke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Stroke.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/ShapeItems/Trim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/ShapeItems/Trim.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Text/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Text/Font.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Text/Glyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Text/Glyph.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Text/TextAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Text/TextAnimator.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Model/Text/TextDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Model/Text/TextDocument.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Extensions/ItemsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Extensions/ItemsExtension.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/NodeProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/NodeProperty.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueContainer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/RectNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/RectNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/StarNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/PathNodes/StarNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/AnimatorNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/AnimatorNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/PathNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/PathNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/RenderNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/Protocols/RenderNode.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Debugging/LayerDebugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Debugging/LayerDebugging.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Extensions/CGFloatExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Extensions/CGFloatExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Extensions/MathKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Extensions/MathKit.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Helpers/AnimationContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Helpers/AnimationContext.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Interpolatable/Interpolatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Interpolatable/Interpolatable.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/BezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/BezierPath.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/ColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/ColorExtension.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/CompoundBezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/CompoundBezierPath.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/CurveVertex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/CurveVertex.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/PathElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/PathElement.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Private/Utility/Primitives/VectorsExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Private/Utility/Primitives/VectorsExtensions.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Animation/AnimationPublic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Animation/AnimationPublic.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Animation/AnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Animation/AnimationView.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Animation/AnimationViewInitializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Animation/AnimationViewInitializers.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/AnimationCache/AnimationCacheProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/AnimationCache/AnimationCacheProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/AnimationCache/LRUAnimationCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/AnimationCache/LRUAnimationCache.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/AnimationKeypath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/AnimationKeypath.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/AnyValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/AnyValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/FontProvider/AnimationFontProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/FontProvider/AnimationFontProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/ImageProvider/AnimationImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/ImageProvider/AnimationImageProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Primitives/AnimationTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Primitives/AnimationTime.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Primitives/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Primitives/Color.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/Primitives/Vectors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/Primitives/Vectors.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/TextProvider/AnimationTextProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/TextProvider/AnimationTextProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/AnimatedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/AnimatedButton.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/AnimatedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/AnimatedControl.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/AnimatedSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/AnimatedSwitch.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/AnimationSubview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/AnimationSubview.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/BundleImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/BundleImageProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/FilepathImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/FilepathImageProvider.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/LottieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/LottieView.swift -------------------------------------------------------------------------------- /Pods/lottie-ios/Sources/Public/iOS/UIColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/Pods/lottie-ios/Sources/Public/iOS/UIColorExtension.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/README.md -------------------------------------------------------------------------------- /TCG.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TCG.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TCG.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TCG.xcodeproj/project.xcworkspace/xcuserdata/alexanderchiou.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcodeproj/project.xcworkspace/xcuserdata/alexanderchiou.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TCG.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcodeproj/xcuserdata/alexanderchiou.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TCG.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TCG.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TCG.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TCG/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/AppDelegate.swift -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /TCG/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/TechCareerGrowthLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/TechCareerGrowthLogo.imageset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/TechCareerGrowthLogo.imageset/TechCareerGrowthLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/TechCareerGrowthLogo.imageset/TechCareerGrowthLogo.jpg -------------------------------------------------------------------------------- /TCG/Assets.xcassets/footerTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/footerTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/highlightedTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/highlightedTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/indicatorCircleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/indicatorCircleColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/normalTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/normalTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/titleTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/titleTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Assets.xcassets/white80Alpha.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Assets.xcassets/white80Alpha.colorset/Contents.json -------------------------------------------------------------------------------- /TCG/Common/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Common/Colors.swift -------------------------------------------------------------------------------- /TCG/Common/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Common/Extensions.swift -------------------------------------------------------------------------------- /TCG/Common/Toaster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Common/Toaster.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/InterviewContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/InterviewContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/LearningQuicklyContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/LearningQuicklyContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/LessonProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/LessonProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/MeetingsContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/MeetingsContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/ProductivityContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/ProductivityContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/PromotionContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/PromotionContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentProviders/ResumeContentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentProviders/ResumeContentProvider.swift -------------------------------------------------------------------------------- /TCG/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/ContentView.swift -------------------------------------------------------------------------------- /TCG/Home/BrowseLessonsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/BrowseLessonsView.swift -------------------------------------------------------------------------------- /TCG/Home/HomepageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/HomepageView.swift -------------------------------------------------------------------------------- /TCG/Home/LessonGalleryCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/LessonGalleryCardView.swift -------------------------------------------------------------------------------- /TCG/Home/LessonGalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/LessonGalleryView.swift -------------------------------------------------------------------------------- /TCG/Home/LessonTagRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/LessonTagRowView.swift -------------------------------------------------------------------------------- /TCG/Home/LessonTagViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/LessonTagViewModel.swift -------------------------------------------------------------------------------- /TCG/Home/LessonTagsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Home/LessonTagsView.swift -------------------------------------------------------------------------------- /TCG/Intro/IntroDotsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Intro/IntroDotsView.swift -------------------------------------------------------------------------------- /TCG/Intro/IntroSlideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Intro/IntroSlideView.swift -------------------------------------------------------------------------------- /TCG/Intro/IntroSlideshowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Intro/IntroSlideshowView.swift -------------------------------------------------------------------------------- /TCG/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Launch Screen.storyboard -------------------------------------------------------------------------------- /TCG/Learning/LearningView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/LearningView.swift -------------------------------------------------------------------------------- /TCG/Learning/LearningViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/LearningViewModel.swift -------------------------------------------------------------------------------- /TCG/Learning/Quiz/HorizontalProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/Quiz/HorizontalProgressBar.swift -------------------------------------------------------------------------------- /TCG/Learning/Quiz/QuizView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/Quiz/QuizView.swift -------------------------------------------------------------------------------- /TCG/Learning/Quiz/RadioButtonField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/Quiz/RadioButtonField.swift -------------------------------------------------------------------------------- /TCG/Learning/Score/ScoreReportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/Score/ScoreReportView.swift -------------------------------------------------------------------------------- /TCG/Learning/WatchingContent/WatchContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/WatchingContent/WatchContentView.swift -------------------------------------------------------------------------------- /TCG/Learning/WatchingContent/YouTubePlayerKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Learning/WatchingContent/YouTubePlayerKit.swift -------------------------------------------------------------------------------- /TCG/LessonList/LessonFullCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/LessonList/LessonFullCardView.swift -------------------------------------------------------------------------------- /TCG/LessonList/LessonListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/LessonList/LessonListView.swift -------------------------------------------------------------------------------- /TCG/Lottie/LottieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Lottie/LottieView.swift -------------------------------------------------------------------------------- /TCG/Lottie/feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Lottie/feedback.json -------------------------------------------------------------------------------- /TCG/Lottie/learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Lottie/learn.json -------------------------------------------------------------------------------- /TCG/Lottie/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Lottie/welcome.json -------------------------------------------------------------------------------- /TCG/Models/Lesson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Models/Lesson.swift -------------------------------------------------------------------------------- /TCG/Models/LessonTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Models/LessonTag.swift -------------------------------------------------------------------------------- /TCG/Models/Question.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Models/Question.swift -------------------------------------------------------------------------------- /TCG/Persistence/UserDefaultUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Persistence/UserDefaultUtil.swift -------------------------------------------------------------------------------- /TCG/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TCG/Settings/MailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Settings/MailView.swift -------------------------------------------------------------------------------- /TCG/Settings/OrderContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Settings/OrderContentView.swift -------------------------------------------------------------------------------- /TCG/Settings/SettingsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Settings/SettingsRow.swift -------------------------------------------------------------------------------- /TCG/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/Settings/SettingsView.swift -------------------------------------------------------------------------------- /TCG/TCG.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/TCG.entitlements -------------------------------------------------------------------------------- /TCG/TCGApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gear61/tcg-ios-archive-and-feedback/HEAD/TCG/TCGApp.swift --------------------------------------------------------------------------------