gitextract_ihm3ftmh/ ├── .gitignore ├── LICENSE ├── README.md ├── resCustom.txt ├── reskeys.txt ├── shakefun/ │ ├── LICENSE │ ├── README.md │ ├── shakefun/ │ │ ├── AFNetworking/ │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperation.m │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLConnectionOperation.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── CollectViewController.h │ │ ├── CollectViewController.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MagicalRecord/ │ │ │ ├── Categories/ │ │ │ │ ├── DataImport/ │ │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ │ ├── MagicalImportFunctions.m │ │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ │ ├── NSNumber+MagicalDataImport.m │ │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ │ ├── NSObject+MagicalDataImport.m │ │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ │ │ │ ├── NSString+MagicalDataImport.h │ │ │ │ │ └── NSString+MagicalDataImport.m │ │ │ │ ├── NSManagedObject/ │ │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ │ ├── NSManagedObject+MagicalAggregation.m │ │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ │ ├── NSManagedObject+MagicalDataImport.m │ │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ │ ├── NSManagedObject+MagicalFinders.m │ │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ │ ├── NSManagedObject+MagicalRecord.m │ │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ │ └── NSManagedObject+MagicalRequests.m │ │ │ │ ├── NSManagedObjectContext/ │ │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ │ └── NSManagedObjectContext+MagicalThreading.m │ │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ │ ├── NSManagedObjectModel+MagicalRecord.m │ │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ │ ├── NSPersistentStore+MagicalRecord.m │ │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ │ └── NSPersistentStoreCoordinator+MagicalRecord.m │ │ │ ├── Core/ │ │ │ │ ├── MagicalRecord+Actions.h │ │ │ │ ├── MagicalRecord+Actions.m │ │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ │ ├── MagicalRecord+ErrorHandling.m │ │ │ │ ├── MagicalRecord+Options.h │ │ │ │ ├── MagicalRecord+Options.m │ │ │ │ ├── MagicalRecord+Setup.h │ │ │ │ ├── MagicalRecord+Setup.m │ │ │ │ ├── MagicalRecord+ShorthandSupport.h │ │ │ │ ├── MagicalRecord+ShorthandSupport.m │ │ │ │ ├── MagicalRecord+iCloud.h │ │ │ │ ├── MagicalRecord+iCloud.m │ │ │ │ ├── MagicalRecord.h │ │ │ │ ├── MagicalRecord.m │ │ │ │ └── MagicalRecordShorthand.h │ │ │ └── CoreData+MagicalRecord.h │ │ ├── PrefixHeader.pch │ │ ├── SVProgressHUD/ │ │ │ ├── SVProgressHUD.h │ │ │ └── SVProgressHUD.m │ │ ├── URLEntity.h │ │ ├── URLEntity.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ └── shakefun.xcdatamodeld/ │ │ ├── .xccurrentversion │ │ └── shakefun.xcdatamodel/ │ │ └── contents │ ├── shakefun.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── shakefunTests/ │ ├── Info.plist │ └── shakefunTests.m ├── zmconfuse.sh ├── zmreplacewords/ │ ├── zmreplacewords/ │ │ └── main.c │ └── zmreplacewords.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata └── zmreplacewords.run