gitextract_0izd3rqz/ ├── .gitignore ├── DynamicClipImage/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── TARGET_IMG.imageset/ │ │ │ └── Contents.json │ │ ├── TARGET_IMG_1.imageset/ │ │ │ └── Contents.json │ │ └── TARGET_IMG_2.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── YasicClipAreaLayer.h │ ├── YasicClipAreaLayer.m │ ├── YasicClipPage.h │ ├── YasicClipPage.m │ ├── YasicPanGestureRecognizer.h │ ├── YasicPanGestureRecognizer.m │ └── main.m ├── DynamicClipImage.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── DynamicClipImage.xcworkspace/ │ └── contents.xcworkspacedata ├── Podfile ├── Pods/ │ ├── Masonry/ │ │ ├── LICENSE │ │ ├── Masonry/ │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── Pods.xcodeproj/ │ │ └── project.pbxproj │ └── Target Support Files/ │ ├── Masonry/ │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ └── Pods-DynamicClipImage/ │ ├── Pods-DynamicClipImage-acknowledgements.markdown │ ├── Pods-DynamicClipImage-acknowledgements.plist │ ├── Pods-DynamicClipImage-dummy.m │ ├── Pods-DynamicClipImage-frameworks.sh │ ├── Pods-DynamicClipImage-resources.sh │ ├── Pods-DynamicClipImage.debug.xcconfig │ └── Pods-DynamicClipImage.release.xcconfig └── README.md