gitextract_hpuwjgr8/ ├── .gitignore ├── CHANGES ├── FLAnimatedImage/ │ ├── FLAnimatedImage.m │ ├── FLAnimatedImageView.m │ ├── Info.plist │ └── include/ │ ├── FLAnimatedImage.h │ └── FLAnimatedImageView.h ├── FLAnimatedImage.podspec ├── FLAnimatedImage.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── FLAnimatedImage.xcscheme ├── FLAnimatedImage.xcworkspace/ │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── FLAnimatedImageDemo/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DebugView.h │ ├── DebugView.m │ ├── FLAnimatedImageDemo-Info.plist │ ├── FLAnimatedImageDemo-Prefix.pch │ ├── FrameCacheView.h │ ├── FrameCacheView.m │ ├── GraphView.h │ ├── GraphView.m │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage/ │ │ └── Contents.json │ ├── PlayheadView.h │ ├── PlayheadView.m │ ├── RSPlayPauseButton.h │ ├── RSPlayPauseButton.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ └── main.m ├── FLAnimatedImageDemo.xcodeproj/ │ └── project.pbxproj ├── LICENSE ├── Package.swift └── README.md