gitextract_qv1a0904/ ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── LICENSE.md ├── README.md ├── RNTester/ │ ├── ARTExample.js │ ├── AccessibilityAndroidExample.android.js │ ├── AccessibilityIOSExample.js │ ├── ActionSheetIOSExample.js │ ├── ActivityIndicatorExample.js │ ├── AlertExample.js │ ├── AlertIOSExample.js │ ├── AnimatedExample.js │ ├── AnimatedGratuitousApp/ │ │ ├── AnExApp.js │ │ ├── AnExBobble.js │ │ ├── AnExChained.js │ │ ├── AnExScroll.js │ │ ├── AnExSet.js │ │ ├── AnExSlides.md │ │ └── AnExTilt.js │ ├── AppStateExample.js │ ├── AssetScaledImageExample.js │ ├── AsyncStorageExample.js │ ├── BorderExample.js │ ├── BoxShadowExample.js │ ├── ButtonExample.js │ ├── CameraRollExample.js │ ├── CameraRollView.js │ ├── CheckBoxExample.js │ ├── ClipboardExample.js │ ├── DatePickerAndroidExample.js │ ├── DatePickerIOSExample.js │ ├── DimensionsExample.js │ ├── ExampleTypes.js │ ├── FlatListExample.js │ ├── GeolocationExample.js │ ├── ImageCapInsetsExample.js │ ├── ImageEditingExample.js │ ├── ImageExample.js │ ├── InputAccessoryViewExample.js │ ├── KeyboardAvoidingViewExample.js │ ├── LayoutAnimationExample.js │ ├── LayoutEventsExample.js │ ├── LayoutExample.js │ ├── LinkingExample.js │ ├── ListExampleShared.js │ ├── ListViewExample.js │ ├── ListViewGridLayoutExample.js │ ├── ListViewPagingExample.js │ ├── MaskedViewExample.js │ ├── ModalExample.js │ ├── MultiColumnExample.js │ ├── NativeAnimationsExample.js │ ├── NavigatorIOSBarStyleExample.js │ ├── NavigatorIOSColorsExample.js │ ├── NavigatorIOSExample.js │ ├── NetInfoExample.js │ ├── OrientationChangeExample.js │ ├── PanResponderExample.js │ ├── PermissionsExampleAndroid.android.js │ ├── PickerExample.js │ ├── PickerIOSExample.js │ ├── PointerEventsExample.js │ ├── ProgressBarAndroidExample.android.js │ ├── ProgressViewIOSExample.js │ ├── PushNotificationIOSExample.js │ ├── RCTRootViewIOSExample.js │ ├── RNTesterActions.js │ ├── RNTesterApp.android.js │ ├── RNTesterApp.ios.js │ ├── RNTesterBlock.js │ ├── RNTesterButton.js │ ├── RNTesterExampleContainer.js │ ├── RNTesterExampleList.js │ ├── RNTesterList.android.js │ ├── RNTesterList.ios.js │ ├── RNTesterNavigationReducer.js │ ├── RNTesterPage.js │ ├── RNTesterSettingSwitchRow.js │ ├── RNTesterStatePersister.js │ ├── RNTesterTitle.js │ ├── RTLExample.js │ ├── RefreshControlExample.js │ ├── RootViewSizeFlexibilityExampleApp.js │ ├── SafeAreaViewExample.js │ ├── ScrollViewExample.js │ ├── ScrollViewSimpleExample.js │ ├── SectionListExample.js │ ├── SegmentedControlIOSExample.js │ ├── SetPropertiesExampleApp.js │ ├── ShareExample.js │ ├── SliderExample.js │ ├── SnapshotExample.js │ ├── StatusBarExample.js │ ├── SwipeableFlatListExample.js │ ├── SwipeableListViewExample.js │ ├── SwitchExample.js │ ├── TVEventHandlerExample.js │ ├── TabBarIOSBarStyleExample.js │ ├── TabBarIOSExample.js │ ├── TextExample.android.js │ ├── TextExample.ios.js │ ├── TextInputExample.android.js │ ├── TextInputExample.ios.js │ ├── TimePickerAndroidExample.js │ ├── TimerExample.js │ ├── ToastAndroidExample.android.js │ ├── ToolbarAndroidExample.android.js │ ├── ToolbarAndroidExample.ios.js │ ├── TouchableExample.js │ ├── TransformExample.js │ ├── TransparentHitTestExample.js │ ├── URIActionMap.js │ ├── VibrationExample.js │ ├── VibrationIOSExample.js │ ├── ViewExample.js │ ├── ViewPagerAndroidExample.android.js │ ├── WebSocketExample.js │ ├── WebViewExample.js │ ├── XHRExample.js │ ├── XHRExampleBinaryUpload.js │ ├── XHRExampleCookies.js │ ├── XHRExampleDownload.js │ ├── XHRExampleFetch.js │ ├── XHRExampleFormData.js │ ├── XHRExampleHeaders.js │ ├── XHRExampleOnTimeOut.js │ ├── createExamplePage.js │ ├── helloworld.html │ ├── http_test_server.js │ ├── messagingtest.html │ └── websocket_test_server.js ├── android/ │ ├── app/ │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── com/ │ │ │ └── marzipants/ │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res/ │ │ └── values/ │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores/ │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios/ │ ├── Frameworks/ │ │ ├── UIFoundation.framework/ │ │ │ ├── Headers/ │ │ │ │ ├── CDStructures.h │ │ │ │ ├── NSATSGlyphStorage.h │ │ │ │ ├── NSATSLineFragment.h │ │ │ │ ├── NSATSTypesetter.h │ │ │ │ ├── NSArray-UICollectionAdditions_Performance.h │ │ │ │ ├── NSArray-UIRemovalAdditions.h │ │ │ │ ├── NSAttributeDictionary.h │ │ │ │ ├── NSAttributeDictionaryEnumerator.h │ │ │ │ ├── NSAttributedString-NSAttributedStringAttachmentConveniences.h │ │ │ │ ├── NSAttributedString-NSAttributedStringUIFoundationAdditions.h │ │ │ │ ├── NSAttributedString-NSExtendedStringDrawing.h │ │ │ │ ├── NSAttributedString-NSStringDrawing.h │ │ │ │ ├── NSCIDGlyphInfo.h │ │ │ │ ├── NSCTFont.h │ │ │ │ ├── NSCTFontDescriptor.h │ │ │ │ ├── NSCTGlyphInfo.h │ │ │ │ ├── NSCoding-Protocol.h │ │ │ │ ├── NSCollectionViewAnimation.h │ │ │ │ ├── NSCollectionViewData.h │ │ │ │ ├── NSCollectionViewFlowLayout.h │ │ │ │ ├── NSCollectionViewFlowLayoutAuxiliary.h │ │ │ │ ├── NSCollectionViewFlowLayoutInvalidationContext.h │ │ │ │ ├── NSCollectionViewIndexMapper.h │ │ │ │ ├── NSCollectionViewLayout.h │ │ │ │ ├── NSCollectionViewLayoutAttributes.h │ │ │ │ ├── NSCollectionViewLayoutAttributesAuxiliary.h │ │ │ │ ├── NSCollectionViewLayoutInvalidationContext.h │ │ │ │ ├── NSCollectionViewTransitionLayout.h │ │ │ │ ├── NSCollectionViewUpdate.h │ │ │ │ ├── NSCollectionViewUpdateItem.h │ │ │ │ ├── NSConcreteGlyphGenerator.h │ │ │ │ ├── NSConcreteNotifyingMutableAttributedString.h │ │ │ │ ├── NSConcreteTextStorage.h │ │ │ │ ├── NSCopying-Protocol.h │ │ │ │ ├── NSCoreTypesetter.h │ │ │ │ ├── NSDictionary-UICollectionAdditions.h │ │ │ │ ├── NSDocFormatReader.h │ │ │ │ ├── NSDocFormatWriter.h │ │ │ │ ├── NSExtraLMData.h │ │ │ │ ├── NSFont.h │ │ │ │ ├── NSFontAssetRequest.h │ │ │ │ ├── NSFontDescriptor.h │ │ │ │ ├── NSGlyphGenerator.h │ │ │ │ ├── NSGlyphInfo.h │ │ │ │ ├── NSGlyphNameGlyphInfo.h │ │ │ │ ├── NSHTMLReader.h │ │ │ │ ├── NSHTMLWebDelegate.h │ │ │ │ ├── NSHTMLWriter.h │ │ │ │ ├── NSIdRunStorage.h │ │ │ │ ├── NSIdentityGlyphInfo.h │ │ │ │ ├── NSIndexPath-NSCollectionViewAdditions.h │ │ │ │ ├── NSIndexPath-UITableView.h │ │ │ │ ├── NSInsertionPointHelper.h │ │ │ │ ├── NSLayoutManager.h │ │ │ │ ├── NSLayoutManagerDelegate-Protocol.h │ │ │ │ ├── NSLayoutManagerTextBlockHelper.h │ │ │ │ ├── NSLayoutManagerTextBlockRowArrayCache.h │ │ │ │ ├── NSLineFragmentRenderingContext.h │ │ │ │ ├── NSMutableArray-UICollectionAdditions_Performance.h │ │ │ │ ├── NSMutableAttributedString-NSMutableAttributedStringAttachmentConveniences.h │ │ │ │ ├── NSMutableAttributedString-NSMutableAttributedStringKitAdditions.h │ │ │ │ ├── NSMutableCopying-Protocol.h │ │ │ │ ├── NSMutableFontDescriptor.h │ │ │ │ ├── NSMutableIndexPath.h │ │ │ │ ├── NSMutableParagraphStyle.h │ │ │ │ ├── NSObject-Protocol.h │ │ │ │ ├── NSOpenDocumentReader.h │ │ │ │ ├── NSOpenDocumentWriter.h │ │ │ │ ├── NSParagraphArbitrator.h │ │ │ │ ├── NSParagraphStyle.h │ │ │ │ ├── NSParagraphStyleExtraData.h │ │ │ │ ├── NSProgressReporting-Protocol.h │ │ │ │ ├── NSRTFReader.h │ │ │ │ ├── NSRTFReaderTableState.h │ │ │ │ ├── NSRTFWriter.h │ │ │ │ ├── NSRunStorage.h │ │ │ │ ├── NSSecureCoding-Protocol.h │ │ │ │ ├── NSShadow.h │ │ │ │ ├── NSSingleLineTypesetter.h │ │ │ │ ├── NSStorage.h │ │ │ │ ├── NSString-NSExtendedStringDrawing.h │ │ │ │ ├── NSString-NSStringDrawing.h │ │ │ │ ├── NSString-NSStringDrawingExtension.h │ │ │ │ ├── NSString-UIFontPrivate.h │ │ │ │ ├── NSStringDrawingContext.h │ │ │ │ ├── NSStringDrawingTextStorage.h │ │ │ │ ├── NSStringDrawingTextStorageSettings.h │ │ │ │ ├── NSSubstituteWebResource.h │ │ │ │ ├── NSTempAttributeDictionary.h │ │ │ │ ├── NSTextAlternatives.h │ │ │ │ ├── NSTextApplicationFrameworkContextClient-Protocol.h │ │ │ │ ├── NSTextAttachment.h │ │ │ │ ├── NSTextAttachmentContainer-Protocol.h │ │ │ │ ├── NSTextAttachmentViewProvider.h │ │ │ │ ├── NSTextBlock.h │ │ │ │ ├── NSTextBlockLayoutHelper.h │ │ │ │ ├── NSTextContainer.h │ │ │ │ ├── NSTextLayoutFragment.h │ │ │ │ ├── NSTextLayoutOrientationProvider-Protocol.h │ │ │ │ ├── NSTextLineFragment.h │ │ │ │ ├── NSTextList.h │ │ │ │ ├── NSTextStorage.h │ │ │ │ ├── NSTextTab.h │ │ │ │ ├── NSTextTable.h │ │ │ │ ├── NSTextTableBlock.h │ │ │ │ ├── NSTypesetter.h │ │ │ │ ├── NSViewAnimationContext.h │ │ │ │ ├── NSWordMLReader.h │ │ │ │ ├── NSWordMLWriter.h │ │ │ │ ├── NSXMLParserDelegate-Protocol.h │ │ │ │ ├── NSZipTextReader.h │ │ │ │ ├── UIBoxcarFilterPointFIFO.h │ │ │ │ ├── UIFont.h │ │ │ │ ├── UIFontDescriptor.h │ │ │ │ ├── UINibCoderValue.h │ │ │ │ ├── UINibDecoder.h │ │ │ │ ├── UINibEncoder.h │ │ │ │ ├── UINibStringIDTable.h │ │ │ │ ├── UIPointFIFO.h │ │ │ │ ├── UIQuadCurvePointFIFO.h │ │ │ │ ├── _NSATSTypesetterGuts.h │ │ │ │ ├── _NSAttributeRun.h │ │ │ │ ├── _NSAttributes.h │ │ │ │ ├── _NSCachedAttributedString.h │ │ │ │ ├── _NSCollectionViewCore.h │ │ │ │ ├── _NSCollectionViewItemKey.h │ │ │ │ ├── _NSCollectionViewPrefetchItem.h │ │ │ │ ├── _NSCollectionViewPrefetchingContext.h │ │ │ │ ├── _NSCollectionViewTrackedValue.h │ │ │ │ ├── _NSCollectionViewTrackedValueItem.h │ │ │ │ ├── _NSFlowLayoutInfo.h │ │ │ │ ├── _NSFlowLayoutItem.h │ │ │ │ ├── _NSFlowLayoutRow.h │ │ │ │ ├── _NSFlowLayoutSection.h │ │ │ │ ├── _NSTextStorageSideData.h │ │ │ │ ├── _NSUIAnimator.h │ │ │ │ ├── _UICache.h │ │ │ │ ├── _UIFontCacheKey.h │ │ │ │ ├── _UIPointVector.h │ │ │ │ ├── __NSATSStringSegment.h │ │ │ │ ├── __NSFontTypefaceInfo.h │ │ │ │ ├── __NSSharedFontInstanceInfo.h │ │ │ │ └── __UIFontExtraData.h │ │ │ └── UIFoundation.tbd │ │ └── UIKit.framework/ │ │ ├── Headers/ │ │ │ ├── DocumentManager.h │ │ │ ├── NSAttributedString.h │ │ │ ├── NSDataAsset.h │ │ │ ├── NSFileProviderExtension.h │ │ │ ├── NSIndexPath+UIKitAdditions.h │ │ │ ├── NSItemProvider+UIKitAdditions.h │ │ │ ├── NSLayoutAnchor.h │ │ │ ├── NSLayoutConstraint.h │ │ │ ├── NSLayoutManager.h │ │ │ ├── NSParagraphStyle.h │ │ │ ├── NSShadow.h │ │ │ ├── NSStringDrawing.h │ │ │ ├── NSText.h │ │ │ ├── NSTextAttachment.h │ │ │ ├── NSTextContainer.h │ │ │ ├── NSTextStorage.h │ │ │ ├── UIAccelerometer.h │ │ │ ├── UIAccessibility.h │ │ │ ├── UIAccessibilityAdditions.h │ │ │ ├── UIAccessibilityConstants.h │ │ │ ├── UIAccessibilityContainer.h │ │ │ ├── UIAccessibilityContentSizeCategoryImageAdjusting.h │ │ │ ├── UIAccessibilityCustomAction.h │ │ │ ├── UIAccessibilityCustomRotor.h │ │ │ ├── UIAccessibilityElement.h │ │ │ ├── UIAccessibilityIdentification.h │ │ │ ├── UIAccessibilityLocationDescriptor.h │ │ │ ├── UIAccessibilityZoom.h │ │ │ ├── UIActionSheet.h │ │ │ ├── UIActivity.h │ │ │ ├── UIActivityIndicatorView.h │ │ │ ├── UIActivityItemProvider.h │ │ │ ├── UIActivityViewController.h │ │ │ ├── UIAlert.h │ │ │ ├── UIAlertController.h │ │ │ ├── UIAlertView.h │ │ │ ├── UIAppearance.h │ │ │ ├── UIApplication.h │ │ │ ├── UIApplicationShortcutItem.h │ │ │ ├── UIAttachmentBehavior.h │ │ │ ├── UIBarButtonItem.h │ │ │ ├── UIBarButtonItemGroup.h │ │ │ ├── UIBarCommon.h │ │ │ ├── UIBarItem.h │ │ │ ├── UIBezierPath.h │ │ │ ├── UIBlurEffect.h │ │ │ ├── UIButton.h │ │ │ ├── UICloudSharingController.h │ │ │ ├── UICollectionView.h │ │ │ ├── UICollectionViewCell.h │ │ │ ├── UICollectionViewController.h │ │ │ ├── UICollectionViewFlowLayout.h │ │ │ ├── UICollectionViewLayout.h │ │ │ ├── UICollectionViewTransitionLayout.h │ │ │ ├── UICollisionBehavior.h │ │ │ ├── UIColor.h │ │ │ ├── UIContentSizeCategory.h │ │ │ ├── UIContentSizeCategoryAdjusting.h │ │ │ ├── UIContextualAction.h │ │ │ ├── UIControl.h │ │ │ ├── UIDataDetectors.h │ │ │ ├── UIDataSourceTranslating.h │ │ │ ├── UIDatePicker.h │ │ │ ├── UIDevice.h │ │ │ ├── UIDocument.h │ │ │ ├── UIDocumentBrowserAction.h │ │ │ ├── UIDocumentBrowserViewController.h │ │ │ ├── UIDocumentInteractionController.h │ │ │ ├── UIDocumentMenuViewController.h │ │ │ ├── UIDocumentPickerExtensionViewController.h │ │ │ ├── UIDocumentPickerViewController.h │ │ │ ├── UIDragInteraction.h │ │ │ ├── UIDragItem.h │ │ │ ├── UIDragPreview.h │ │ │ ├── UIDragPreviewParameters.h │ │ │ ├── UIDragSession.h │ │ │ ├── UIDropInteraction.h │ │ │ ├── UIDynamicAnimator.h │ │ │ ├── UIDynamicBehavior.h │ │ │ ├── UIDynamicItemBehavior.h │ │ │ ├── UIEvent.h │ │ │ ├── UIFeedbackGenerator.h │ │ │ ├── UIFieldBehavior.h │ │ │ ├── UIFocus.h │ │ │ ├── UIFocusAnimationCoordinator.h │ │ │ ├── UIFocusDebugger.h │ │ │ ├── UIFocusGuide.h │ │ │ ├── UIFocusMovementHint.h │ │ │ ├── UIFocusSystem.h │ │ │ ├── UIFont.h │ │ │ ├── UIFontDescriptor.h │ │ │ ├── UIFontMetrics.h │ │ │ ├── UIGeometry.h │ │ │ ├── UIGestureRecognizer.h │ │ │ ├── UIGestureRecognizerSubclass.h │ │ │ ├── UIGraphics.h │ │ │ ├── UIGraphicsImageRenderer.h │ │ │ ├── UIGraphicsPDFRenderer.h │ │ │ ├── UIGraphicsRenderer.h │ │ │ ├── UIGraphicsRendererSubclass.h │ │ │ ├── UIGravityBehavior.h │ │ │ ├── UIGuidedAccessRestrictions.h │ │ │ ├── UIImage.h │ │ │ ├── UIImageAsset.h │ │ │ ├── UIImagePickerController.h │ │ │ ├── UIImageView.h │ │ │ ├── UIImpactFeedbackGenerator.h │ │ │ ├── UIInputView.h │ │ │ ├── UIInputViewController.h │ │ │ ├── UIInteraction.h │ │ │ ├── UIInterface.h │ │ │ ├── UIKit.apinotes │ │ │ ├── UIKit.h │ │ │ ├── UIKitCore.h │ │ │ ├── UIKitDefines.h │ │ │ ├── UILabel.h │ │ │ ├── UILayoutGuide.h │ │ │ ├── UILexicon.h │ │ │ ├── UILocalNotification.h │ │ │ ├── UILocalizedIndexedCollation.h │ │ │ ├── UILongPressGestureRecognizer.h │ │ │ ├── UIManagedDocument.h │ │ │ ├── UIMenuController.h │ │ │ ├── UIMotionEffect.h │ │ │ ├── UINavigationBar.h │ │ │ ├── UINavigationController.h │ │ │ ├── UINavigationItem.h │ │ │ ├── UINib.h │ │ │ ├── UINibDeclarations.h │ │ │ ├── UINibLoading.h │ │ │ ├── UINotificationFeedbackGenerator.h │ │ │ ├── UIPageControl.h │ │ │ ├── UIPageViewController.h │ │ │ ├── UIPanGestureRecognizer.h │ │ │ ├── UIPasteConfiguration.h │ │ │ ├── UIPasteConfigurationSupporting.h │ │ │ ├── UIPasteboard.h │ │ │ ├── UIPickerView.h │ │ │ ├── UIPinchGestureRecognizer.h │ │ │ ├── UIPopoverBackgroundView.h │ │ │ ├── UIPopoverController.h │ │ │ ├── UIPopoverPresentationController.h │ │ │ ├── UIPopoverSupport.h │ │ │ ├── UIPresentationController.h │ │ │ ├── UIPress.h │ │ │ ├── UIPressesEvent.h │ │ │ ├── UIPreviewInteraction.h │ │ │ ├── UIPrintError.h │ │ │ ├── UIPrintFormatter.h │ │ │ ├── UIPrintInfo.h │ │ │ ├── UIPrintInteractionController.h │ │ │ ├── UIPrintPageRenderer.h │ │ │ ├── UIPrintPaper.h │ │ │ ├── UIPrinter.h │ │ │ ├── UIPrinterPickerController.h │ │ │ ├── UIProgressView.h │ │ │ ├── UIPushBehavior.h │ │ │ ├── UIReferenceLibraryViewController.h │ │ │ ├── UIRefreshControl.h │ │ │ ├── UIRegion.h │ │ │ ├── UIResponder.h │ │ │ ├── UIRotationGestureRecognizer.h │ │ │ ├── UIScreen.h │ │ │ ├── UIScreenEdgePanGestureRecognizer.h │ │ │ ├── UIScreenMode.h │ │ │ ├── UIScrollView.h │ │ │ ├── UISearchBar.h │ │ │ ├── UISearchContainerViewController.h │ │ │ ├── UISearchController.h │ │ │ ├── UISearchDisplayController.h │ │ │ ├── UISegmentedControl.h │ │ │ ├── UISelectionFeedbackGenerator.h │ │ │ ├── UISlider.h │ │ │ ├── UISnapBehavior.h │ │ │ ├── UISplitViewController.h │ │ │ ├── UISpringLoadedInteraction.h │ │ │ ├── UISpringLoadedInteractionSupporting.h │ │ │ ├── UIStackView.h │ │ │ ├── UIStateRestoration.h │ │ │ ├── UIStepper.h │ │ │ ├── UIStoryboard.h │ │ │ ├── UIStoryboardPopoverSegue.h │ │ │ ├── UIStoryboardSegue.h │ │ │ ├── UIStringDrawing.h │ │ │ ├── UISwipeActionsConfiguration.h │ │ │ ├── UISwipeGestureRecognizer.h │ │ │ ├── UISwitch.h │ │ │ ├── UITabBar.h │ │ │ ├── UITabBarController.h │ │ │ ├── UITabBarItem.h │ │ │ ├── UITableView.h │ │ │ ├── UITableViewCell.h │ │ │ ├── UITableViewController.h │ │ │ ├── UITableViewHeaderFooterView.h │ │ │ ├── UITapGestureRecognizer.h │ │ │ ├── UITargetedDragPreview.h │ │ │ ├── UITextChecker.h │ │ │ ├── UITextDragPreviewRenderer.h │ │ │ ├── UITextDragURLPreviews.h │ │ │ ├── UITextDragging.h │ │ │ ├── UITextDropProposal.h │ │ │ ├── UITextDropping.h │ │ │ ├── UITextField.h │ │ │ ├── UITextInput.h │ │ │ ├── UITextInputTraits.h │ │ │ ├── UITextItemInteraction.h │ │ │ ├── UITextPasteConfigurationSupporting.h │ │ │ ├── UITextPasteDelegate.h │ │ │ ├── UITextView.h │ │ │ ├── UITimingCurveProvider.h │ │ │ ├── UITimingParameters.h │ │ │ ├── UIToolbar.h │ │ │ ├── UITouch.h │ │ │ ├── UITraitCollection.h │ │ │ ├── UIUserActivity.h │ │ │ ├── UIUserNotificationSettings.h │ │ │ ├── UIVibrancyEffect.h │ │ │ ├── UIVideoEditorController.h │ │ │ ├── UIView.h │ │ │ ├── UIViewAnimating.h │ │ │ ├── UIViewController.h │ │ │ ├── UIViewControllerTransitionCoordinator.h │ │ │ ├── UIViewControllerTransitioning.h │ │ │ ├── UIViewPropertyAnimator.h │ │ │ ├── UIVisualEffect.h │ │ │ ├── UIVisualEffectView.h │ │ │ ├── UIWebView.h │ │ │ └── UIWindow.h │ │ ├── Modules/ │ │ │ └── module.modulemap │ │ └── UIKit.tbd │ ├── Marzipants/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── Marzipants-tvOS/ │ │ └── Info.plist │ ├── Marzipants-tvOSTests/ │ │ └── Info.plist │ ├── Marzipants.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── Marzipants.xcscheme │ │ ├── MarzipantsMac.xcscheme │ │ └── MarzipantsMacSwift.xcscheme │ ├── MarzipantsMac/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MarzipantsMac.entitlements │ │ └── main.m │ ├── MarzipantsMacSwift/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MarzipantsMacSwift-Bridging-Header.h │ │ └── MarzipantsMacSwift.entitlements │ └── MarzipantsTests/ │ ├── Info.plist │ └── MarzipantsTests.m └── package.json