gitextract_6kv41eo_/ ├── .gitignore ├── Podfile ├── PopcornTime/ │ ├── Controllers/ │ │ ├── AnimeDetailsViewController.swift │ │ ├── AnimeViewController.swift │ │ ├── BarHidingViewController.swift │ │ ├── BaseCollectionViewController.swift │ │ ├── BaseDetailsViewController.swift │ │ ├── ColorfullTabBarController.swift │ │ ├── FavoritesViewController.swift │ │ ├── LoadingViewController.swift │ │ ├── MovieDetailsViewController.swift │ │ ├── MoviesViewController.swift │ │ ├── OAuthViewController.swift │ │ ├── PagedViewController.swift │ │ ├── ParseViewController.swift │ │ ├── SettingsViewController.swift │ │ ├── ShowDetailsViewController.swift │ │ └── ShowsViewController.swift │ ├── Info.plist │ ├── Models/ │ │ ├── APIManager.swift │ │ ├── Anime.swift │ │ ├── AppDelegate.swift │ │ ├── BaseStructures.swift │ │ ├── BasicInfo.swift │ │ ├── DataManager.swift │ │ ├── Extensions.swift │ │ ├── Image.swift │ │ ├── ImageProvider.swift │ │ ├── Movie.swift │ │ ├── PTAPIManager.h │ │ ├── PTAPIManager.m │ │ ├── PTTorrentStreamer.h │ │ ├── PTTorrentStreamer.mm │ │ ├── ParseManager.swift │ │ └── Show.swift │ ├── PopcornTime-Bridging-Header.h │ ├── Resources/ │ │ ├── Images.xcassets/ │ │ │ ├── AnimeIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── BigLogo.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── SubwayIconSet/ │ │ │ ├── AddToFavoritesIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── FavoritesIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── MoviesIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── RemoveFromFavoritesIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── SettingsIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ └── ShowsIcon.imageset/ │ │ │ └── Contents.json │ │ ├── Launch Screen.xib │ │ └── Main.storyboard │ └── Views/ │ ├── EpisodeCell.swift │ ├── EpisodeCell.xib │ ├── MoreShowsCollectionViewCell.swift │ ├── MoreShowsCollectionViewCell.xib │ ├── SeasonHeader.swift │ ├── SeasonHeader.xib │ ├── ShowCollectionViewCell.swift │ ├── ShowCollectionViewCell.xib │ ├── StratchyHeader.swift │ ├── StratchyHeader.xib │ └── StratchyHeaderLayout.swift ├── PopcornTime.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── PopcornTime.xcscheme ├── README.md ├── Thirdparties/ │ └── VLCKit/ │ └── Dropin-Player/ │ ├── VDLPlaybackViewController.h │ ├── VDLPlaybackViewController.m │ └── VDLPlaybackViewController.xib └── popcorntime_api.paw