diff --git a/README.md b/README.md
index e78ba9ca..6d3552a7 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ This repository contains the following frameworks:
```sh
cd TIModuleName
-nef plaground --name TIModuleName --cocoapods --custom-podfile PlaygroundPodfile
+nef playground --name TIModuleName --cocoapods --custom-podfile PlaygroundPodfile
```
See example of `PlaygroundPodfile` in `TIFoundationUtils`
@@ -72,7 +72,7 @@ ${SRCROOT}/TIModuleName/TIModuleName.app"
```ruby
sources = 'your_sources_expression'
- if File.basename(Dir.getwd) == s.name # installing using :path =>
+ if ENV["DEVELOPMENT_INSTALL"] # installing using :path =>
s.source_files = sources
s.exclude_files = s.name + '.app'
else
diff --git a/TIUIElements/PlaygroundPodfile b/TIUIElements/PlaygroundPodfile
new file mode 100644
index 00000000..95938d81
--- /dev/null
+++ b/TIUIElements/PlaygroundPodfile
@@ -0,0 +1,10 @@
+ENV["DEVELOPMENT_INSTALL"] = "true"
+
+target 'TIUIElements' do
+ platform :ios, 11.0
+ use_frameworks!
+
+ pod 'TIUIElements', :path => '../../../../TIUIElements/TIUIElements.podspec'
+ pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
+ pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
+end
diff --git a/TIUIElements/Sources/Views/Skeletons/Helpers/UIView+Skeletons.swift b/TIUIElements/Sources/Views/Skeletons/Helpers/UIView+Skeletons.swift
index aae9f042..5eb42a77 100644
--- a/TIUIElements/Sources/Views/Skeletons/Helpers/UIView+Skeletons.swift
+++ b/TIUIElements/Sources/Views/Skeletons/Helpers/UIView+Skeletons.swift
@@ -25,7 +25,7 @@ import UIKit
extension UIView {
public var skeletonableViews: [UIView] {
if let skeletonableView = self as? Skeletonable {
- return skeletonableView.viewsToSkeletone
+ return skeletonableView.viewsToSkeletone
}
return subviews
diff --git a/TIUIElements/Sources/Views/StatefulButton/StatefulButton.swift b/TIUIElements/Sources/Views/StatefulButton/StatefulButton.swift
index 2946332c..307d7df7 100644
--- a/TIUIElements/Sources/Views/StatefulButton/StatefulButton.swift
+++ b/TIUIElements/Sources/Views/StatefulButton/StatefulButton.swift
@@ -217,7 +217,6 @@ open class StatefulButton: UIButton {
} else {
updateAppearance(to: .disabled)
}
-
}
private func updateAppearance(to state: State) {
diff --git a/TIUIElements/TIUIElements.app/Contents/Info.plist b/TIUIElements/TIUIElements.app/Contents/Info.plist
new file mode 100644
index 00000000..831ea97a
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/Info.plist
@@ -0,0 +1,28 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ launcher
+ CFBundleIconFile
+ AppIcon
+ CFBundleIconName
+ AppIcon
+ CFBundleIdentifier
+ com.fortysevendeg.nef
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleSupportedPlatforms
+
+ MacOSX
+
+ LSApplicationCategoryType
+ public.app-category.developer-tools
+ LSMinimumSystemVersion
+ 10.14
+ NSHumanReadableCopyright
+ Copyright © 2019 The nef Authors. All rights reserved.
+
+
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/.gitignore b/TIUIElements/TIUIElements.app/Contents/MacOS/.gitignore
new file mode 100644
index 00000000..18bd1f3b
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/.gitignore
@@ -0,0 +1,26 @@
+## gitignore nef files
+**/build/
+**/nef/
+LICENSE
+
+## User data
+**/xcuserdata/
+podfile.lock
+**.DS_Store
+
+## Obj-C/Swift specific
+*.hmap
+*.ipa
+*.dSYM.zip
+*.dSYM
+
+## CocoaPods
+**Pods**
+
+## Carthage
+**Carthage**
+
+## SPM
+.build
+.swiftpm
+swiftpm
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/Podfile b/TIUIElements/TIUIElements.app/Contents/MacOS/Podfile
new file mode 100644
index 00000000..ab33d1bc
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/Podfile
@@ -0,0 +1,10 @@
+ENV["DEVELOPMENT_INSTALL"] = "true"
+
+target 'TIUIElements' do
+ platform :ios, 11.0
+ use_frameworks!
+
+ pod 'TIUIElements', :path => '../../../../TIUIElements/TIUIElements.podspec'
+ pod 'TISwiftUtils', :path => '../../../../TISwiftUtils/TISwiftUtils.podspec'
+ pod 'TIUIKitCore', :path => '../../../../TIUIKitCore/TIUIKitCore.podspec'
+end
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/Pages/Skeletons.xcplaygroundpage/Contents.swift b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/Pages/Skeletons.xcplaygroundpage/Contents.swift
index 967302f9..80a02294 100644
--- a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/Pages/Skeletons.xcplaygroundpage/Contents.swift
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/Pages/Skeletons.xcplaygroundpage/Contents.swift
@@ -1,2 +1,172 @@
-import Foundation
+/*:
+ # Skeletons API
+
+ При импорте _TIUIElements_ вы можете использовать API для показа скелетонов.
+
+ ## Базовая настройка
+
+ Чтобы `UIViewController` или `UIView` мог показать скелетоны необходимо, чтобы он соответствовал протоколу `SkeletonsPresenter`.
+*/
import TIUIElements
+import UIKit
+
+class DummyVC: UIViewController, SkeletonsPresenter {
+}
+
+//: Чтобы показать или скрыть скелетоны необходимо использовать методы `showSkeletons()` и `hideSkeletons()`
+class CanShowAndHideSkeletons: UIViewController, SkeletonsPresenter {
+ lazy var button: UIButton = {
+ let button = UIButton(frame: CGRect(x: .zero, y: .zero,
+ width: view.frame.width, height: view.frame.height))
+
+ button.setTitle("Hello from SkeletonableViewController", for: .normal)
+ button.setTitleColor(.black, for: .normal)
+ button.titleLabel?.font = .systemFont(ofSize: 30)
+ button.addTarget(self, action: #selector(toggleSkeletons), for: .touchUpInside)
+ return button
+ }()
+
+ override func viewDidLoad() {
+ super.viewDidLoad()
+
+ view.backgroundColor = .red
+ view.frame = CGRect(x: 0, y: 0, width: 250, height: 250)
+ view.addSubview(button)
+ }
+
+ @objc func toggleSkeletons() {
+ showSkeletons()
+
+ DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(3)) { [weak self] in
+ self?.hideSkeletons()
+ }
+ }
+}
+
+//: Можно так же указать, какие вью будут конвертироваться в скелетоны
+class CustomSkeletonableTableView: UITableView, SkeletonsPresenter {
+ var viewsToSkeletone: [UIView] {
+ visibleCells
+ }
+}
+/*:
+ ## Конфигурация внешнего вида
+
+ Для конфигурации скелетонов существует клас `SkeletonsConfiguration` который определяется внутри объекта реализующего протокол `SkeletonsPresenter`.
+*/
+class CustomConfigurableSkeletonableView: UIView, SkeletonsPresenter {
+ var skeletonsConfiguration: SkeletonsConfiguration {
+ .init(skeletonsBackgroundColor: .blue)
+ }
+}
+
+/*:
+ Возможные опции для настройки:
+
+ - анимация
+ - цвет
+ - форма
+ - отступы
+
+ ### Анимация
+
+ `SkeletonsConfiguration` для настройки анимации принимает тип `(SkeletonsLayer) -> CAAnimationGroup`. Это означает, что при необходимости вы можете создать любую необходимую анимацию. Анимация будет применена к каждому скелетону.
+
+ Однако для удобства существует уже определенный класс `SkeletonsAnimationBuilder` со статическим методом `createDirectionalGradientAnimation(_:)` для создания анимаций в одну из сторон:
+
+ ```swift
+ public enum SkeletonsAnimationDirection {
+ case leftToRight
+ case rightToLeft
+ case topToBottom
+ case bottomToTop
+ case topLeftToBottomRight
+ case topRightToBottomLeft
+ case bottomLeftToTopRight
+ case bottomRightToTopLeft
+ }
+ ```
+*/
+let confWithLeftToRightAnim = SkeletonsConfiguration(animation: { _ in
+ let animConfig = DirectionalSkeletonsAnimationConfiguration(direction: .leftToRight, duration: 1.5)
+ return SkeletonsAnimationBuilder.createDirectionalGradientAnimation(animConfig)
+})
+
+let confWithTopToBottomAnim = SkeletonsConfiguration(animation: { _ in
+ let animConfig = DirectionalSkeletonsAnimationConfiguration(direction: .topToBottom, duration: 1.5)
+ return SkeletonsAnimationBuilder.createDirectionalGradientAnimation(animConfig)
+})
+
+/*:
+ ### Цвет
+
+ За настройку цвета отвечает параметр `skeletonsBackgroundColor`: основной цвет скелетонов, им будт заливаться фон и выделяться _border_
+*/
+let confWithRedBackgroundColor = SkeletonsConfiguration(skeletonsBackgroundColor: .red)
+
+/*:
+ ### Форма
+
+ Форму можно настраивать отдельно для `UILabel`, `UITextView`, `UIImageView` и остальных вью. Например, картинки можно сделать круглыми, а лейблы прямоугольные с закругленными краями:
+*/
+var confWithShape: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(shape: .rectangle(cornerRadius: 10))
+ let imageConf = BaseViewSkeletonsConfiguration(shape: .circle)
+
+ return .init(labelConfiguration: labelConf,
+ imageViewConfiguration: imageConf)
+}
+
+/*:
+ Для `UILabel` и `UITextView` есть возможность настроить высоту каждой строчки, расстояние между ними и их количество.
+*/
+
+var confWithLabelSettings: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(numberOfLines: 3,
+ lineHeight: { font in
+ if let font = font {
+ return font.pointSize
+ }
+ return 10
+
+ }, lineSpacing: { font in
+ if let font = font {
+ return font.xHeight
+ }
+ return 5
+ })
+ return .init(labelConfiguration: labelConf)
+}
+
+/*:
+ ### Отступы
+
+ Отступы можно настроить отдельно для `UILabel`, `UITextView`, `UIImageView` и остальных вью. Например, для предыдущего примера можно добавить горизонтальный _padding_ для лейбла:
+*/
+var confWithPadding: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(padding: .horizontal(left: 15), shape: .rectangle(cornerRadius: 10))
+ let imageConf = BaseViewSkeletonsConfiguration(shape: .circle)
+
+ return .init(labelConfiguration: labelConf,
+ imageViewConfiguration: imageConf)
+}
+
+/*:
+ ## Что если нужно больше?
+
+ Если стандартной настройки не хватает, то в конфигуратор можно передать объект, соответствующий протоколу `SkeletonsConfigurationDelegate` через который можно настроить слой скелетона для каждой вью отдельно
+
+ ```swift
+ public protocol SkeletonsConfigurationDelegate: AnyObject {
+ func layerDidConfigured(forViewType type: SkeletonLayer.ViewType, layer: SkeletonLayer)
+ }
+ ```
+*/
+class SkeletonsConfDelegate: SkeletonsConfigurationDelegate {
+ func layerDidConfigured(forViewType type: SkeletonLayer.ViewType, layer: SkeletonLayer) {
+ // Do something...
+ }
+}
+
+let delegate = SkeletonsConfDelegate()
+let confWithDelegate = SkeletonsConfiguration(configurationDelegate: delegate)
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/contents.xcplayground b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/contents.xcplayground
new file mode 100644
index 00000000..00daa653
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.playground/contents.xcplayground
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.pbxproj b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.pbxproj
new file mode 100644
index 00000000..52cfb0fd
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.pbxproj
@@ -0,0 +1,395 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 50;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ B295B0E33533FFC3D833A6CB /* Pods_TIUIElements.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E0E28C6F64363C77CAE4662 /* Pods_TIUIElements.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+ 2E10916FC4CAF67D840FC3D2 /* Pods-TIUIElements.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Target Support Files/Pods-TIUIElements/Pods-TIUIElements.release.xcconfig"; sourceTree = ""; };
+ 8BACBE8322576CAD00266845 /* TIUIElements.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TIUIElements.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8BACBE8622576CAD00266845 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ 8E0E28C6F64363C77CAE4662 /* Pods_TIUIElements.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TIUIElements.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ CB08C5B0C7051DCB015D3D9F /* Pods-TIUIElements.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TIUIElements.debug.xcconfig"; path = "Target Support Files/Pods-TIUIElements/Pods-TIUIElements.debug.xcconfig"; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 8BACBE8022576CAD00266845 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ B295B0E33533FFC3D833A6CB /* Pods_TIUIElements.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 6FA8D567F06C39C360B32325 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ 2E10916FC4CAF67D840FC3D2 /* Pods-TIUIElements.release.xcconfig */,
+ CB08C5B0C7051DCB015D3D9F /* Pods-TIUIElements.debug.xcconfig */,
+ );
+ path = Pods;
+ sourceTree = "";
+ };
+ 7672C2F734E0BBEC76B58962 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ 8E0E28C6F64363C77CAE4662 /* Pods_TIUIElements.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 8B39A26221D40F8700DE2643 = {
+ isa = PBXGroup;
+ children = (
+ 8BACBE8422576CAD00266845 /* TIUIElements */,
+ 8B39A26C21D40F8700DE2643 /* Products */,
+ 6FA8D567F06C39C360B32325 /* Pods */,
+ 7672C2F734E0BBEC76B58962 /* Frameworks */,
+ );
+ sourceTree = "";
+ };
+ 8B39A26C21D40F8700DE2643 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 8BACBE8322576CAD00266845 /* TIUIElements.framework */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 8BACBE8422576CAD00266845 /* TIUIElements */ = {
+ isa = PBXGroup;
+ children = (
+ 8BACBE8622576CAD00266845 /* Info.plist */,
+ );
+ path = TIUIElements;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+ 8BACBE7E22576CAD00266845 /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+ 8BACBE8222576CAD00266845 /* TIUIElements */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 8BACBE8A22576CAD00266845 /* Build configuration list for PBXNativeTarget "TIUIElements" */;
+ buildPhases = (
+ 9D2C80D787CBCD9B1EA728B0 /* [CP] Check Pods Manifest.lock */,
+ 8BACBE7E22576CAD00266845 /* Headers */,
+ 8BACBE7F22576CAD00266845 /* Sources */,
+ 8BACBE8022576CAD00266845 /* Frameworks */,
+ 8BACBE8122576CAD00266845 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = TIUIElements;
+ productName = TIUIElements2;
+ productReference = 8BACBE8322576CAD00266845 /* TIUIElements.framework */;
+ productType = "com.apple.product-type.framework";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 8B39A26321D40F8700DE2643 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastSwiftUpdateCheck = 1010;
+ LastUpgradeCheck = 1200;
+ ORGANIZATIONNAME = "47 Degrees";
+ TargetAttributes = {
+ 8BACBE8222576CAD00266845 = {
+ CreatedOnToolsVersion = 10.1;
+ };
+ };
+ };
+ buildConfigurationList = 8B39A26621D40F8700DE2643 /* Build configuration list for PBXProject "TIUIElements" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 8B39A26221D40F8700DE2643;
+ productRefGroup = 8B39A26C21D40F8700DE2643 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 8BACBE8222576CAD00266845 /* TIUIElements */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 8BACBE8122576CAD00266845 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 9D2C80D787CBCD9B1EA728B0 /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-TIUIElements-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 8BACBE7F22576CAD00266845 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin XCBuildConfiguration section */
+ 8B39A27721D40F8800DE2643 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "-";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_TESTING_SEARCH_PATHS = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
+ MTL_FAST_MATH = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ };
+ name = Debug;
+ };
+ 8B39A27821D40F8800DE2643 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "-";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTING_SEARCH_PATHS = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ };
+ name = Release;
+ };
+ 8BACBE8822576CAD00266845 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = CB08C5B0C7051DCB015D3D9F /* Pods-TIUIElements.debug.xcconfig */;
+ buildSettings = {
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_TIUIElements_VERSION = 1;
+ DEFINES_MODULE = YES;
+ DEVELOPMENT_TEAM = "";
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
+ INFOPLIST_FILE = "$(SRCROOT)/TIUIElements/Info.plist";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ "@loader_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.47deg.ios.TIUIElements;
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SKIP_INSTALL = YES;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
+ };
+ name = Debug;
+ };
+ 8BACBE8922576CAD00266845 /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 2E10916FC4CAF67D840FC3D2 /* Pods-TIUIElements.release.xcconfig */;
+ buildSettings = {
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Manual;
+ CURRENT_TIUIElements_VERSION = 1;
+ DEFINES_MODULE = YES;
+ DEVELOPMENT_TEAM = "";
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
+ INFOPLIST_FILE = "$(SRCROOT)/TIUIElements/Info.plist";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.1;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ "@loader_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.47deg.ios.TIUIElements;
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SKIP_INSTALL = YES;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 8B39A26621D40F8700DE2643 /* Build configuration list for PBXProject "TIUIElements" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 8B39A27721D40F8800DE2643 /* Debug */,
+ 8B39A27821D40F8800DE2643 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 8BACBE8A22576CAD00266845 /* Build configuration list for PBXNativeTarget "TIUIElements" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 8BACBE8822576CAD00266845 /* Debug */,
+ 8BACBE8922576CAD00266845 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 8B39A26321D40F8700DE2643 /* Project object */;
+}
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..4fdc4a67
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/xcshareddata/xcschemes/TIUIElements.xcscheme b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/xcshareddata/xcschemes/TIUIElements.xcscheme
new file mode 100644
index 00000000..2ac02e93
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcodeproj/xcshareddata/xcschemes/TIUIElements.xcscheme
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcworkspace/contents.xcworkspacedata b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 00000000..313f1fa5
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements/Info.plist b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements/Info.plist
new file mode 100644
index 00000000..98d14f60
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements/Info.plist
@@ -0,0 +1,24 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ $(PRODUCT_NAME)
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1.0
+ NSHumanReadableCopyright
+ Copyright © 2019. The nef authors.
+
+
diff --git a/TIUIElements/TIUIElements.app/Contents/MacOS/launcher b/TIUIElements/TIUIElements.app/Contents/MacOS/launcher
new file mode 100755
index 00000000..dedc792f
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/Contents/MacOS/launcher
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+workspace="TIUIElements.xcworkspace"
+workspacePath=$(echo "$0" | rev | cut -f2- -d '/' | rev)
+
+open "`pwd`/$workspacePath/$workspace"
diff --git a/TIUIElements/TIUIElements.app/Contents/Resources/AppIcon.icns b/TIUIElements/TIUIElements.app/Contents/Resources/AppIcon.icns
new file mode 100644
index 00000000..32814f1c
Binary files /dev/null and b/TIUIElements/TIUIElements.app/Contents/Resources/AppIcon.icns differ
diff --git a/TIUIElements/TIUIElements.app/Contents/Resources/Assets.car b/TIUIElements/TIUIElements.app/Contents/Resources/Assets.car
new file mode 100644
index 00000000..79d9ea89
Binary files /dev/null and b/TIUIElements/TIUIElements.app/Contents/Resources/Assets.car differ
diff --git a/TIUIElements/TIUIElements.app/nef/log/TIUIElements.log b/TIUIElements/TIUIElements.app/nef/log/TIUIElements.log
new file mode 100644
index 00000000..8cc04f01
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/nef/log/TIUIElements.log
@@ -0,0 +1,329 @@
+Command line invocation:
+ /Applications/Xcode-14.1.0.app/Contents/Developer/usr/bin/xcodebuild -workspace /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/TIUIElements.xcworkspace -sdk iphoneos -scheme TIUIElements -derivedDataPath /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData -configuration Debug
+
+User defaults from command line:
+ IDEDerivedDataPathOverride = /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData
+ IDEPackageSupportUseBuiltinSCM = YES
+
+Build settings from command line:
+ SDKROOT = iphoneos16.1
+
+Prepare packages
+
+Computing target dependency graph and provisioning inputs
+
+Create build description
+Build description signature: db7507c327d0c1f4a443baa913d927d9
+Build description path: /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/XCBuildData/db7507c327d0c1f4a443baa913d927d9-desc.xcbuild
+
+note: Building targets in dependency order
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products
+
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex
+
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/EagerLinkingTBDs
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/EagerLinkingTBDs
+
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TIUIKitCore
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TIUIKitCore
+
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TIUIElements
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TIUIElements
+
+CreateBuildDirectory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS
+ builtin-create-build-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils
+
+/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Pods.xcodeproj: warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.1.99. (in target 'TISwiftUtils' from project 'Pods')
+MkDir /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /bin/mkdir -p /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework
+
+MkDir /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /bin/mkdir -p /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-target-headers.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-target-headers.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module.modulemap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module.modulemap
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/module.modulemap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/module.modulemap
+
+Copy /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/module.modulemap /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/module.modulemap (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/module.modulemap /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules
+
+CpHeader /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers/TISwiftUtils-umbrella.h /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-umbrella.h (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-umbrella.h /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers
+
+ProcessInfoPlistFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Info.plist /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-Info.plist (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-infoPlistUtility /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Info.plist
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/TISwiftUtils_vers.c (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/TISwiftUtils_vers.c
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.SwiftFileList (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.SwiftFileList
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.LinkFileList (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.LinkFileList
+
+WriteAuxiliaryFile /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-OutputFileMap.json (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ write-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-OutputFileMap.json
+
+SwiftDriver TISwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-SwiftDriver -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TISwiftUtils -Onone -enforce-exclusivity\=checked @/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.SwiftFileList -DDEBUG -D COCOAPODS -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -target arm64-apple-ios9.0 -enable-bare-slash-regex -g -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -c -j8 -enable-batch-mode -incremental -output-file-map /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -emit-objc-header -emit-objc-header-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -working-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -experimental-emit-module-separately
+
+SwiftEmitModule normal arm64 Emitting\ module\ for\ TISwiftUtils (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -disable-clang-spi -target-sdk-version 16.1 -emit-module-doc-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftdoc -emit-module-source-info-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftsourceinfo -emit-objc-header-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-master-emit-module.dia -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-master-emit-module.d -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule -emit-abi-descriptor-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.abi.json
+
+SwiftCompile normal arm64 Compiling\ Updatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Updatable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/BackingStore.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/KeyPathEquatable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Selectable.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Typealias.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Optional+Extensions.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Array+SafeSubscript.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftCompile normal arm64 Compiling\ Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftTaskExecution -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+CompileSwift normal arm64 /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift -primary-file /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift -emit-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.d -emit-reference-dependencies-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.swiftdeps -serialize-diagnostics-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -enable-bare-slash-regex -empty-abi-descriptor -Xcc -working-directory -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -resource-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -module-name TISwiftUtils -frontend-parseable-output -disable-clang-spi -target-sdk-version 16.1 -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/Substring+Extensions.o -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -index-system-modules
+
+SwiftDriverJobDiscovery normal arm64 Emitting module for TISwiftUtils (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriver\ Compilation\ Requirements TISwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-Swift-Compilation-Requirements -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TISwiftUtils -Onone -enforce-exclusivity\=checked @/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.SwiftFileList -DDEBUG -D COCOAPODS -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -target arm64-apple-ios9.0 -enable-bare-slash-regex -g -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -c -j8 -enable-batch-mode -incremental -output-file-map /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -emit-objc-header -emit-objc-header-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -working-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -experimental-emit-module-separately
+
+SwiftDriverJobDiscovery normal arm64 Compiling Substring+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling Selectable.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling Updatable.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling Typealias.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling Optional+Extensions.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling Array+SafeSubscript.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriverJobDiscovery normal arm64 Compiling BackingStore.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftMergeGeneratedHeaders /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers/TISwiftUtils-Swift.h /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-swiftHeaderTool -arch arm64 /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Headers/TISwiftUtils-Swift.h
+
+Copy /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.swiftmodule /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.swiftmodule
+
+Copy /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.abi.json /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.abi.json (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.abi.json /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.abi.json
+
+Copy /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.swiftdoc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftdoc (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftdoc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/arm64-apple-ios.swiftdoc
+
+Copy /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftsourceinfo (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftsourceinfo /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/Modules/TISwiftUtils.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
+
+SwiftDriverJobDiscovery normal arm64 Compiling KeyPathEquatable.swift (in target 'TISwiftUtils' from project 'Pods')
+
+SwiftDriver\ Compilation TISwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-Swift-Compilation -- /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name TISwiftUtils -Onone -enforce-exclusivity\=checked @/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.SwiftFileList -DDEBUG -D COCOAPODS -sdk /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -target arm64-apple-ios9.0 -enable-bare-slash-regex -g -module-cache-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -F /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -c -j8 -enable-batch-mode -incremental -output-file-map /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -emit-objc-header -emit-objc-header-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/unextended-module-overlay.yaml -working-directory /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods -experimental-emit-module-separately
+
+CompileC /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_vers.o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/TISwiftUtils_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -target arm64-apple-ios9.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fmodules -gmodules -fmodules-cache-path\=/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -fmodule-name\=TISwiftUtils -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -isysroot /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -fstrict-aliasing -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -iquote /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -ivfsoverlay /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -iquote /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -F/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -MMD -MT dependencies -MF /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_vers.d --serialize-diagnostics /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_vers.dia -c /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/TISwiftUtils_vers.c -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_vers.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_vers.o
+
+CompileC /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-dummy.o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios9.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path\=/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -fmodule-name\=TISwiftUtils -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Index.noindex/DataStore -iquote /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-generated-files.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-own-target-headers.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-all-non-framework-target-headers.hmap -ivfsoverlay /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/all-product-headers.yaml -iquote /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/TISwiftUtils-project-headers.hmap -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/include -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources-normal/arm64 -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources/arm64 -I/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/DerivedSources -F/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -include /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-prefix.pch -MMD -MT dependencies -MF /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-dummy.d --serialize-diagnostics /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-dummy.dia -c /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods/Target\ Support\ Files/TISwiftUtils/TISwiftUtils-dummy.m -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-dummy.o -index-unit-output-path /Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils-dummy.o
+
+Ld /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/TISwiftUtils normal (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios9.0 -dynamiclib -isysroot /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk -L/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/EagerLinkingTBDs -L/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -L/Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk/usr/lib/swift -F/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/EagerLinkingTBDs -F/Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils -filelist /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.LinkFileList -install_name @rpath/TISwiftUtils.framework/TISwiftUtils -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils.swiftmodule -framework Foundation -compatibility_version 1 -current_version 1 -Xlinker -dependency_info -Xlinker /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_dependency_info.dat -o /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/TISwiftUtils
+
+ExtractAppIntentsMetadata (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /Applications/Xcode-14.1.0.app/Contents/Developer/usr/bin/appintentsmetadataprocessor --output /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework --toolchain-dir /Applications/Xcode-14.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name TISwiftUtils --source-files /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Array/Array+SafeSubscript.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/PropertyWrappers/BackingStore.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/KeyPathEquatable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Optional/Optional+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Selectable.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Extensions/Substring/Substring+Extensions.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Helpers/Typealias.swift /Users/castlelecs/dev/TI/LeadKit/TISwiftUtils/Sources/Protocols/Updatable.swift --sdk-root /Applications/Xcode-14.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk --target-triple arm64-apple-ios9.0 --binary-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework/TISwiftUtils --dependency-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/TISwiftUtils_dependency_info.dat --stringsdata-file /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Intermediates.noindex/Pods.build/Debug-iphoneos/TISwiftUtils.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata
+note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'TISwiftUtils' from project 'Pods')
+
+RegisterExecutionPolicyException /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ builtin-RegisterExecutionPolicyException /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework
+
+Touch /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework (in target 'TISwiftUtils' from project 'Pods')
+ cd /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/Contents/MacOS/Pods
+ /usr/bin/touch -c /Users/castlelecs/dev/TI/LeadKit/TIUIElements/TIUIElements.app/nef/derivedData/Build/Products/Debug-iphoneos/TISwiftUtils/TISwiftUtils.framework
+
+** BUILD SUCCEEDED **
+
+
+--- xcodebuild: WARNING: Using the first of multiple matching destinations:
+{ platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
+{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:00006000-001A45A90A38801E }
+{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:00006000-001A45A90A38801E }
+{ platform:macOS, arch:x86_64, variant:Mac Catalyst, id:00006000-001A45A90A38801E }
+{ platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
+{ platform:macOS, variant:Mac Catalyst, name:Any Mac }
+{ platform:iOS Simulator, id:145EC07C-F296-4278-A888-B7CF37FA1EC8, OS:13.7, name:iPad (7th generation) }
+{ platform:iOS Simulator, id:08E4B84C-C097-4C7E-BC60-8ECCD40CB177, OS:14.5, name:iPad (8th generation) }
+{ platform:iOS Simulator, id:E9148A48-FC50-4762-8F53-97BB0F22467B, OS:16.1, name:iPad (9th generation) }
+{ platform:iOS Simulator, id:CFBD08A7-2C48-40E7-9B2A-4884B21C3762, OS:16.1, name:iPad (10th generation) }
+{ platform:iOS Simulator, id:CC320C42-F278-48B6-BC34-90560000A81C, OS:13.7, name:iPad Air (3rd generation) }
+{ platform:iOS Simulator, id:A5B0C0F2-133F-4756-9540-F8A17A558FD2, OS:14.5, name:iPad Air (4th generation) }
+{ platform:iOS Simulator, id:B77DEE3C-0C18-4019-9FA5-68A563A14416, OS:16.1, name:iPad Air (4th generation) }
+{ platform:iOS Simulator, id:140A73D3-ACE6-4BB6-B55A-5EBCEA16E1FB, OS:16.1, name:iPad Air (5th generation) }
+{ platform:iOS Simulator, id:14ABDEC5-BBCB-458D-ADDD-E9ECF308C2F3, OS:13.7, name:iPad Pro (9.7-inch) }
+{ platform:iOS Simulator, id:2DB7EDA2-B9D1-4533-AF6F-1BFC48AEDD86, OS:14.5, name:iPad Pro (9.7-inch) }
+{ platform:iOS Simulator, id:B77939A7-1649-4017-8BD5-5B9ED7C6CCC2, OS:16.1, name:iPad Pro (9.7-inch) }
+{ platform:iOS Simulator, id:083AE2B3-297C-4650-99A2-0D2812923363, OS:13.7, name:iPad Pro (11-inch) (2nd generation) }
+{ platform:iOS Simulator, id:3AA553BC-4A9C-467E-BF2E-9E1CC83326E0, OS:14.5, name:iPad Pro (11-inch) (3rd generation) }
+{ platform:iOS Simulator, id:18993EE0-9411-4BA1-9D4A-FE5B6DF99426, OS:16.1, name:iPad Pro (11-inch) (3rd generation) }
+{ platform:iOS Simulator, id:AF3BF129-1A23-4687-B018-9C45C21C7754, OS:16.1, name:iPad Pro (11-inch) (4th generation) }
+{ platform:iOS Simulator, id:AA747F19-1B64-4568-8D94-A490B8550158, OS:13.7, name:iPad Pro (12.9-inch) (4th generation) }
+{ platform:iOS Simulator, id:A3AD7D85-5BEF-4723-945F-E48D50B25893, OS:14.5, name:iPad Pro (12.9-inch) (5th generation) }
+{ platform:iOS Simulator, id:1332B60A-D40D-4C47-A21C-AB54D11ECE64, OS:16.1, name:iPad Pro (12.9-inch) (5th generation) }
+{ platform:iOS Simulator, id:242FD6AB-EC1E-4F85-9E49-7CB1C73EE8C4, OS:16.1, name:iPad Pro (12.9-inch) (6th generation) }
+{ platform:iOS Simulator, id:3F3632E6-992F-4263-A6DA-469E975E66C2, OS:16.1, name:iPad mini (6th generation) }
+{ platform:iOS Simulator, id:7B2AE54A-C6E2-4DBE-B5DA-EF1B68760651, OS:13.7, name:iPhone 8 }
+{ platform:iOS Simulator, id:3D9F33B1-1B48-4DDD-A94C-47877689437D, OS:14.5, name:iPhone 8 }
+{ platform:iOS Simulator, id:4B8816C2-EE2E-49B7-BFC2-D481F695912C, OS:16.1, name:iPhone 8 }
+{ platform:iOS Simulator, id:8B6C97C1-429A-47E3-A721-A9C848B6E200, OS:13.7, name:iPhone 8 Plus }
+{ platform:iOS Simulator, id:9EC3FFEE-5F13-4D8E-8E87-963E68B7D65E, OS:14.5, name:iPhone 8 Plus }
+{ platform:iOS Simulator, id:2C1F63A2-6046-4C04-8956-9F2DA6DFE870, OS:16.1, name:iPhone 8 Plus }
+{ platform:iOS Simulator, id:08D955D1-819E-4645-805A-7712D6CC87F9, OS:13.7, name:iPhone 11 }
+{ platform:iOS Simulator, id:20452FBF-A0EB-4850-A2C7-6644A468602C, OS:14.5, name:iPhone 11 }
+{ platform:iOS Simulator, id:2AD77A31-4D2F-4708-B9EA-B4D33A82B7A1, OS:16.1, name:iPhone 11 }
+{ platform:iOS Simulator, id:52C8F03F-609B-4AFA-9893-1ABD8828B358, OS:13.7, name:iPhone 11 Pro }
+{ platform:iOS Simulator, id:DB2D56AE-A54B-4C7C-86DC-6BF4757374D4, OS:14.5, name:iPhone 11 Pro }
+{ platform:iOS Simulator, id:24F1541E-02D8-409B-9D89-03A64999625E, OS:16.1, name:iPhone 11 Pro }
+{ platform:iOS Simulator, id:E337433B-2EF8-4868-A358-A6EAF04761DB, OS:13.7, name:iPhone 11 Pro Max }
+{ platform:iOS Simulator, id:A5F6097F-B4FC-4029-A8EE-C360FEF94FAE, OS:14.5, name:iPhone 11 Pro Max }
+{ platform:iOS Simulator, id:1F6D5536-6ADC-49F7-9D4F-76C762E3899F, OS:16.1, name:iPhone 11 Pro Max }
+{ platform:iOS Simulator, id:F1FCA9D8-B8F2-493A-8B37-7ACEE8358660, OS:14.5, name:iPhone 12 }
+{ platform:iOS Simulator, id:0A9A1EE0-7176-43A7-8D7C-2F1C653041A4, OS:16.1, name:iPhone 12 }
+{ platform:iOS Simulator, id:656F7B69-29D4-46BB-B742-B70F2BF8998D, OS:14.5, name:iPhone 12 Pro }
+{ platform:iOS Simulator, id:3DD390FA-2E7A-47AB-9ABD-803E212314E5, OS:16.1, name:iPhone 12 Pro }
+{ platform:iOS Simulator, id:1318900B-1128-4C72-8C2D-CBD67DAC54EC, OS:14.5, name:iPhone 12 Pro Max }
+{ platform:iOS Simulator, id:F04B0B67-E895-4597-8570-CE1BE6034B44, OS:16.1, name:iPhone 12 Pro Max }
+{ platform:iOS Simulator, id:E52A02A3-EE68-48FE-8571-4C946A46806D, OS:14.5, name:iPhone 12 mini }
+{ platform:iOS Simulator, id:C4B396D6-8BCF-4C58-8F95-D67206FE314C, OS:16.1, name:iPhone 12 mini }
+{ platform:iOS Simulator, id:6A7E47EF-CC95-4866-B9DA-720164E690D5, OS:16.1, name:iPhone 13 }
+{ platform:iOS Simulator, id:02C796FD-9F67-4BE9-B7A2-F12A7C8ACFBC, OS:16.1, name:iPhone 13 Pro }
+{ platform:iOS Simulator, id:833AF4B2-A0C5-454B-88C6-20588AD534DB, OS:16.1, name:iPhone 13 Pro Max }
+{ platform:iOS Simulator, id:01CB8EB8-A1F0-46B7-B2BD-5BEA8B5294B8, OS:16.1, name:iPhone 13 mini }
+{ platform:iOS Simulator, id:3007A0A4-B5F2-452E-B98A-A566DFA52665, OS:16.1, name:iPhone 14 }
+{ platform:iOS Simulator, id:4013F0DC-6D53-4403-985A-82C83A109A3E, OS:16.1, name:iPhone 14 Plus }
+{ platform:iOS Simulator, id:6C570C77-DB79-46B6-AE77-443071954BFA, OS:16.1, name:iPhone 14 Pro }
+{ platform:iOS Simulator, id:8110DEFE-704E-43E4-B9CF-B233EC2B7C2C, OS:16.1, name:iPhone 14 Pro Max }
+{ platform:iOS Simulator, id:87682CB9-576A-4DCD-B1EF-A4F9DC47D529, OS:13.7, name:iPhone SE (1st gen) 13.7 }
+{ platform:iOS Simulator, id:0D11912F-CF83-408A-A093-8BFC39FF412D, OS:14.5, name:iPhone SE (1st generation) }
+{ platform:iOS Simulator, id:B7340A40-ADF6-4245-90B2-974A5D1295E1, OS:14.5, name:iPhone SE (1st generation) }
+{ platform:iOS Simulator, id:3C5AC83F-8CBA-4376-A55C-2546166E712D, OS:13.7, name:iPhone SE (2nd generation) }
+{ platform:iOS Simulator, id:C0B96D96-21B6-47C5-A77B-158BDDA6E487, OS:14.5, name:iPhone SE (2nd generation) }
+{ platform:iOS Simulator, id:B3E0C921-3C88-40C6-8A7B-3A7B48F7FB5A, OS:16.1, name:iPhone SE (2nd generation) }
+{ platform:iOS Simulator, id:7DEFEEE5-D973-4AE4-842C-D9DCD75E464D, OS:16.1, name:iPhone SE (3rd generation) }
+{ platform:iOS Simulator, id:D9AF4B7D-5974-4010-82CE-716CB0803302, OS:14.5, name:iPod touch (7th generation) }
diff --git a/TIUIElements/TIUIElements.app/nef/log/tiuielements-skeletons.log b/TIUIElements/TIUIElements.app/nef/log/tiuielements-skeletons.log
new file mode 100644
index 00000000..530b6e12
--- /dev/null
+++ b/TIUIElements/TIUIElements.app/nef/log/tiuielements-skeletons.log
@@ -0,0 +1,4 @@
+
+/var/folders/l0/vmsk54092zb07vg6t9h5j5bc0000gn/T/main.swift:2:8: error: no such module 'TIUIElements'
+import TIUIElements
+ ^
diff --git a/TIUIElements/TIUIElements.playground b/TIUIElements/TIUIElements.playground
new file mode 120000
index 00000000..254203c3
--- /dev/null
+++ b/TIUIElements/TIUIElements.playground
@@ -0,0 +1 @@
+TIUIElements.app/Contents/MacOS/TIUIElements.playground
\ No newline at end of file
diff --git a/docs/tiuielements/skeletons.md b/docs/tiuielements/skeletons.md
new file mode 100644
index 00000000..609f18f3
--- /dev/null
+++ b/docs/tiuielements/skeletons.md
@@ -0,0 +1,187 @@
+
+# Skeletons API
+
+ При импорте _TIUIElements_ вы можете использовать API для показа скелетонов.
+
+## Базовая настройка
+
+ Чтобы `UIViewController` или `UIView` мог показать скелетоны необходимо, чтобы он соответствовал протоколу `SkeletonsPresenter`.
+
+```swift
+import TIUIElements
+import UIKit
+
+class DummyVC: UIViewController, SkeletonsPresenter {
+}
+```
+
+Чтобы показать или скрыть скелетоны необходимо использовать методы `showSkeletons()` и `hideSkeletons()`
+
+```swift
+class CanShowAndHideSkeletons: UIViewController, SkeletonsPresenter {
+ lazy var button: UIButton = {
+ let button = UIButton(frame: CGRect(x: .zero, y: .zero,
+ width: view.frame.width, height: view.frame.height))
+
+ button.setTitle("Hello from SkeletonableViewController", for: .normal)
+ button.setTitleColor(.black, for: .normal)
+ button.titleLabel?.font = .systemFont(ofSize: 30)
+ button.addTarget(self, action: #selector(toggleSkeletons), for: .touchUpInside)
+ return button
+ }()
+
+ override func viewDidLoad() {
+ super.viewDidLoad()
+
+ view.backgroundColor = .red
+ view.frame = CGRect(x: 0, y: 0, width: 250, height: 250)
+ view.addSubview(button)
+ }
+
+ @objc func toggleSkeletons() {
+ showSkeletons()
+
+ DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(3)) { [weak self] in
+ self?.hideSkeletons()
+ }
+ }
+}
+```
+
+Можно так же указать, какие вью будут конвертироваться в скелетоны
+
+```swift
+class CustomSkeletonableTableView: UITableView, SkeletonsPresenter {
+ var viewsToSkeletone: [UIView] {
+ visibleCells
+ }
+}
+```
+
+## Конфигурация внешнего вида
+
+ Для конфигурации скелетонов существует клас `SkeletonsConfiguration` который определяется внутри объекта реализующего протокол `SkeletonsPresenter`.
+
+```swift
+class CustomConfigurableSkeletonableView: UIView, SkeletonsPresenter {
+ var skeletonsConfiguration: SkeletonsConfiguration {
+ .init(skeletonsBackgroundColor: .blue)
+ }
+}
+```
+
+ Возможные опции для настройки:
+
+ - анимация
+ - цвет
+ - форма
+ - отступы
+
+### Анимация
+
+ `SkeletonsConfiguration` для настройки анимации принимает тип `(SkeletonsLayer) -> CAAnimationGroup`. Это означает, что при необходимости вы можете создать любую необходимую анимацию. Анимация будет применена к каждому скелетону.
+
+ Однако для удобства существует уже определенный класс `SkeletonsAnimationBuilder` со статическим методом `createDirectionalGradientAnimation(_:)` для создания анимаций в одну из сторон:
+
+ ```swift
+ public enum SkeletonsAnimationDirection {
+ case leftToRight
+ case rightToLeft
+ case topToBottom
+ case bottomToTop
+ case topLeftToBottomRight
+ case topRightToBottomLeft
+ case bottomLeftToTopRight
+ case bottomRightToTopLeft
+ }
+ ```
+
+```swift
+let confWithLeftToRightAnim = SkeletonsConfiguration(animation: { _ in
+ let animConfig = DirectionalSkeletonsAnimationConfiguration(direction: .leftToRight, duration: 1.5)
+ return SkeletonsAnimationBuilder.createDirectionalGradientAnimation(animConfig)
+})
+
+let confWithTopToBottomAnim = SkeletonsConfiguration(animation: { _ in
+ let animConfig = DirectionalSkeletonsAnimationConfiguration(direction: .topToBottom, duration: 1.5)
+ return SkeletonsAnimationBuilder.createDirectionalGradientAnimation(animConfig)
+})
+```
+
+### Цвет
+
+ За настройку цвета отвечает параметр `skeletonsBackgroundColor`: основной цвет скелетонов, им будт заливаться фон и выделяться _border_
+
+```swift
+let confWithRedBackgroundColor = SkeletonsConfiguration(skeletonsBackgroundColor: .red)
+```
+
+### Форма
+
+ Форму можно настраивать отдельно для `UILabel`, `UITextView`, `UIImageView` и остальных вью. Например, картинки можно сделать круглыми, а лейблы прямоугольные с закругленными краями:
+
+```swift
+var confWithShape: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(shape: .rectangle(cornerRadius: 10))
+ let imageConf = BaseViewSkeletonsConfiguration(shape: .circle)
+
+ return .init(labelConfiguration: labelConf,
+ imageViewConfiguration: imageConf)
+}
+```
+
+ Для `UILabel` и `UITextView` есть возможность настроить высоту каждой строчки, расстояние между ними и их количество.
+
+```swift
+var confWithLabelSettings: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(numberOfLines: 3,
+ lineHeight: { font in
+ if let font = font {
+ return font.pointSize
+ }
+ return 10
+
+ }, lineSpacing: { font in
+ if let font = font {
+ return font.xHeight
+ }
+ return 5
+ })
+ return .init(labelConfiguration: labelConf)
+}
+```
+
+### Отступы
+
+ Отступы можно настроить отдельно для `UILabel`, `UITextView`, `UIImageView` и остальных вью. Например, для предыдущего примера можно добавить горизонтальный _padding_ для лейбла:
+
+```swift
+var confWithPadding: SkeletonsConfiguration {
+ let labelConf = TextSkeletonsConfiguration(padding: .horizontal(left: 15), shape: .rectangle(cornerRadius: 10))
+ let imageConf = BaseViewSkeletonsConfiguration(shape: .circle)
+
+ return .init(labelConfiguration: labelConf,
+ imageViewConfiguration: imageConf)
+}
+```
+
+## Что если нужно больше?
+
+ Если стандартной настройки не хватает, то в конфигуратор можно передать объект, соответствующий протоколу `SkeletonsConfigurationDelegate` через который можно настроить слой скелетона для каждой вью отдельно
+
+ ```swift
+ public protocol SkeletonsConfigurationDelegate: AnyObject {
+ func layerDidConfigured(forViewType type: SkeletonLayer.ViewType, layer: SkeletonLayer)
+ }
+ ```
+
+```swift
+class SkeletonsConfDelegate: SkeletonsConfigurationDelegate {
+ func layerDidConfigured(forViewType type: SkeletonLayer.ViewType, layer: SkeletonLayer) {
+ // Do something...
+ }
+}
+
+let delegate = SkeletonsConfDelegate()
+let confWithDelegate = SkeletonsConfiguration(configurationDelegate: delegate)
+```
diff --git a/project-scripts/gen_docs_from_playgrounds.sh b/project-scripts/gen_docs_from_playgrounds.sh
index 9e5c172a..b0489382 100755
--- a/project-scripts/gen_docs_from_playgrounds.sh
+++ b/project-scripts/gen_docs_from_playgrounds.sh
@@ -7,9 +7,10 @@
# SRCROOT - path to project folder.
#
-PLAYGROUNDS="${SRCROOT}/TIFoundationUtils/TIFoundationUtils.app"
+PLAYGROUNDS="${SRCROOT}/TIFoundationUtils/TIFoundationUtils.app
+${SRCROOT}/TIUIElements/TIUIElements.app"
for playground_path in ${PLAYGROUNDS}; do
- nef compile --project ${playground_path}
+ # nef compile --project ${playground_path}
nef markdown --project ${playground_path} --output ../docs
-done
\ No newline at end of file
+done