gitextract_qv0ndjc7/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── RootHelper/ │ ├── Commands.swift │ ├── Extensions.swift │ └── main.swift ├── Santander/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Other/ │ │ ├── Alert++.swift │ │ ├── BaseLayoutAnchorSupporting.swift │ │ ├── DiffableDataSourceItem.swift │ │ ├── DirectoryMonitor.swift │ │ ├── Exploit/ │ │ │ ├── grant_full_disk_access.h │ │ │ ├── grant_full_disk_access.m │ │ │ ├── helpers.h │ │ │ ├── helpers.m │ │ │ ├── vm_unaligned_copy_switch_race.c │ │ │ └── vm_unaligned_copy_switch_race.h │ │ ├── Extensions.swift │ │ ├── GoToItem.swift │ │ ├── ImageMetadata.swift │ │ ├── LoadingValueState.swift │ │ ├── Path.swift │ │ ├── PathMetadata.swift │ │ ├── PathTransitioning.swift │ │ ├── PathType.swift │ │ ├── PathsSortMethods.swift │ │ ├── Permissions.swift │ │ ├── Preferences/ │ │ │ ├── Storage.swift │ │ │ └── UserPreferences.swift │ │ ├── RootHelper.swift │ │ └── SantanderHeader.h │ ├── SceneDelegate.swift │ └── UI/ │ ├── AppInfoViewController.swift │ ├── Editors/ │ │ ├── AssetCatalog/ │ │ │ ├── AssetCatalogCell.swift │ │ │ ├── AssetCatalogDetailsView.swift │ │ │ ├── AssetCatalogGridPreviewCell.swift │ │ │ ├── AssetCatalogRenditionViewController.swift │ │ │ ├── AssetCatalogSectionHeader.swift │ │ │ ├── AssetCatalogSidebarListView.swift │ │ │ └── AssetCatalogViewController.swift │ │ ├── Audio/ │ │ │ ├── AudioPlayerToolbarView.swift │ │ │ └── AudioPlayerViewController.swift │ │ ├── BinaryExecutionViewController.swift │ │ ├── FileEditorType.swift │ │ ├── Font/ │ │ │ ├── FontInformationViewController.swift │ │ │ └── FontViewerController.swift │ │ ├── Image/ │ │ │ ├── ImageLocationEditorViewController.swift │ │ │ ├── ImageMetadataViewController.swift │ │ │ └── ImageViewerController.swift │ │ ├── Serialized/ │ │ │ ├── SerializedArrayViewController.swift │ │ │ ├── SerializedDocumentViewController.swift │ │ │ ├── SerializedItemType.swift │ │ │ └── SerializedItemViewController.swift │ │ └── TextEditor/ │ │ ├── KeyboardSearchView.swift │ │ ├── KeyboardToolsView.swift │ │ ├── TextEditorThemeSettingsViewController.swift │ │ ├── TextFileEditorViewController.swift │ │ └── Themes.swift │ ├── FilePreviewDataSource.swift │ ├── Path/ │ │ ├── DragAndDrop.swift │ │ ├── PathGroupOwnerViewController.swift │ │ ├── PathInformationTableViewController.swift │ │ ├── PathListViewController.swift │ │ ├── PathOperationViewController.swift │ │ ├── PathPermissionsViewController.swift │ │ ├── PathSidebarListViewController.swift │ │ ├── Search.swift │ │ └── ToolbarItems.swift │ ├── SettingsTableViewController.swift │ └── TypeSelectionViewController.swift ├── Santander.xcodeproj/ │ └── project.pbxproj ├── entitlements-TS.plist └── entitlements.plist