├── ARInstagram.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── nativlevy.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── ARAlbum.xcscheme └── xcuserdata │ ├── nativlevy.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── sharonrashish.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ARInstagram.xcworkspace └── contents.xcworkspacedata ├── ARInstagram ├── AppDelegate.swift ├── Assets.xcassets │ ├── 3-In-Line.imageset │ │ ├── 3-In-Line.png │ │ └── Contents.json │ ├── 3-in-column.imageset │ │ ├── 3-in-column.png │ │ └── Contents.json │ ├── 3-in-diagonal.imageset │ │ ├── 3-in-diagonal.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── classic.imageset │ │ ├── Contents.json │ │ ├── ever-1.png │ │ ├── ever-2.png │ │ └── ever.png │ ├── ever.imageset │ │ ├── Contents.json │ │ ├── classic-1.png │ │ ├── classic-2.png │ │ └── classic.png │ ├── image1.imageset │ │ ├── 6d8942ba-ccbe-428b-91f1-d91034819180.jpg │ │ └── Contents.json │ ├── image2.imageset │ │ ├── 8f66ca63-379c-442e-bde4-11d48657a287.jpg │ │ └── Contents.json │ ├── image3.imageset │ │ ├── 3251789a-cc2d-44b1-9988-3088a7eb3571.jpg │ │ └── Contents.json │ ├── image4.imageset │ │ ├── 07571330-D413-4729-A0C6-A67F396F35A1.jpg │ │ └── Contents.json │ ├── image5.imageset │ │ ├── 20190322_113728.jpg │ │ └── Contents.json │ ├── image6.imageset │ │ ├── 20190504_174715.jpg │ │ └── Contents.json │ ├── overlay_grid.imageset │ │ ├── Contents.json │ │ └── overlay_grid.png │ ├── pyramid.imageset │ │ ├── Contents.json │ │ └── pyramid.png │ └── tile.imageset │ │ ├── Contents.json │ │ └── tile.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Extensions │ ├── GalleryViewController+Extensions.swift │ ├── SCNVector3+Extensions.swift │ ├── Storyboard+Extensions.swift │ ├── UICollectionViewCell+Extensions.swift │ ├── UIColor+Extensions.swift │ ├── UIImage+Extensions.swift │ ├── UIView+Extensions.swift │ └── UIViewController+Extensions.swift ├── Info.plist └── MVVM │ ├── Helpers │ ├── HazeRemovalFilter.swift │ └── ImageHelper.swift │ ├── Nodes │ ├── LineNode.swift │ └── TileNode.swift │ └── Views │ ├── ARViewController+ARExtensions.swift │ ├── ARViewController+CollectionView.swift │ ├── ARViewController+Filters.swift │ ├── ARViewController.swift │ ├── Cells │ ├── ColumnsTilesCell.swift │ ├── ColumnsTilesCell.xib │ ├── DiagonalTilesCell.swift │ ├── DiagonalTilesCell.xib │ ├── FilterCell.swift │ ├── FrameCell.swift │ ├── LineTilesCell.swift │ ├── LineTilesCell.xib │ ├── PyramidTilesCell.swift │ ├── PyramidTilesCell.xib │ ├── SingleTileCell.swift │ ├── SingleTileCell.xib │ └── TileLayoutCell.swift │ ├── ClassicFramedImage.swift │ ├── Custom │ └── Grid.swift │ ├── TileLayoutViewController+Gallery.swift │ └── TilesLayoutViewController.swift ├── Podfile ├── Podfile.lock ├── Pods ├── Cache │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ ├── Shared │ │ ├── Configuration │ │ │ ├── DiskConfig.swift │ │ │ └── MemoryConfig.swift │ │ ├── Extensions │ │ │ ├── Date+Extensions.swift │ │ │ └── JSONDecoder+Extensions.swift │ │ ├── Library │ │ │ ├── DataSerializer.swift │ │ │ ├── Entry.swift │ │ │ ├── ExpirationMode.swift │ │ │ ├── Expiry.swift │ │ │ ├── ImageWrapper.swift │ │ │ ├── JSONArrayWrapper.swift │ │ │ ├── JSONDictionaryWrapper.swift │ │ │ ├── MD5.swift │ │ │ ├── MemoryCapsule.swift │ │ │ ├── ObservationToken.swift │ │ │ ├── Optional+Extension.swift │ │ │ ├── Result.swift │ │ │ ├── StorageError.swift │ │ │ ├── Transformer.swift │ │ │ ├── TransformerFactory.swift │ │ │ ├── TypeWrapper.swift │ │ │ └── Types.swift │ │ └── Storage │ │ │ ├── AsyncStorage.swift │ │ │ ├── DiskStorage.swift │ │ │ ├── HybridStorage.swift │ │ │ ├── KeyObservationRegistry.swift │ │ │ ├── MemoryStorage.swift │ │ │ ├── Storage+Transform.swift │ │ │ ├── Storage.swift │ │ │ ├── StorageAware.swift │ │ │ ├── StorageObservationRegistry.swift │ │ │ └── SyncStorage.swift │ │ └── iOS │ │ └── UIImage+Extensions.swift ├── Gallery │ ├── LICENSE.md │ ├── README.md │ ├── Resources │ │ └── Gallery.bundle │ │ │ ├── gallery_camera_flash_auto@2x.png │ │ │ ├── gallery_camera_flash_auto@3x.png │ │ │ ├── gallery_camera_flash_off@2x.png │ │ │ ├── gallery_camera_flash_off@3x.png │ │ │ ├── gallery_camera_flash_on@2x.png │ │ │ ├── gallery_camera_flash_on@3x.png │ │ │ ├── gallery_camera_focus@2x.png │ │ │ ├── gallery_camera_focus@3x.png │ │ │ ├── gallery_camera_rotate@2x.png │ │ │ ├── gallery_camera_rotate@3x.png │ │ │ ├── gallery_close@2x.png │ │ │ ├── gallery_close@3x.png │ │ │ ├── gallery_empty_view_image@2x.png │ │ │ ├── gallery_empty_view_image@3x.png │ │ │ ├── gallery_page_indicator@2x.png │ │ │ ├── gallery_page_indicator@3x.png │ │ │ ├── gallery_permission_view_camera@2x.png │ │ │ ├── gallery_placeholder@2x.png │ │ │ ├── gallery_title_arrow@2x.png │ │ │ ├── gallery_title_arrow@3x.png │ │ │ ├── gallery_video_cell_camera@2x.png │ │ │ └── gallery_video_view_camera@2x.png │ └── Sources │ │ ├── Camera │ │ ├── CameraController.swift │ │ ├── CameraMan.swift │ │ ├── CameraView.swift │ │ ├── ShutterButton.swift │ │ ├── StackView.swift │ │ └── TripleButton.swift │ │ ├── Gallery │ │ └── GalleryController.swift │ │ ├── Images │ │ ├── Album.swift │ │ ├── Cart.swift │ │ ├── Image.swift │ │ ├── ImageCell.swift │ │ ├── ImagesController.swift │ │ └── ImagesLibrary.swift │ │ ├── Utils │ │ ├── Config.swift │ │ ├── Constraints.swift │ │ ├── Dropdown │ │ │ └── DropdownController.swift │ │ ├── EventHub.swift │ │ ├── Extensions │ │ │ ├── AVAsset+Extensions.swift │ │ │ ├── Array+Extensions.swift │ │ │ ├── String+Extensions.swift │ │ │ ├── UIImageView+Extensions.swift │ │ │ ├── UIScrollView+Extensions.swift │ │ │ ├── UIView+Extensions.swift │ │ │ └── UIViewController+Extensions.swift │ │ ├── Fetcher.swift │ │ ├── GalleryBundle.swift │ │ ├── LocationManager.swift │ │ ├── Once.swift │ │ ├── Pages │ │ │ ├── PageIndicator.swift │ │ │ └── PagesController.swift │ │ ├── Permission │ │ │ ├── Permission.swift │ │ │ ├── PermissionController.swift │ │ │ └── PermissionView.swift │ │ ├── Utils.swift │ │ ├── VideoEditor │ │ │ ├── AdvancedVideoEditor.swift │ │ │ ├── EditInfo.swift │ │ │ ├── VideoEditing.swift │ │ │ └── VideoEditor.swift │ │ └── View │ │ │ ├── AlbumCell.swift │ │ │ ├── ArrowButton.swift │ │ │ ├── EmptyView.swift │ │ │ ├── FrameView.swift │ │ │ └── GridView.swift │ │ └── Videos │ │ ├── Video.swift │ │ ├── VideoBox.swift │ │ ├── VideoCell.swift │ │ ├── VideosController.swift │ │ └── VideosLibrary.swift ├── Imaginary │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ ├── Shared │ │ ├── Extensions │ │ │ └── View+Imaginary.swift │ │ ├── Fetcher │ │ │ ├── ImageDownloader.swift │ │ │ ├── ImageFetcher.swift │ │ │ └── MultipleImageFetcher.swift │ │ └── Library │ │ │ ├── Configuration.swift │ │ │ ├── ImageDisplayer.swift │ │ │ ├── ImageProcessor.swift │ │ │ ├── ImaginaryError.swift │ │ │ ├── Option.swift │ │ │ ├── Result.swift │ │ │ └── Types.swift │ │ └── iOS │ │ ├── ButtonBackgroundDisplayer.swift │ │ ├── ButtonDisplayer.swift │ │ ├── Decompressor.swift │ │ ├── ImageViewDisplayer.swift │ │ └── TintImageProcessor.swift ├── Lightbox │ ├── LICENSE.md │ ├── README.md │ ├── Resources │ │ └── Lightbox.bundle │ │ │ └── lightbox_play@2x.png │ └── Source │ │ ├── AssetManager.swift │ │ ├── Library │ │ ├── Color+Extensions.swift │ │ ├── LayoutConfigurable.swift │ │ ├── LightboxTransition.swift │ │ └── UIView+Gradient.swift │ │ ├── LightboxConfig.swift │ │ ├── LightboxController.swift │ │ ├── LightboxImage.swift │ │ ├── LightboxImageStub.swift │ │ └── Views │ │ ├── FooterView.swift │ │ ├── HeaderView.swift │ │ ├── InfoLabel.swift │ │ ├── LoadingIndicator.swift │ │ └── PageView.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── sharonrashish.xcuserdatad │ │ └── xcschemes │ │ ├── Cache.xcscheme │ │ ├── Gallery.xcscheme │ │ ├── Imaginary.xcscheme │ │ ├── Lightbox.xcscheme │ │ ├── Pods-ARInstagram.xcscheme │ │ ├── PromiseKit.xcscheme │ │ ├── SVProgressHUD.xcscheme │ │ └── xcschememanagement.plist ├── PromiseKit │ ├── Extensions │ │ ├── Foundation │ │ │ └── Sources │ │ │ │ ├── NSNotificationCenter+AnyPromise.h │ │ │ │ ├── NSNotificationCenter+AnyPromise.m │ │ │ │ ├── NSNotificationCenter+Promise.swift │ │ │ │ ├── NSObject+Promise.swift │ │ │ │ ├── NSTask+AnyPromise.h │ │ │ │ ├── NSTask+AnyPromise.m │ │ │ │ ├── NSURLSession+AnyPromise.h │ │ │ │ ├── NSURLSession+AnyPromise.m │ │ │ │ ├── NSURLSession+Promise.swift │ │ │ │ ├── PMKFoundation.h │ │ │ │ ├── Process+Promise.swift │ │ │ │ └── afterlife.swift │ │ └── UIKit │ │ │ └── Sources │ │ │ ├── PMKUIKit.h │ │ │ ├── UIView+AnyPromise.h │ │ │ ├── UIView+AnyPromise.m │ │ │ ├── UIView+Promise.swift │ │ │ ├── UIViewController+AnyPromise.h │ │ │ ├── UIViewController+AnyPromise.m │ │ │ └── UIViewPropertyAnimator+Promise.swift │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnyPromise+Private.h │ │ ├── AnyPromise.h │ │ ├── AnyPromise.m │ │ ├── AnyPromise.swift │ │ ├── Box.swift │ │ ├── Catchable.swift │ │ ├── Configuration.swift │ │ ├── CustomStringConvertible.swift │ │ ├── Deprecations.swift │ │ ├── Error.swift │ │ ├── Guarantee.swift │ │ ├── LogEvent.swift │ │ ├── NSMethodSignatureForBlock.m │ │ ├── PMKCallVariadicBlock.m │ │ ├── Promise.swift │ │ ├── PromiseKit.h │ │ ├── Resolver.swift │ │ ├── Thenable.swift │ │ ├── after.m │ │ ├── after.swift │ │ ├── dispatch_promise.m │ │ ├── firstly.swift │ │ ├── fwd.h │ │ ├── hang.m │ │ ├── hang.swift │ │ ├── join.m │ │ ├── race.m │ │ ├── race.swift │ │ ├── when.m │ │ └── when.swift ├── SVProgressHUD │ ├── LICENSE │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m └── Target Support Files │ ├── Cache │ ├── Cache-Info.plist │ ├── Cache-dummy.m │ ├── Cache-prefix.pch │ ├── Cache-umbrella.h │ ├── Cache.modulemap │ └── Cache.xcconfig │ ├── Gallery │ ├── Gallery-Info.plist │ ├── Gallery-dummy.m │ ├── Gallery-prefix.pch │ ├── Gallery-umbrella.h │ ├── Gallery.modulemap │ └── Gallery.xcconfig │ ├── Imaginary │ ├── Imaginary-Info.plist │ ├── Imaginary-dummy.m │ ├── Imaginary-prefix.pch │ ├── Imaginary-umbrella.h │ ├── Imaginary.modulemap │ └── Imaginary.xcconfig │ ├── Lightbox │ ├── Lightbox-Info.plist │ ├── Lightbox-dummy.m │ ├── Lightbox-prefix.pch │ ├── Lightbox-umbrella.h │ ├── Lightbox.modulemap │ └── Lightbox.xcconfig │ ├── Pods-ARInstagram │ ├── Pods-ARInstagram-Info.plist │ ├── Pods-ARInstagram-acknowledgements.markdown │ ├── Pods-ARInstagram-acknowledgements.plist │ ├── Pods-ARInstagram-dummy.m │ ├── Pods-ARInstagram-frameworks-Debug-input-files.xcfilelist │ ├── Pods-ARInstagram-frameworks-Debug-output-files.xcfilelist │ ├── Pods-ARInstagram-frameworks-Release-input-files.xcfilelist │ ├── Pods-ARInstagram-frameworks-Release-output-files.xcfilelist │ ├── Pods-ARInstagram-frameworks.sh │ ├── Pods-ARInstagram-umbrella.h │ ├── Pods-ARInstagram.debug.xcconfig │ ├── Pods-ARInstagram.modulemap │ └── Pods-ARInstagram.release.xcconfig │ ├── PromiseKit │ ├── PromiseKit-Info.plist │ ├── PromiseKit-dummy.m │ ├── PromiseKit-prefix.pch │ ├── PromiseKit-umbrella.h │ ├── PromiseKit.modulemap │ └── PromiseKit.xcconfig │ └── SVProgressHUD │ ├── SVProgressHUD-Info.plist │ ├── SVProgressHUD-dummy.m │ ├── SVProgressHUD-prefix.pch │ ├── SVProgressHUD-umbrella.h │ ├── SVProgressHUD.modulemap │ └── SVProgressHUD.xcconfig ├── README.md └── Resources └── fonts ├── Roboto-Black.ttf ├── Roboto-BlackItalic.ttf ├── Roboto-Bold.ttf ├── Roboto-BoldItalic.ttf ├── Roboto-Italic.ttf ├── Roboto-Light.ttf ├── Roboto-LightItalic.ttf ├── Roboto-Medium.ttf ├── Roboto-MediumItalic.ttf ├── Roboto-Regular.ttf ├── Roboto-Thin.ttf ├── Roboto-ThinItalic.ttf ├── RobotoCondensed-Bold.ttf ├── RobotoCondensed-BoldItalic.ttf ├── RobotoCondensed-Italic.ttf ├── RobotoCondensed-Light.ttf ├── RobotoCondensed-LightItalic.ttf └── RobotoCondensed-Regular.ttf /ARInstagram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/project.xcworkspace/xcuserdata/nativlevy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/project.xcworkspace/xcuserdata/nativlevy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/xcshareddata/xcschemes/ARAlbum.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/xcshareddata/xcschemes/ARAlbum.xcscheme -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/xcuserdata/nativlevy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/xcuserdata/nativlevy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ARInstagram.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ARInstagram.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ARInstagram/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/AppDelegate.swift -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-In-Line.imageset/3-In-Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-In-Line.imageset/3-In-Line.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-In-Line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-In-Line.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-in-column.imageset/3-in-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-in-column.imageset/3-in-column.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-in-column.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-in-column.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-in-diagonal.imageset/3-in-diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-in-diagonal.imageset/3-in-diagonal.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/3-in-diagonal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/3-in-diagonal.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/classic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/classic.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/classic.imageset/ever-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/classic.imageset/ever-1.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/classic.imageset/ever-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/classic.imageset/ever-2.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/classic.imageset/ever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/classic.imageset/ever.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/ever.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/ever.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/ever.imageset/classic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/ever.imageset/classic-1.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/ever.imageset/classic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/ever.imageset/classic-2.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/ever.imageset/classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/ever.imageset/classic.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image1.imageset/6d8942ba-ccbe-428b-91f1-d91034819180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image1.imageset/6d8942ba-ccbe-428b-91f1-d91034819180.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image1.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image2.imageset/8f66ca63-379c-442e-bde4-11d48657a287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image2.imageset/8f66ca63-379c-442e-bde4-11d48657a287.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image2.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image3.imageset/3251789a-cc2d-44b1-9988-3088a7eb3571.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image3.imageset/3251789a-cc2d-44b1-9988-3088a7eb3571.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image3.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image4.imageset/07571330-D413-4729-A0C6-A67F396F35A1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image4.imageset/07571330-D413-4729-A0C6-A67F396F35A1.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image4.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image5.imageset/20190322_113728.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image5.imageset/20190322_113728.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image5.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image6.imageset/20190504_174715.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image6.imageset/20190504_174715.jpg -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/image6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/image6.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/overlay_grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/overlay_grid.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/overlay_grid.imageset/overlay_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/overlay_grid.imageset/overlay_grid.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/pyramid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/pyramid.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/pyramid.imageset/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/pyramid.imageset/pyramid.png -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/tile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/tile.imageset/Contents.json -------------------------------------------------------------------------------- /ARInstagram/Assets.xcassets/tile.imageset/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Assets.xcassets/tile.imageset/tile.png -------------------------------------------------------------------------------- /ARInstagram/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ARInstagram/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ARInstagram/Extensions/GalleryViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/GalleryViewController+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/SCNVector3+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/SCNVector3+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/Storyboard+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/Storyboard+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/UICollectionViewCell+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/UICollectionViewCell+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /ARInstagram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/Info.plist -------------------------------------------------------------------------------- /ARInstagram/MVVM/Helpers/HazeRemovalFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Helpers/HazeRemovalFilter.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Helpers/ImageHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Helpers/ImageHelper.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Nodes/LineNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Nodes/LineNode.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Nodes/TileNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Nodes/TileNode.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/ARViewController+ARExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/ARViewController+ARExtensions.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/ARViewController+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/ARViewController+CollectionView.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/ARViewController+Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/ARViewController+Filters.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/ARViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/ARViewController.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/ColumnsTilesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/ColumnsTilesCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/ColumnsTilesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/ColumnsTilesCell.xib -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/DiagonalTilesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/DiagonalTilesCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/DiagonalTilesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/DiagonalTilesCell.xib -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/FilterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/FilterCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/FrameCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/FrameCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/LineTilesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/LineTilesCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/LineTilesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/LineTilesCell.xib -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/PyramidTilesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/PyramidTilesCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/PyramidTilesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/PyramidTilesCell.xib -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/SingleTileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/SingleTileCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/SingleTileCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/SingleTileCell.xib -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Cells/TileLayoutCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Cells/TileLayoutCell.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/ClassicFramedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/ClassicFramedImage.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/Custom/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/Custom/Grid.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/TileLayoutViewController+Gallery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/TileLayoutViewController+Gallery.swift -------------------------------------------------------------------------------- /ARInstagram/MVVM/Views/TilesLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/ARInstagram/MVVM/Views/TilesLayoutViewController.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/LICENSE.md -------------------------------------------------------------------------------- /Pods/Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/README.md -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Configuration/DiskConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Configuration/DiskConfig.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Configuration/MemoryConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Configuration/MemoryConfig.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Extensions/Date+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Extensions/Date+Extensions.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Extensions/JSONDecoder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Extensions/JSONDecoder+Extensions.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/DataSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/DataSerializer.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Entry.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/ExpirationMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/ExpirationMode.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Expiry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Expiry.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/ImageWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/ImageWrapper.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/JSONArrayWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/JSONArrayWrapper.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/JSONDictionaryWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/JSONDictionaryWrapper.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/MD5.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/MemoryCapsule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/MemoryCapsule.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/ObservationToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/ObservationToken.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Optional+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Optional+Extension.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Result.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/StorageError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/StorageError.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Transformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Transformer.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/TransformerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/TransformerFactory.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/TypeWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/TypeWrapper.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Library/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Library/Types.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/AsyncStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/AsyncStorage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/DiskStorage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/HybridStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/HybridStorage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/KeyObservationRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/KeyObservationRegistry.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/MemoryStorage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/Storage+Transform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/Storage+Transform.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/Storage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/StorageAware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/StorageAware.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/StorageObservationRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/StorageObservationRegistry.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/Shared/Storage/SyncStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/Shared/Storage/SyncStorage.swift -------------------------------------------------------------------------------- /Pods/Cache/Source/iOS/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Cache/Source/iOS/UIImage+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/LICENSE.md -------------------------------------------------------------------------------- /Pods/Gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/README.md -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_auto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_auto@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_auto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_auto@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_off@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_off@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_on@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_flash_on@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_focus@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_focus@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_rotate@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_camera_rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_camera_rotate@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_close@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_close@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_empty_view_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_empty_view_image@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_empty_view_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_empty_view_image@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_page_indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_page_indicator@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_page_indicator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_page_indicator@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_permission_view_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_permission_view_camera@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_placeholder@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_title_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_title_arrow@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_title_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_title_arrow@3x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_video_cell_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_video_cell_camera@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Resources/Gallery.bundle/gallery_video_view_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Resources/Gallery.bundle/gallery_video_view_camera@2x.png -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/CameraController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/CameraController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/CameraMan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/CameraMan.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/CameraView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/ShutterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/ShutterButton.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/StackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/StackView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Camera/TripleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Camera/TripleButton.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Gallery/GalleryController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Gallery/GalleryController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/Album.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/Album.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/Cart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/Cart.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/Image.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/ImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/ImageCell.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/ImagesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/ImagesController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Images/ImagesLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Images/ImagesLibrary.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Config.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Constraints.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Dropdown/DropdownController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Dropdown/DropdownController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/EventHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/EventHub.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/AVAsset+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/AVAsset+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/Array+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/UIImageView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/UIImageView+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/UIScrollView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/UIScrollView+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Fetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Fetcher.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/GalleryBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/GalleryBundle.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/LocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/LocationManager.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Once.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Once.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Pages/PageIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Pages/PageIndicator.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Pages/PagesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Pages/PagesController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Permission/Permission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Permission/Permission.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Permission/PermissionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Permission/PermissionController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Permission/PermissionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Permission/PermissionView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/Utils.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/VideoEditor/AdvancedVideoEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/VideoEditor/AdvancedVideoEditor.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/VideoEditor/EditInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/VideoEditor/EditInfo.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/VideoEditor/VideoEditing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/VideoEditor/VideoEditing.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/VideoEditor/VideoEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/VideoEditor/VideoEditor.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/View/AlbumCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/View/AlbumCell.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/View/ArrowButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/View/ArrowButton.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/View/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/View/EmptyView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/View/FrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/View/FrameView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Utils/View/GridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Utils/View/GridView.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Videos/Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Videos/Video.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Videos/VideoBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Videos/VideoBox.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Videos/VideoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Videos/VideoCell.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Videos/VideosController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Videos/VideosController.swift -------------------------------------------------------------------------------- /Pods/Gallery/Sources/Videos/VideosLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Gallery/Sources/Videos/VideosLibrary.swift -------------------------------------------------------------------------------- /Pods/Imaginary/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/LICENSE.md -------------------------------------------------------------------------------- /Pods/Imaginary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/README.md -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Extensions/View+Imaginary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Extensions/View+Imaginary.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Fetcher/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Fetcher/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Fetcher/ImageFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Fetcher/ImageFetcher.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Fetcher/MultipleImageFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Fetcher/MultipleImageFetcher.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/Configuration.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/ImageDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/ImageDisplayer.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/ImaginaryError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/ImaginaryError.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/Option.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/Result.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/Shared/Library/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/Shared/Library/Types.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/iOS/ButtonBackgroundDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/iOS/ButtonBackgroundDisplayer.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/iOS/ButtonDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/iOS/ButtonDisplayer.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/iOS/Decompressor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/iOS/Decompressor.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/iOS/ImageViewDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/iOS/ImageViewDisplayer.swift -------------------------------------------------------------------------------- /Pods/Imaginary/Sources/iOS/TintImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Imaginary/Sources/iOS/TintImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Lightbox/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/LICENSE.md -------------------------------------------------------------------------------- /Pods/Lightbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/README.md -------------------------------------------------------------------------------- /Pods/Lightbox/Resources/Lightbox.bundle/lightbox_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Resources/Lightbox.bundle/lightbox_play@2x.png -------------------------------------------------------------------------------- /Pods/Lightbox/Source/AssetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/AssetManager.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Library/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Library/Color+Extensions.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Library/LayoutConfigurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Library/LayoutConfigurable.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Library/LightboxTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Library/LightboxTransition.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Library/UIView+Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Library/UIView+Gradient.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/LightboxConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/LightboxConfig.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/LightboxController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/LightboxController.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/LightboxImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/LightboxImage.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/LightboxImageStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/LightboxImageStub.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Views/FooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Views/FooterView.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Views/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Views/HeaderView.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Views/InfoLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Views/InfoLabel.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Views/LoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Views/LoadingIndicator.swift -------------------------------------------------------------------------------- /Pods/Lightbox/Source/Views/PageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Lightbox/Source/Views/PageView.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Cache.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Cache.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Gallery.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Gallery.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Imaginary.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Imaginary.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Lightbox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Lightbox.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Pods-ARInstagram.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/Pods-ARInstagram.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/PromiseKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/PromiseKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/SVProgressHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/SVProgressHUD.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Pods.xcodeproj/xcuserdata/sharonrashish.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/LICENSE -------------------------------------------------------------------------------- /Pods/PromiseKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/README.md -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/AnyPromise+Private.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/AnyPromise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Box.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Catchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Catchable.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Configuration.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/CustomStringConvertible.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Deprecations.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Error.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Guarantee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Guarantee.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/LogEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/LogEvent.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/NSMethodSignatureForBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/NSMethodSignatureForBlock.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/PMKCallVariadicBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/PMKCallVariadicBlock.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/PromiseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/PromiseKit.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Resolver.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Thenable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/Thenable.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/after.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/after.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/after.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/after.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/dispatch_promise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/dispatch_promise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/firstly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/firstly.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/fwd.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/hang.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/hang.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/hang.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/hang.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/join.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/race.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/race.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/race.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/race.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/when.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/when.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/when.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/PromiseKit/Sources/when.swift -------------------------------------------------------------------------------- /Pods/SVProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/README.md -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Cache/Cache.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Cache/Cache.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Gallery/Gallery.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Gallery/Gallery.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Imaginary/Imaginary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Imaginary/Imaginary.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Lightbox/Lightbox.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Lightbox/Lightbox.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/Pods-ARInstagram/Pods-ARInstagram.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/README.md -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Resources/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /Resources/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativ18/ARInstagram/HEAD/Resources/fonts/RobotoCondensed-Regular.ttf --------------------------------------------------------------------------------