This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Pharos with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Pharos -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |             |- note: convert 'maximumZoomScaleKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'maximumZoomScaleKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | private var bouncesZoomKey: String = "bouncesZoomKey"
 34 | private var scrollsToTopKey: String = "scrollsToTopKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:33:13: warning: var 'bouncesZoomKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 31 | private var zoomScaleKey: String = "zoomScaleKey"
 32 | private var maximumZoomScaleKey: String = "maximumZoomScaleKey"
 33 | private var bouncesZoomKey: String = "bouncesZoomKey"
    |             |- warning: var 'bouncesZoomKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'bouncesZoomKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'bouncesZoomKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 | private var scrollsToTopKey: String = "scrollsToTopKey"
 35 | private var refreshControlKey: String = "refreshControlKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:34:13: warning: var 'scrollsToTopKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | private var maximumZoomScaleKey: String = "maximumZoomScaleKey"
 33 | private var bouncesZoomKey: String = "bouncesZoomKey"
 34 | private var scrollsToTopKey: String = "scrollsToTopKey"
    |             |- warning: var 'scrollsToTopKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'scrollsToTopKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'scrollsToTopKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 | private var refreshControlKey: String = "refreshControlKey"
 36 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:35:13: warning: var 'refreshControlKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 33 | private var bouncesZoomKey: String = "bouncesZoomKey"
 34 | private var scrollsToTopKey: String = "scrollsToTopKey"
 35 | private var refreshControlKey: String = "refreshControlKey"
    |             |- warning: var 'refreshControlKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'refreshControlKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'refreshControlKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |
 37 | public extension BindableCollection where Object: UIScrollView {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:37:51: error: cannot find type 'UIScrollView' in scope
 35 | private var refreshControlKey: String = "refreshControlKey"
 36 |
 37 | public extension BindableCollection where Object: UIScrollView {
    |                                                   `- error: cannot find type 'UIScrollView' in scope
 38 |
 39 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:53:30: error: cannot find type 'UIScrollViewDelegate' in scope
 51 |     }
 52 |
 53 |     var delegate: Observable<UIScrollViewDelegate?> {
    |                              `- error: cannot find type 'UIScrollViewDelegate' in scope
 54 |         bindable(of: \.delegate, key: &delegateKey)
 55 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift:131:36: error: cannot find type 'UIRefreshControl' in scope
129 |     }
130 |
131 |     var refreshControl: Observable<UIRefreshControl?> {
    |                                    `- error: cannot find type 'UIRefreshControl' in scope
132 |         bindable(of: \.refreshControl, key: &refreshControlKey)
133 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:12:13: warning: var 'valueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | import UIKit
11 |
12 | private var valueKey: String = "valueKey"
   |             |- warning: var 'valueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'valueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'valueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | private var minimumValueKey: String = "minimumValueKey"
14 | private var maximumValueKey: String = "maximumValueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:13:13: warning: var 'minimumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | private var valueKey: String = "valueKey"
13 | private var minimumValueKey: String = "minimumValueKey"
   |             |- warning: var 'minimumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'minimumValueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'minimumValueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | private var maximumValueKey: String = "maximumValueKey"
15 | private var minimumValueImageKey: String = "minimumValueImageKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:14:13: warning: var 'maximumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 | private var valueKey: String = "valueKey"
13 | private var minimumValueKey: String = "minimumValueKey"
14 | private var maximumValueKey: String = "maximumValueKey"
   |             |- warning: var 'maximumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'maximumValueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'maximumValueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | private var minimumValueImageKey: String = "minimumValueImageKey"
16 | private var maximumValueImageKey: String = "maximumValueImageKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:15:13: warning: var 'minimumValueImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 | private var minimumValueKey: String = "minimumValueKey"
14 | private var maximumValueKey: String = "maximumValueKey"
15 | private var minimumValueImageKey: String = "minimumValueImageKey"
   |             |- warning: var 'minimumValueImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'minimumValueImageKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'minimumValueImageKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | private var maximumValueImageKey: String = "maximumValueImageKey"
17 | private var isContinuousKey: String = "isContinuousKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:16:13: warning: var 'maximumValueImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 | private var maximumValueKey: String = "maximumValueKey"
15 | private var minimumValueImageKey: String = "minimumValueImageKey"
16 | private var maximumValueImageKey: String = "maximumValueImageKey"
   |             |- warning: var 'maximumValueImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'maximumValueImageKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'maximumValueImageKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | private var isContinuousKey: String = "isContinuousKey"
18 | private var minimumTrackTintColorKey: String = "minimumTrackTintColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:17:13: warning: var 'isContinuousKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 | private var minimumValueImageKey: String = "minimumValueImageKey"
16 | private var maximumValueImageKey: String = "maximumValueImageKey"
17 | private var isContinuousKey: String = "isContinuousKey"
   |             |- warning: var 'isContinuousKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'isContinuousKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'isContinuousKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | private var minimumTrackTintColorKey: String = "minimumTrackTintColorKey"
19 | private var maximumTrackTintColorKey: String = "maximumTrackTintColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:18:13: warning: var 'minimumTrackTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 | private var maximumValueImageKey: String = "maximumValueImageKey"
17 | private var isContinuousKey: String = "isContinuousKey"
18 | private var minimumTrackTintColorKey: String = "minimumTrackTintColorKey"
   |             |- warning: var 'minimumTrackTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'minimumTrackTintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'minimumTrackTintColorKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | private var maximumTrackTintColorKey: String = "maximumTrackTintColorKey"
20 | private var thumbTintColorKey: String = "thumbTintColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:19:13: warning: var 'maximumTrackTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 | private var isContinuousKey: String = "isContinuousKey"
18 | private var minimumTrackTintColorKey: String = "minimumTrackTintColorKey"
19 | private var maximumTrackTintColorKey: String = "maximumTrackTintColorKey"
   |             |- warning: var 'maximumTrackTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'maximumTrackTintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'maximumTrackTintColorKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | private var thumbTintColorKey: String = "thumbTintColorKey"
21 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:20:13: warning: var 'thumbTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
18 | private var minimumTrackTintColorKey: String = "minimumTrackTintColorKey"
19 | private var maximumTrackTintColorKey: String = "maximumTrackTintColorKey"
20 | private var thumbTintColorKey: String = "thumbTintColorKey"
   |             |- warning: var 'thumbTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'thumbTintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'thumbTintColorKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public extension BindableCollection where Object: UISlider {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:22:51: error: cannot find type 'UISlider' in scope
20 | private var thumbTintColorKey: String = "thumbTintColorKey"
21 |
22 | public extension BindableCollection where Object: UISlider {
   |                                                   `- error: cannot find type 'UISlider' in scope
23 |
24 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:20:51: error: cannot find type 'UIStepper' in scope
18 | private var stepValueKey: String = "stepValueKey"
19 |
20 | public extension BindableCollection where Object: UIStepper {
   |                                                   `- error: cannot find type 'UIStepper' in scope
21 |
22 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:26:9: error: invalid redeclaration of 'value'
24 |     // MARK: Two Way Relay
25 |
26 |     var value: Observable<Float> {
   |         `- error: invalid redeclaration of 'value'
27 |         bindable(of: \.value, key: &valueKey)
28 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:30:9: error: invalid redeclaration of 'minimumValue'
28 |     }
29 |
30 |     var minimumValue: Observable<Float> {
   |         `- error: invalid redeclaration of 'minimumValue'
31 |         bindable(of: \.minimumValue, key: &minimumValueKey)
32 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:34:9: error: invalid redeclaration of 'maximumValue'
32 |     }
33 |
34 |     var maximumValue: Observable<Float> {
   |         `- error: invalid redeclaration of 'maximumValue'
35 |         bindable(of: \.maximumValue, key: &maximumValueKey)
36 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:46:9: error: invalid redeclaration of 'isContinuous'
44 |     }
45 |
46 |     var isContinuous: Observable<Bool> {
   |         `- error: invalid redeclaration of 'isContinuous'
47 |         bindable(of: \.isContinuous, key: &isContinuousKey)
48 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:18:51: error: cannot find type 'UISwitch' in scope
16 | private var isOnKey: String = "isOnKey"
17 |
18 | public extension BindableCollection where Object: UISwitch {
   |                                                   `- error: cannot find type 'UISwitch' in scope
19 |
20 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift:58:9: error: invalid redeclaration of 'thumbTintColor'
56 |     }
57 |
58 |     var thumbTintColor: Observable<UIColor?> {
   |         `- error: invalid redeclaration of 'thumbTintColor'
59 |         bindable(of: \.thumbTintColor, key: &thumbTintColorKey)
60 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift:12:13: warning: var 'spacingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | import UIKit
11 |
12 | private var spacingKey: String = "spacingKey"
   |             |- warning: var 'spacingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'spacingKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'spacingKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | private var isBaselineRelativeArrangementKey: String = "isBaselineRelativeArrangementKey"
14 | private var isLayoutMarginsRelativeArrangementKey: String = "isLayoutMarginsRelativeArrangementKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift:13:13: warning: var 'isBaselineRelativeArrangementKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | private var spacingKey: String = "spacingKey"
13 | private var isBaselineRelativeArrangementKey: String = "isBaselineRelativeArrangementKey"
   |             |- warning: var 'isBaselineRelativeArrangementKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'isBaselineRelativeArrangementKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'isBaselineRelativeArrangementKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | private var isLayoutMarginsRelativeArrangementKey: String = "isLayoutMarginsRelativeArrangementKey"
15 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift:14:13: warning: var 'isLayoutMarginsRelativeArrangementKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 | private var spacingKey: String = "spacingKey"
13 | private var isBaselineRelativeArrangementKey: String = "isBaselineRelativeArrangementKey"
14 | private var isLayoutMarginsRelativeArrangementKey: String = "isLayoutMarginsRelativeArrangementKey"
   |             |- warning: var 'isLayoutMarginsRelativeArrangementKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'isLayoutMarginsRelativeArrangementKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'isLayoutMarginsRelativeArrangementKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | public extension BindableCollection where Object: UIStackView {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift:16:51: error: cannot find type 'UIStackView' in scope
14 | private var isLayoutMarginsRelativeArrangementKey: String = "isLayoutMarginsRelativeArrangementKey"
15 |
16 | public extension BindableCollection where Object: UIStackView {
   |                                                   `- error: cannot find type 'UIStackView' in scope
17 |
18 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:12:13: warning: var 'isContinuousKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | import UIKit
11 |
12 | private var isContinuousKey: String = "isContinuousKey"
   |             |- warning: var 'isContinuousKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'isContinuousKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'isContinuousKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | private var autorepeatKey: String = "autorepeatKey"
14 | private var wrapsKey: String = "wrapsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:13:13: warning: var 'autorepeatKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | private var isContinuousKey: String = "isContinuousKey"
13 | private var autorepeatKey: String = "autorepeatKey"
   |             |- warning: var 'autorepeatKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'autorepeatKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'autorepeatKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | private var wrapsKey: String = "wrapsKey"
15 | private var valueKey: String = "valueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:14:13: warning: var 'wrapsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 | private var isContinuousKey: String = "isContinuousKey"
13 | private var autorepeatKey: String = "autorepeatKey"
14 | private var wrapsKey: String = "wrapsKey"
   |             |- warning: var 'wrapsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'wrapsKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'wrapsKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | private var valueKey: String = "valueKey"
16 | private var minimumValueKey: String = "minimumValueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:15:13: warning: var 'valueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 | private var autorepeatKey: String = "autorepeatKey"
14 | private var wrapsKey: String = "wrapsKey"
15 | private var valueKey: String = "valueKey"
   |             |- warning: var 'valueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'valueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'valueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | private var minimumValueKey: String = "minimumValueKey"
17 | private var maximumValueKey: String = "maximumValueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:16:13: warning: var 'minimumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 | private var wrapsKey: String = "wrapsKey"
15 | private var valueKey: String = "valueKey"
16 | private var minimumValueKey: String = "minimumValueKey"
   |             |- warning: var 'minimumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'minimumValueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'minimumValueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | private var maximumValueKey: String = "maximumValueKey"
18 | private var stepValueKey: String = "stepValueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:17:13: warning: var 'maximumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 | private var valueKey: String = "valueKey"
16 | private var minimumValueKey: String = "minimumValueKey"
17 | private var maximumValueKey: String = "maximumValueKey"
   |             |- warning: var 'maximumValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'maximumValueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'maximumValueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | private var stepValueKey: String = "stepValueKey"
19 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift:18:13: warning: var 'stepValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 | private var minimumValueKey: String = "minimumValueKey"
17 | private var maximumValueKey: String = "maximumValueKey"
18 | private var stepValueKey: String = "stepValueKey"
   |             |- warning: var 'stepValueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'stepValueKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'stepValueKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | public extension BindableCollection where Object: UIStepper {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:12:13: warning: var 'onTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | import UIKit
11 |
12 | private var onTintColorKey: String = "onTintColorKey"
   |             |- warning: var 'onTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'onTintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'onTintColorKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | private var thumbTintColorKey: String = "thumbTintColorKey"
14 | private var onImageKey: String = "onImageKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:13:13: warning: var 'thumbTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | private var onTintColorKey: String = "onTintColorKey"
13 | private var thumbTintColorKey: String = "thumbTintColorKey"
   |             |- warning: var 'thumbTintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'thumbTintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'thumbTintColorKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | private var onImageKey: String = "onImageKey"
15 | private var offImageKey: String = "offImageKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:14:13: warning: var 'onImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 | private var onTintColorKey: String = "onTintColorKey"
13 | private var thumbTintColorKey: String = "thumbTintColorKey"
14 | private var onImageKey: String = "onImageKey"
   |             |- warning: var 'onImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'onImageKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'onImageKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | private var offImageKey: String = "offImageKey"
16 | private var isOnKey: String = "isOnKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:15:13: warning: var 'offImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 | private var thumbTintColorKey: String = "thumbTintColorKey"
14 | private var onImageKey: String = "onImageKey"
15 | private var offImageKey: String = "offImageKey"
   |             |- warning: var 'offImageKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'offImageKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'offImageKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | private var isOnKey: String = "isOnKey"
17 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift:16:13: warning: var 'isOnKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 | private var onImageKey: String = "onImageKey"
15 | private var offImageKey: String = "offImageKey"
16 | private var isOnKey: String = "isOnKey"
   |             |- warning: var 'isOnKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'isOnKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'isOnKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | public extension BindableCollection where Object: UISwitch {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:12:13: warning: var 'rowHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 10 | import UIKit
 11 |
 12 | private var rowHeightKey: String = "rowHeightKey"
    |             |- warning: var 'rowHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'rowHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'rowHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 | private var delegateKey: String = "delegateKey"
 14 | private var dataSourceKey: String = "dataSourceKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:13:13: warning: var 'delegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | private var rowHeightKey: String = "rowHeightKey"
 13 | private var delegateKey: String = "delegateKey"
    |             |- warning: var 'delegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'delegateKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'delegateKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | private var dataSourceKey: String = "dataSourceKey"
 15 | private var prefetchDataSourceKey: String = "prefetchDataSourceKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:14:13: warning: var 'dataSourceKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | private var rowHeightKey: String = "rowHeightKey"
 13 | private var delegateKey: String = "delegateKey"
 14 | private var dataSourceKey: String = "dataSourceKey"
    |             |- warning: var 'dataSourceKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dataSourceKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dataSourceKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 | private var prefetchDataSourceKey: String = "prefetchDataSourceKey"
 16 | private var isPrefetchingEnabledKey: String = "isPrefetchingEnabledKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:15:13: warning: var 'prefetchDataSourceKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | private var delegateKey: String = "delegateKey"
 14 | private var dataSourceKey: String = "dataSourceKey"
 15 | private var prefetchDataSourceKey: String = "prefetchDataSourceKey"
    |             |- warning: var 'prefetchDataSourceKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'prefetchDataSourceKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'prefetchDataSourceKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | private var isPrefetchingEnabledKey: String = "isPrefetchingEnabledKey"
 17 | private var dragDelegateKey: String = "dragDelegateKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:16:13: warning: var 'isPrefetchingEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 14 | private var dataSourceKey: String = "dataSourceKey"
 15 | private var prefetchDataSourceKey: String = "prefetchDataSourceKey"
 16 | private var isPrefetchingEnabledKey: String = "isPrefetchingEnabledKey"
    |             |- warning: var 'isPrefetchingEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isPrefetchingEnabledKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isPrefetchingEnabledKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 | private var dragDelegateKey: String = "dragDelegateKey"
 18 | private var dropDelegateKey: String = "dropDelegateKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:17:13: warning: var 'dragDelegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | private var prefetchDataSourceKey: String = "prefetchDataSourceKey"
 16 | private var isPrefetchingEnabledKey: String = "isPrefetchingEnabledKey"
 17 | private var dragDelegateKey: String = "dragDelegateKey"
    |             |- warning: var 'dragDelegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dragDelegateKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dragDelegateKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 | private var dropDelegateKey: String = "dropDelegateKey"
 19 | private var dragInteractionEnabledKey: String = "dragInteractionEnabledKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:18:13: warning: var 'dropDelegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 16 | private var isPrefetchingEnabledKey: String = "isPrefetchingEnabledKey"
 17 | private var dragDelegateKey: String = "dragDelegateKey"
 18 | private var dropDelegateKey: String = "dropDelegateKey"
    |             |- warning: var 'dropDelegateKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dropDelegateKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dropDelegateKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 | private var dragInteractionEnabledKey: String = "dragInteractionEnabledKey"
 20 | private var backgroundViewKey: String = "backgroundViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:19:13: warning: var 'dragInteractionEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 17 | private var dragDelegateKey: String = "dragDelegateKey"
 18 | private var dropDelegateKey: String = "dropDelegateKey"
 19 | private var dragInteractionEnabledKey: String = "dragInteractionEnabledKey"
    |             |- warning: var 'dragInteractionEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dragInteractionEnabledKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dragInteractionEnabledKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 | private var backgroundViewKey: String = "backgroundViewKey"
 21 | private var allowsSelectionKey: String = "allowsSelectionKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:20:13: warning: var 'backgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | private var dropDelegateKey: String = "dropDelegateKey"
 19 | private var dragInteractionEnabledKey: String = "dragInteractionEnabledKey"
 20 | private var backgroundViewKey: String = "backgroundViewKey"
    |             |- warning: var 'backgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'backgroundViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'backgroundViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | private var allowsSelectionKey: String = "allowsSelectionKey"
 22 | private var allowsMultipleSelectionKey: String = "allowsMultipleSelectionKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:21:13: warning: var 'allowsSelectionKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | private var dragInteractionEnabledKey: String = "dragInteractionEnabledKey"
 20 | private var backgroundViewKey: String = "backgroundViewKey"
 21 | private var allowsSelectionKey: String = "allowsSelectionKey"
    |             |- warning: var 'allowsSelectionKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'allowsSelectionKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'allowsSelectionKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | private var allowsMultipleSelectionKey: String = "allowsMultipleSelectionKey"
 23 | private var remembersLastFocusedIndexPathKey: String = "remembersLastFocusedIndexPathKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:22:13: warning: var 'allowsMultipleSelectionKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 20 | private var backgroundViewKey: String = "backgroundViewKey"
 21 | private var allowsSelectionKey: String = "allowsSelectionKey"
 22 | private var allowsMultipleSelectionKey: String = "allowsMultipleSelectionKey"
    |             |- warning: var 'allowsMultipleSelectionKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'allowsMultipleSelectionKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'allowsMultipleSelectionKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 | private var remembersLastFocusedIndexPathKey: String = "remembersLastFocusedIndexPathKey"
 24 | private var selectionFollowsFocusKey: String = "selectionFollowsFocusKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:23:13: warning: var 'remembersLastFocusedIndexPathKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | private var allowsSelectionKey: String = "allowsSelectionKey"
 22 | private var allowsMultipleSelectionKey: String = "allowsMultipleSelectionKey"
 23 | private var remembersLastFocusedIndexPathKey: String = "remembersLastFocusedIndexPathKey"
    |             |- warning: var 'remembersLastFocusedIndexPathKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'remembersLastFocusedIndexPathKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'remembersLastFocusedIndexPathKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | private var selectionFollowsFocusKey: String = "selectionFollowsFocusKey"
 25 | private var isEditingKey: String = "isEditingKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:24:13: warning: var 'selectionFollowsFocusKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | private var allowsMultipleSelectionKey: String = "allowsMultipleSelectionKey"
 23 | private var remembersLastFocusedIndexPathKey: String = "remembersLastFocusedIndexPathKey"
 24 | private var selectionFollowsFocusKey: String = "selectionFollowsFocusKey"
    |             |- warning: var 'selectionFollowsFocusKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'selectionFollowsFocusKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'selectionFollowsFocusKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 | private var isEditingKey: String = "isEditingKey"
 26 | private var sectionHeaderHeightKey: String = "sectionHeaderHeightKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:25:13: warning: var 'isEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 | private var remembersLastFocusedIndexPathKey: String = "remembersLastFocusedIndexPathKey"
 24 | private var selectionFollowsFocusKey: String = "selectionFollowsFocusKey"
 25 | private var isEditingKey: String = "isEditingKey"
    |             |- warning: var 'isEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isEditingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isEditingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | private var sectionHeaderHeightKey: String = "sectionHeaderHeightKey"
 27 | private var sectionFooterHeightKey: String = "sectionFooterHeightKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:26:13: warning: var 'sectionHeaderHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 | private var selectionFollowsFocusKey: String = "selectionFollowsFocusKey"
 25 | private var isEditingKey: String = "isEditingKey"
 26 | private var sectionHeaderHeightKey: String = "sectionHeaderHeightKey"
    |             |- warning: var 'sectionHeaderHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionHeaderHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionHeaderHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | private var sectionFooterHeightKey: String = "sectionFooterHeightKey"
 28 | private var estimatedRowHeightKey: String = "estimatedRowHeightKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:27:13: warning: var 'sectionFooterHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | private var isEditingKey: String = "isEditingKey"
 26 | private var sectionHeaderHeightKey: String = "sectionHeaderHeightKey"
 27 | private var sectionFooterHeightKey: String = "sectionFooterHeightKey"
    |             |- warning: var 'sectionFooterHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionFooterHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionFooterHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | private var estimatedRowHeightKey: String = "estimatedRowHeightKey"
 29 | private var separatorInsetKey: String = "separatorInsetKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:28:13: warning: var 'estimatedRowHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 26 | private var sectionHeaderHeightKey: String = "sectionHeaderHeightKey"
 27 | private var sectionFooterHeightKey: String = "sectionFooterHeightKey"
 28 | private var estimatedRowHeightKey: String = "estimatedRowHeightKey"
    |             |- warning: var 'estimatedRowHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'estimatedRowHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'estimatedRowHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | private var separatorInsetKey: String = "separatorInsetKey"
 30 | private var sectionIndexMinimumDisplayRowCountKey: String = "sectionIndexMinimumDisplayRowCountKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:29:13: warning: var 'separatorInsetKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | private var sectionFooterHeightKey: String = "sectionFooterHeightKey"
 28 | private var estimatedRowHeightKey: String = "estimatedRowHeightKey"
 29 | private var separatorInsetKey: String = "separatorInsetKey"
    |             |- warning: var 'separatorInsetKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'separatorInsetKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'separatorInsetKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | private var sectionIndexMinimumDisplayRowCountKey: String = "sectionIndexMinimumDisplayRowCountKey"
 31 | private var sectionIndexColorKey: String = "sectionIndexColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:30:13: warning: var 'sectionIndexMinimumDisplayRowCountKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 | private var estimatedRowHeightKey: String = "estimatedRowHeightKey"
 29 | private var separatorInsetKey: String = "separatorInsetKey"
 30 | private var sectionIndexMinimumDisplayRowCountKey: String = "sectionIndexMinimumDisplayRowCountKey"
    |             |- warning: var 'sectionIndexMinimumDisplayRowCountKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionIndexMinimumDisplayRowCountKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionIndexMinimumDisplayRowCountKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 | private var sectionIndexColorKey: String = "sectionIndexColorKey"
 32 | private var sectionIndexBackgroundColorKey: String = "sectionIndexBackgroundColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:31:13: warning: var 'sectionIndexColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | private var separatorInsetKey: String = "separatorInsetKey"
 30 | private var sectionIndexMinimumDisplayRowCountKey: String = "sectionIndexMinimumDisplayRowCountKey"
 31 | private var sectionIndexColorKey: String = "sectionIndexColorKey"
    |             |- warning: var 'sectionIndexColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionIndexColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionIndexColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 | private var sectionIndexBackgroundColorKey: String = "sectionIndexBackgroundColorKey"
 33 | private var sectionIndexTrackingBackgroundColorKey: String = "sectionIndexTrackingBackgroundColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:32:13: warning: var 'sectionIndexBackgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 30 | private var sectionIndexMinimumDisplayRowCountKey: String = "sectionIndexMinimumDisplayRowCountKey"
 31 | private var sectionIndexColorKey: String = "sectionIndexColorKey"
 32 | private var sectionIndexBackgroundColorKey: String = "sectionIndexBackgroundColorKey"
    |             |- warning: var 'sectionIndexBackgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionIndexBackgroundColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionIndexBackgroundColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | private var sectionIndexTrackingBackgroundColorKey: String = "sectionIndexTrackingBackgroundColorKey"
 34 | private var separatorStyleKey: String = "separatorStyleKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:33:13: warning: var 'sectionIndexTrackingBackgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 31 | private var sectionIndexColorKey: String = "sectionIndexColorKey"
 32 | private var sectionIndexBackgroundColorKey: String = "sectionIndexBackgroundColorKey"
 33 | private var sectionIndexTrackingBackgroundColorKey: String = "sectionIndexTrackingBackgroundColorKey"
    |             |- warning: var 'sectionIndexTrackingBackgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'sectionIndexTrackingBackgroundColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'sectionIndexTrackingBackgroundColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 | private var separatorStyleKey: String = "separatorStyleKey"
 35 | private var separatorEffectKey: String = "separatorEffectKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:34:13: warning: var 'separatorStyleKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 32 | private var sectionIndexBackgroundColorKey: String = "sectionIndexBackgroundColorKey"
 33 | private var sectionIndexTrackingBackgroundColorKey: String = "sectionIndexTrackingBackgroundColorKey"
 34 | private var separatorStyleKey: String = "separatorStyleKey"
    |             |- warning: var 'separatorStyleKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'separatorStyleKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'separatorStyleKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 | private var separatorEffectKey: String = "separatorEffectKey"
 36 | private var separatorColorKey: String = "separatorColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:35:13: warning: var 'separatorEffectKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 33 | private var sectionIndexTrackingBackgroundColorKey: String = "sectionIndexTrackingBackgroundColorKey"
 34 | private var separatorStyleKey: String = "separatorStyleKey"
 35 | private var separatorEffectKey: String = "separatorEffectKey"
    |             |- warning: var 'separatorEffectKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'separatorEffectKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'separatorEffectKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | private var separatorColorKey: String = "separatorColorKey"
 37 | private var tableHeaderViewKey: String = "tableHeaderViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:36:13: warning: var 'separatorColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 34 | private var separatorStyleKey: String = "separatorStyleKey"
 35 | private var separatorEffectKey: String = "separatorEffectKey"
 36 | private var separatorColorKey: String = "separatorColorKey"
    |             |- warning: var 'separatorColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'separatorColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'separatorColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 | private var tableHeaderViewKey: String = "tableHeaderViewKey"
 38 | private var estimatedSectionHeaderHeightKey: String = "estimatedSectionHeaderHeightKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:37:13: warning: var 'tableHeaderViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 35 | private var separatorEffectKey: String = "separatorEffectKey"
 36 | private var separatorColorKey: String = "separatorColorKey"
 37 | private var tableHeaderViewKey: String = "tableHeaderViewKey"
    |             |- warning: var 'tableHeaderViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'tableHeaderViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'tableHeaderViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | private var estimatedSectionHeaderHeightKey: String = "estimatedSectionHeaderHeightKey"
 39 | private var estimatedSectionFooterHeightKey: String = "estimatedSectionFooterHeightKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:38:13: warning: var 'estimatedSectionHeaderHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 | private var separatorColorKey: String = "separatorColorKey"
 37 | private var tableHeaderViewKey: String = "tableHeaderViewKey"
 38 | private var estimatedSectionHeaderHeightKey: String = "estimatedSectionHeaderHeightKey"
    |             |- warning: var 'estimatedSectionHeaderHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'estimatedSectionHeaderHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'estimatedSectionHeaderHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 | private var estimatedSectionFooterHeightKey: String = "estimatedSectionFooterHeightKey"
 40 | private var cellLayoutMarginsFollowReadableWidthKey: String = "cellLayoutMarginsFollowReadableWidthKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:39:13: warning: var 'estimatedSectionFooterHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 37 | private var tableHeaderViewKey: String = "tableHeaderViewKey"
 38 | private var estimatedSectionHeaderHeightKey: String = "estimatedSectionHeaderHeightKey"
 39 | private var estimatedSectionFooterHeightKey: String = "estimatedSectionFooterHeightKey"
    |             |- warning: var 'estimatedSectionFooterHeightKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'estimatedSectionFooterHeightKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'estimatedSectionFooterHeightKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 | private var cellLayoutMarginsFollowReadableWidthKey: String = "cellLayoutMarginsFollowReadableWidthKey"
 41 | private var insetsContentViewsToSafeAreaKey: String = "insetsContentViewsToSafeAreaKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:40:13: warning: var 'cellLayoutMarginsFollowReadableWidthKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 38 | private var estimatedSectionHeaderHeightKey: String = "estimatedSectionHeaderHeightKey"
 39 | private var estimatedSectionFooterHeightKey: String = "estimatedSectionFooterHeightKey"
 40 | private var cellLayoutMarginsFollowReadableWidthKey: String = "cellLayoutMarginsFollowReadableWidthKey"
    |             |- warning: var 'cellLayoutMarginsFollowReadableWidthKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'cellLayoutMarginsFollowReadableWidthKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'cellLayoutMarginsFollowReadableWidthKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 | private var insetsContentViewsToSafeAreaKey: String = "insetsContentViewsToSafeAreaKey"
 42 | private var tableFooterViewKey: String = "tableFooterViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:41:13: warning: var 'insetsContentViewsToSafeAreaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 39 | private var estimatedSectionFooterHeightKey: String = "estimatedSectionFooterHeightKey"
 40 | private var cellLayoutMarginsFollowReadableWidthKey: String = "cellLayoutMarginsFollowReadableWidthKey"
 41 | private var insetsContentViewsToSafeAreaKey: String = "insetsContentViewsToSafeAreaKey"
    |             |- warning: var 'insetsContentViewsToSafeAreaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'insetsContentViewsToSafeAreaKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'insetsContentViewsToSafeAreaKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 | private var tableFooterViewKey: String = "tableFooterViewKey"
 43 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:42:13: warning: var 'tableFooterViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 | private var cellLayoutMarginsFollowReadableWidthKey: String = "cellLayoutMarginsFollowReadableWidthKey"
 41 | private var insetsContentViewsToSafeAreaKey: String = "insetsContentViewsToSafeAreaKey"
 42 | private var tableFooterViewKey: String = "tableFooterViewKey"
    |             |- warning: var 'tableFooterViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'tableFooterViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'tableFooterViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 | public extension BindableCollection where Object: UITableView {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:48:32: error: cannot find type 'UITableViewDataSource' in scope
 46 |     // MARK: Two Way Relay
 47 |
 48 |     var dataSource: Observable<UITableViewDataSource?> {
    |                                `- error: cannot find type 'UITableViewDataSource' in scope
 49 |         bindable(of: \.dataSource, key: &dataSourceKey)
 50 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:52:30: error: cannot find type 'UITableViewDelegate' in scope
 50 |     }
 51 |
 52 |     var delegate: Observable<UITableViewDelegate?> {
    |                              `- error: cannot find type 'UITableViewDelegate' in scope
 53 |         bindable(of: \.delegate, key: &delegateKey)
 54 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:56:40: error: cannot find type 'UITableViewDataSourcePrefetching' in scope
 54 |     }
 55 |
 56 |     var prefetchDataSource: Observable<UITableViewDataSourcePrefetching?> {
    |                                        `- error: cannot find type 'UITableViewDataSourcePrefetching' in scope
 57 |         bindable(of: \.prefetchDataSource, key: &prefetchDataSourceKey)
 58 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:61:34: error: cannot find type 'UITableViewDragDelegate' in scope
 59 |
 60 |     @available(iOS 11.0, *)
 61 |     var dragDelegate: Observable<UITableViewDragDelegate?> {
    |                                  `- error: cannot find type 'UITableViewDragDelegate' in scope
 62 |         bindable(of: \.dragDelegate, key: &dragDelegateKey)
 63 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:66:34: error: cannot find type 'UITableViewDropDelegate' in scope
 64 |
 65 |     @available(iOS 11.0, *)
 66 |     var dropDelegate: Observable<UITableViewDropDelegate?> {
    |                                  `- error: cannot find type 'UITableViewDropDelegate' in scope
 67 |         bindable(of: \.dropDelegate, key: &dropDelegateKey)
 68 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:98:36: error: cannot find type 'UIView' in scope
 96 |     }
 97 |
 98 |     var backgroundView: Observable<UIView?> {
    |                                    `- error: cannot find type 'UIView' in scope
 99 |         bindable(of: \.backgroundView, key: &backgroundViewKey)
100 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:102:9: error: invalid redeclaration of 'isEditing'
100 |     }
101 |
102 |     var isEditing: Observable<Bool> {
    |         `- error: invalid redeclaration of 'isEditing'
103 |         bindable(of: \.isEditing, key: &isEditingKey)
104 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:130:36: error: cannot find type 'UITableViewCell' in scope
128 |     }
129 |
130 |     var separatorStyle: Observable<UITableViewCell.SeparatorStyle> {
    |                                    `- error: cannot find type 'UITableViewCell' in scope
131 |         bindable(of: \.separatorStyle, key: &separatorStyleKey)
132 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:138:37: error: cannot find type 'UIVisualEffect' in scope
136 |     }
137 |
138 |     var separatorEffect: Observable<UIVisualEffect?> {
    |                                     `- error: cannot find type 'UIVisualEffect' in scope
139 |         bindable(of: \.separatorEffect, key: &separatorEffectKey)
140 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:151:37: error: cannot find type 'UIView' in scope
149 |     }
150 |
151 |     var tableHeaderView: Observable<UIView?> {
    |                                     `- error: cannot find type 'UIView' in scope
152 |         bindable(of: \.tableHeaderView, key: &tableHeaderViewKey)
153 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift:155:37: error: cannot find type 'UIView' in scope
153 |     }
154 |
155 |     var tableFooterView: Observable<UIView?> {
    |                                     `- error: cannot find type 'UIView' in scope
156 |         bindable(of: \.tableFooterView, key: &tableFooterViewKey)
157 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:12:13: warning: var 'isUserInteractionEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 10 | import UIKit
 11 |
 12 | private var isUserInteractionEnabledKey: String = "isUserInteractionEnabledKey"
    |             |- warning: var 'isUserInteractionEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isUserInteractionEnabledKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isUserInteractionEnabledKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 | private var focusGroupIdentifierKey: String = "focusGroupIdentifierKey"
 14 | private var frameKey: String = "frameKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:13:13: warning: var 'focusGroupIdentifierKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 11 |
 12 | private var isUserInteractionEnabledKey: String = "isUserInteractionEnabledKey"
 13 | private var focusGroupIdentifierKey: String = "focusGroupIdentifierKey"
    |             |- warning: var 'focusGroupIdentifierKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'focusGroupIdentifierKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'focusGroupIdentifierKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | private var frameKey: String = "frameKey"
 15 | private var boundsKey: String = "boundsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:14:13: warning: var 'frameKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | private var isUserInteractionEnabledKey: String = "isUserInteractionEnabledKey"
 13 | private var focusGroupIdentifierKey: String = "focusGroupIdentifierKey"
 14 | private var frameKey: String = "frameKey"
    |             |- warning: var 'frameKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'frameKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'frameKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 | private var boundsKey: String = "boundsKey"
 16 | private var centerKey: String = "centerKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:15:13: warning: var 'boundsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | private var focusGroupIdentifierKey: String = "focusGroupIdentifierKey"
 14 | private var frameKey: String = "frameKey"
 15 | private var boundsKey: String = "boundsKey"
    |             |- warning: var 'boundsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'boundsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'boundsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | private var centerKey: String = "centerKey"
 17 | private var contentScaleFactorKey: String = "contentScaleFactorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:16:13: warning: var 'centerKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 14 | private var frameKey: String = "frameKey"
 15 | private var boundsKey: String = "boundsKey"
 16 | private var centerKey: String = "centerKey"
    |             |- warning: var 'centerKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'centerKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'centerKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 | private var contentScaleFactorKey: String = "contentScaleFactorKey"
 18 | private var isMultipleTouchEnabledKey: String = "isMultipleTouchEnabledKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:17:13: warning: var 'contentScaleFactorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | private var boundsKey: String = "boundsKey"
 16 | private var centerKey: String = "centerKey"
 17 | private var contentScaleFactorKey: String = "contentScaleFactorKey"
    |             |- warning: var 'contentScaleFactorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'contentScaleFactorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'contentScaleFactorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 | private var isMultipleTouchEnabledKey: String = "isMultipleTouchEnabledKey"
 19 | private var isExclusiveTouchKey: String = "isExclusiveTouchKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:18:13: warning: var 'isMultipleTouchEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 16 | private var centerKey: String = "centerKey"
 17 | private var contentScaleFactorKey: String = "contentScaleFactorKey"
 18 | private var isMultipleTouchEnabledKey: String = "isMultipleTouchEnabledKey"
    |             |- warning: var 'isMultipleTouchEnabledKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isMultipleTouchEnabledKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isMultipleTouchEnabledKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 | private var isExclusiveTouchKey: String = "isExclusiveTouchKey"
 20 | private var autoresizesSubviewsKey: String = "autoresizesSubviewsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:19:13: warning: var 'isExclusiveTouchKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 17 | private var contentScaleFactorKey: String = "contentScaleFactorKey"
 18 | private var isMultipleTouchEnabledKey: String = "isMultipleTouchEnabledKey"
 19 | private var isExclusiveTouchKey: String = "isExclusiveTouchKey"
    |             |- warning: var 'isExclusiveTouchKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isExclusiveTouchKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isExclusiveTouchKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 | private var autoresizesSubviewsKey: String = "autoresizesSubviewsKey"
 21 | private var directionalLayoutMarginsKey: String = "directionalLayoutMarginsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:20:13: warning: var 'autoresizesSubviewsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | private var isMultipleTouchEnabledKey: String = "isMultipleTouchEnabledKey"
 19 | private var isExclusiveTouchKey: String = "isExclusiveTouchKey"
 20 | private var autoresizesSubviewsKey: String = "autoresizesSubviewsKey"
    |             |- warning: var 'autoresizesSubviewsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'autoresizesSubviewsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'autoresizesSubviewsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | private var directionalLayoutMarginsKey: String = "directionalLayoutMarginsKey"
 22 | private var layoutMarginsKey: String = "layoutMarginsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:21:13: warning: var 'directionalLayoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | private var isExclusiveTouchKey: String = "isExclusiveTouchKey"
 20 | private var autoresizesSubviewsKey: String = "autoresizesSubviewsKey"
 21 | private var directionalLayoutMarginsKey: String = "directionalLayoutMarginsKey"
    |             |- warning: var 'directionalLayoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'directionalLayoutMarginsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'directionalLayoutMarginsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | private var layoutMarginsKey: String = "layoutMarginsKey"
 23 | private var tagKey: String = "tagKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:22:13: warning: var 'layoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 20 | private var autoresizesSubviewsKey: String = "autoresizesSubviewsKey"
 21 | private var directionalLayoutMarginsKey: String = "directionalLayoutMarginsKey"
 22 | private var layoutMarginsKey: String = "layoutMarginsKey"
    |             |- warning: var 'layoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'layoutMarginsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'layoutMarginsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 | private var tagKey: String = "tagKey"
 24 | private var preservesSuperviewLayoutMarginsKey: String = "preservesSuperviewLayoutMarginsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:23:13: warning: var 'tagKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | private var directionalLayoutMarginsKey: String = "directionalLayoutMarginsKey"
 22 | private var layoutMarginsKey: String = "layoutMarginsKey"
 23 | private var tagKey: String = "tagKey"
    |             |- warning: var 'tagKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'tagKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'tagKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | private var preservesSuperviewLayoutMarginsKey: String = "preservesSuperviewLayoutMarginsKey"
 25 | private var insetsLayoutMarginsFromSafeAreaKey: String = "insetsLayoutMarginsFromSafeAreaKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:24:13: warning: var 'preservesSuperviewLayoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | private var layoutMarginsKey: String = "layoutMarginsKey"
 23 | private var tagKey: String = "tagKey"
 24 | private var preservesSuperviewLayoutMarginsKey: String = "preservesSuperviewLayoutMarginsKey"
    |             |- warning: var 'preservesSuperviewLayoutMarginsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'preservesSuperviewLayoutMarginsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'preservesSuperviewLayoutMarginsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 | private var insetsLayoutMarginsFromSafeAreaKey: String = "insetsLayoutMarginsFromSafeAreaKey"
 26 | private var clipsToBoundsKey: String = "clipsToBoundsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:25:13: warning: var 'insetsLayoutMarginsFromSafeAreaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 | private var tagKey: String = "tagKey"
 24 | private var preservesSuperviewLayoutMarginsKey: String = "preservesSuperviewLayoutMarginsKey"
 25 | private var insetsLayoutMarginsFromSafeAreaKey: String = "insetsLayoutMarginsFromSafeAreaKey"
    |             |- warning: var 'insetsLayoutMarginsFromSafeAreaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'insetsLayoutMarginsFromSafeAreaKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'insetsLayoutMarginsFromSafeAreaKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | private var clipsToBoundsKey: String = "clipsToBoundsKey"
 27 | private var alphaKey: String = "alphaKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:26:13: warning: var 'clipsToBoundsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 | private var preservesSuperviewLayoutMarginsKey: String = "preservesSuperviewLayoutMarginsKey"
 25 | private var insetsLayoutMarginsFromSafeAreaKey: String = "insetsLayoutMarginsFromSafeAreaKey"
 26 | private var clipsToBoundsKey: String = "clipsToBoundsKey"
    |             |- warning: var 'clipsToBoundsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'clipsToBoundsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'clipsToBoundsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | private var alphaKey: String = "alphaKey"
 28 | private var isOpaqueKey: String = "isOpaqueKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:27:13: warning: var 'alphaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | private var insetsLayoutMarginsFromSafeAreaKey: String = "insetsLayoutMarginsFromSafeAreaKey"
 26 | private var clipsToBoundsKey: String = "clipsToBoundsKey"
 27 | private var alphaKey: String = "alphaKey"
    |             |- warning: var 'alphaKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'alphaKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'alphaKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | private var isOpaqueKey: String = "isOpaqueKey"
 29 | private var clearsContextBeforeDrawingKey: String = "clearsContextBeforeDrawingKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:28:13: warning: var 'isOpaqueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 26 | private var clipsToBoundsKey: String = "clipsToBoundsKey"
 27 | private var alphaKey: String = "alphaKey"
 28 | private var isOpaqueKey: String = "isOpaqueKey"
    |             |- warning: var 'isOpaqueKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isOpaqueKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isOpaqueKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | private var clearsContextBeforeDrawingKey: String = "clearsContextBeforeDrawingKey"
 30 | private var isHiddenKey: String = "isHiddenKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:29:13: warning: var 'clearsContextBeforeDrawingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | private var alphaKey: String = "alphaKey"
 28 | private var isOpaqueKey: String = "isOpaqueKey"
 29 | private var clearsContextBeforeDrawingKey: String = "clearsContextBeforeDrawingKey"
    |             |- warning: var 'clearsContextBeforeDrawingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'clearsContextBeforeDrawingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'clearsContextBeforeDrawingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | private var isHiddenKey: String = "isHiddenKey"
 31 | private var backgroundColorKey: String = "backgroundColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:30:13: warning: var 'isHiddenKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 | private var isOpaqueKey: String = "isOpaqueKey"
 29 | private var clearsContextBeforeDrawingKey: String = "clearsContextBeforeDrawingKey"
 30 | private var isHiddenKey: String = "isHiddenKey"
    |             |- warning: var 'isHiddenKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isHiddenKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isHiddenKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 | private var backgroundColorKey: String = "backgroundColorKey"
 32 | private var maskKey: String = "maskKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:31:13: warning: var 'backgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | private var clearsContextBeforeDrawingKey: String = "clearsContextBeforeDrawingKey"
 30 | private var isHiddenKey: String = "isHiddenKey"
 31 | private var backgroundColorKey: String = "backgroundColorKey"
    |             |- warning: var 'backgroundColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'backgroundColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'backgroundColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 | private var maskKey: String = "maskKey"
 33 | private var tintColorKey: String = "tintColorKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:32:13: warning: var 'maskKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 30 | private var isHiddenKey: String = "isHiddenKey"
 31 | private var backgroundColorKey: String = "backgroundColorKey"
 32 | private var maskKey: String = "maskKey"
    |             |- warning: var 'maskKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'maskKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'maskKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | private var tintColorKey: String = "tintColorKey"
 34 | // swiftlint:disable:next identifier_name
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:33:13: warning: var 'tintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 31 | private var backgroundColorKey: String = "backgroundColorKey"
 32 | private var maskKey: String = "maskKey"
 33 | private var tintColorKey: String = "tintColorKey"
    |             |- warning: var 'tintColorKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'tintColorKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'tintColorKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 | // swiftlint:disable:next identifier_name
 35 | private var translatesAutoresizingMaskIntoConstraintsKey: String = "translatesAutoresizingMaskIntoConstraintsKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:35:13: warning: var 'translatesAutoresizingMaskIntoConstraintsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 33 | private var tintColorKey: String = "tintColorKey"
 34 | // swiftlint:disable:next identifier_name
 35 | private var translatesAutoresizingMaskIntoConstraintsKey: String = "translatesAutoresizingMaskIntoConstraintsKey"
    |             |- warning: var 'translatesAutoresizingMaskIntoConstraintsKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'translatesAutoresizingMaskIntoConstraintsKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'translatesAutoresizingMaskIntoConstraintsKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 | private var restorationIdentifierKey: String = "restorationIdentifierKey"
 37 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:36:13: warning: var 'restorationIdentifierKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 34 | // swiftlint:disable:next identifier_name
 35 | private var translatesAutoresizingMaskIntoConstraintsKey: String = "translatesAutoresizingMaskIntoConstraintsKey"
 36 | private var restorationIdentifierKey: String = "restorationIdentifierKey"
    |             |- warning: var 'restorationIdentifierKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'restorationIdentifierKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'restorationIdentifierKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |
 38 | public extension BindableCollection where Object: UIView {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift:125:26: error: cannot find type 'UIView' in scope
123 |     }
124 |
125 |     var mask: Observable<UIView?> {
    |                          `- error: cannot find type 'UIView' in scope
126 |         bindable(of: \.mask, key: &maskKey)
127 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:15:13: warning: var 'automaticallyUpdatesContentConfigurationKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 | // swiftlint:disable:next identifier_name
 15 | private var automaticallyUpdatesContentConfigurationKey: String = "automaticallyUpdatesContentConfigurationKey"
    |             |- warning: var 'automaticallyUpdatesContentConfigurationKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'automaticallyUpdatesContentConfigurationKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'automaticallyUpdatesContentConfigurationKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 | // swiftlint:disable:next identifier_name
 17 | private var automaticallyUpdatesBackgroundConfigurationKey: String = "automaticallyUpdatesBackgroundConfigurationKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:17:13: warning: var 'automaticallyUpdatesBackgroundConfigurationKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | private var automaticallyUpdatesContentConfigurationKey: String = "automaticallyUpdatesContentConfigurationKey"
 16 | // swiftlint:disable:next identifier_name
 17 | private var automaticallyUpdatesBackgroundConfigurationKey: String = "automaticallyUpdatesBackgroundConfigurationKey"
    |             |- warning: var 'automaticallyUpdatesBackgroundConfigurationKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'automaticallyUpdatesBackgroundConfigurationKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'automaticallyUpdatesBackgroundConfigurationKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 | private var backgroundViewKey: String = "backgroundViewKey"
 19 | private var selectedBackgroundViewKey: String = "selectedBackgroundViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:18:13: warning: var 'backgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 16 | // swiftlint:disable:next identifier_name
 17 | private var automaticallyUpdatesBackgroundConfigurationKey: String = "automaticallyUpdatesBackgroundConfigurationKey"
 18 | private var backgroundViewKey: String = "backgroundViewKey"
    |             |- warning: var 'backgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'backgroundViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'backgroundViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 | private var selectedBackgroundViewKey: String = "selectedBackgroundViewKey"
 20 | private var multipleSelectionBackgroundViewKey: String = "multipleSelectionBackgroundViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:19:13: warning: var 'selectedBackgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 17 | private var automaticallyUpdatesBackgroundConfigurationKey: String = "automaticallyUpdatesBackgroundConfigurationKey"
 18 | private var backgroundViewKey: String = "backgroundViewKey"
 19 | private var selectedBackgroundViewKey: String = "selectedBackgroundViewKey"
    |             |- warning: var 'selectedBackgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'selectedBackgroundViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'selectedBackgroundViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 | private var multipleSelectionBackgroundViewKey: String = "multipleSelectionBackgroundViewKey"
 21 | private var isSelectedKey: String = "isSelectedKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:20:13: warning: var 'multipleSelectionBackgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | private var backgroundViewKey: String = "backgroundViewKey"
 19 | private var selectedBackgroundViewKey: String = "selectedBackgroundViewKey"
 20 | private var multipleSelectionBackgroundViewKey: String = "multipleSelectionBackgroundViewKey"
    |             |- warning: var 'multipleSelectionBackgroundViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'multipleSelectionBackgroundViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'multipleSelectionBackgroundViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | private var isSelectedKey: String = "isSelectedKey"
 22 | private var isHighlightedKey: String = "isHighlightedKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:21:13: warning: var 'isSelectedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | private var selectedBackgroundViewKey: String = "selectedBackgroundViewKey"
 20 | private var multipleSelectionBackgroundViewKey: String = "multipleSelectionBackgroundViewKey"
 21 | private var isSelectedKey: String = "isSelectedKey"
    |             |- warning: var 'isSelectedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isSelectedKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isSelectedKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | private var isHighlightedKey: String = "isHighlightedKey"
 23 | private var showsReorderControlKey: String = "showsReorderControlKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:22:13: warning: var 'isHighlightedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 20 | private var multipleSelectionBackgroundViewKey: String = "multipleSelectionBackgroundViewKey"
 21 | private var isSelectedKey: String = "isSelectedKey"
 22 | private var isHighlightedKey: String = "isHighlightedKey"
    |             |- warning: var 'isHighlightedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isHighlightedKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isHighlightedKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 | private var showsReorderControlKey: String = "showsReorderControlKey"
 24 | private var shouldIndentWhileEditingKey: String = "shouldIndentWhileEditingKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:23:13: warning: var 'showsReorderControlKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | private var isSelectedKey: String = "isSelectedKey"
 22 | private var isHighlightedKey: String = "isHighlightedKey"
 23 | private var showsReorderControlKey: String = "showsReorderControlKey"
    |             |- warning: var 'showsReorderControlKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'showsReorderControlKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'showsReorderControlKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | private var shouldIndentWhileEditingKey: String = "shouldIndentWhileEditingKey"
 25 | private var accessoryViewKey: String = "accessoryViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:24:13: warning: var 'shouldIndentWhileEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | private var isHighlightedKey: String = "isHighlightedKey"
 23 | private var showsReorderControlKey: String = "showsReorderControlKey"
 24 | private var shouldIndentWhileEditingKey: String = "shouldIndentWhileEditingKey"
    |             |- warning: var 'shouldIndentWhileEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'shouldIndentWhileEditingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'shouldIndentWhileEditingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 | private var accessoryViewKey: String = "accessoryViewKey"
 26 | private var editingAccessoryViewKey: String = "editingAccessoryViewKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:25:13: warning: var 'accessoryViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 | private var showsReorderControlKey: String = "showsReorderControlKey"
 24 | private var shouldIndentWhileEditingKey: String = "shouldIndentWhileEditingKey"
 25 | private var accessoryViewKey: String = "accessoryViewKey"
    |             |- warning: var 'accessoryViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'accessoryViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'accessoryViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | private var editingAccessoryViewKey: String = "editingAccessoryViewKey"
 27 | private var indentationLevelKey: String = "indentationLevelKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:26:13: warning: var 'editingAccessoryViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 | private var shouldIndentWhileEditingKey: String = "shouldIndentWhileEditingKey"
 25 | private var accessoryViewKey: String = "accessoryViewKey"
 26 | private var editingAccessoryViewKey: String = "editingAccessoryViewKey"
    |             |- warning: var 'editingAccessoryViewKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'editingAccessoryViewKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'editingAccessoryViewKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | private var indentationLevelKey: String = "indentationLevelKey"
 28 | private var indentationWidthKey: String = "indentationWidthKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:27:13: warning: var 'indentationLevelKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | private var accessoryViewKey: String = "accessoryViewKey"
 26 | private var editingAccessoryViewKey: String = "editingAccessoryViewKey"
 27 | private var indentationLevelKey: String = "indentationLevelKey"
    |             |- warning: var 'indentationLevelKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'indentationLevelKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'indentationLevelKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | private var indentationWidthKey: String = "indentationWidthKey"
 29 | private var isEditingKey: String = "isEditingKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:28:13: warning: var 'indentationWidthKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 26 | private var editingAccessoryViewKey: String = "editingAccessoryViewKey"
 27 | private var indentationLevelKey: String = "indentationLevelKey"
 28 | private var indentationWidthKey: String = "indentationWidthKey"
    |             |- warning: var 'indentationWidthKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'indentationWidthKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'indentationWidthKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | private var isEditingKey: String = "isEditingKey"
 30 | private var userInteractionEnabledWhileDraggingKey: String = "userInteractionEnabledWhileDraggingKey"
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:29:13: warning: var 'isEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | private var indentationLevelKey: String = "indentationLevelKey"
 28 | private var indentationWidthKey: String = "indentationWidthKey"
 29 | private var isEditingKey: String = "isEditingKey"
    |             |- warning: var 'isEditingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'isEditingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'isEditingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | private var userInteractionEnabledWhileDraggingKey: String = "userInteractionEnabledWhileDraggingKey"
 31 |
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:30:13: warning: var 'userInteractionEnabledWhileDraggingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 | private var indentationWidthKey: String = "indentationWidthKey"
 29 | private var isEditingKey: String = "isEditingKey"
 30 | private var userInteractionEnabledWhileDraggingKey: String = "userInteractionEnabledWhileDraggingKey"
    |             |- warning: var 'userInteractionEnabledWhileDraggingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'userInteractionEnabledWhileDraggingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'userInteractionEnabledWhileDraggingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 | public extension BindableCollection where Object: UITableViewCell {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:46:36: error: cannot find type 'UIView' in scope
 44 |     }
 45 |
 46 |     var backgroundView: Observable<UIView?> {
    |                                    `- error: cannot find type 'UIView' in scope
 47 |         bindable(of: \.backgroundView, key: &backgroundViewKey)
 48 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:50:44: error: cannot find type 'UIView' in scope
 48 |     }
 49 |
 50 |     var selectedBackgroundView: Observable<UIView?> {
    |                                            `- error: cannot find type 'UIView' in scope
 51 |         bindable(of: \.selectedBackgroundView, key: &selectedBackgroundViewKey)
 52 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:54:53: error: cannot find type 'UIView' in scope
 52 |     }
 53 |
 54 |     var multipleSelectionBackgroundView: Observable<UIView?> {
    |                                                     `- error: cannot find type 'UIView' in scope
 55 |         bindable(of: \.multipleSelectionBackgroundView, key: &multipleSelectionBackgroundViewKey)
 56 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:74:35: error: cannot find type 'UIView' in scope
 72 |     }
 73 |
 74 |     var accessoryView: Observable<UIView?> {
    |                                   `- error: cannot find type 'UIView' in scope
 75 |         bindable(of: \.accessoryView, key: &accessoryViewKey)
 76 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:78:42: error: cannot find type 'UIView' in scope
 76 |     }
 77 |
 78 |     var editingAccessoryView: Observable<UIView?> {
    |                                          `- error: cannot find type 'UIView' in scope
 79 |         bindable(of: \.editingAccessoryView, key: &editingAccessoryViewKey)
 80 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:102:51: error: cannot find type 'UICollectionViewCell' in scope
100 | // MARK: UICollectionViewCell
101 |
102 | public extension BindableCollection where Object: UICollectionViewCell {
    |                                                   `- error: cannot find type 'UICollectionViewCell' in scope
103 |
104 |     // MARK: Two Way Relay
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:107:9: error: invalid redeclaration of 'automaticallyUpdatesContentConfiguration'
105 |
106 |     @available(iOS 14.0, *)
107 |     var automaticallyUpdatesContentConfiguration: Observable<Bool> {
    |         `- error: invalid redeclaration of 'automaticallyUpdatesContentConfiguration'
108 |         bindable(of: \.automaticallyUpdatesContentConfiguration, key: &automaticallyUpdatesContentConfigurationKey)
109 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:111:9: error: invalid redeclaration of 'isSelected'
109 |     }
110 |
111 |     var isSelected: Observable<Bool> {
    |         `- error: invalid redeclaration of 'isSelected'
112 |         bindable(of: \.isSelected, key: &isSelectedKey)
113 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:115:9: error: invalid redeclaration of 'isHighlighted'
113 |     }
114 |
115 |     var isHighlighted: Observable<Bool> {
    |         `- error: invalid redeclaration of 'isHighlighted'
116 |         bindable(of: \.isHighlighted, key: &isHighlightedKey)
117 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:121:9: error: invalid redeclaration of 'automaticallyUpdatesBackgroundConfiguration'
119 |     @available(iOS 14.0, *)
120 |     // swiftlint:disable:next identifier_name
121 |     var automaticallyUpdatesBackgroundConfiguration: Observable<Bool> {
    |         `- error: invalid redeclaration of 'automaticallyUpdatesBackgroundConfiguration'
122 |         bindable(of: \.automaticallyUpdatesBackgroundConfiguration, key: &automaticallyUpdatesBackgroundConfigurationKey)
123 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:125:36: error: cannot find type 'UIView' in scope
123 |     }
124 |
125 |     var backgroundView: Observable<UIView?> {
    |                                    `- error: cannot find type 'UIView' in scope
126 |         bindable(of: \.backgroundView, key: &backgroundViewKey)
127 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift:129:44: error: cannot find type 'UIView' in scope
127 |     }
128 |
129 |     var selectedBackgroundView: Observable<UIView?> {
    |                                            `- error: cannot find type 'UIView' in scope
130 |         bindable(of: \.selectedBackgroundView, key: &selectedBackgroundViewKey)
131 |     }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift:12:46: error: cannot find type 'UIView' in scope
10 | import UIKit
11 |
12 | public extension PopulatedRelays where Self: UIView {
   |                                              `- error: cannot find type 'UIView' in scope
13 |     var bindables: BindableCollection<Self> {
14 |         .init(object: self)
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift:70:5: warning: var 'populatedRelayRetainingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
68 | }
69 |
70 | var populatedRelayRetainingKey: String = "populatedRelayRetainingKey"
   |     |- warning: var 'populatedRelayRetainingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'populatedRelayRetainingKey' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: annotate 'populatedRelayRetainingKey' with '@MainActor' if property should only be accessed from the main actor
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | extension PopulatedRelays {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift:86:13: warning: var 'retainingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 84 | // MARK: Retainable + Extensions
 85 |
 86 | private var retainingKey: String = "retainKey"
    |             |- warning: var 'retainingKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'retainingKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'retainingKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |
 88 | extension Retainable where Self: Invokable {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift:75:24: warning: class property 'current' cannot be used in an '@inlinable' function because 'Chary' was not imported by this file; this is an error in the Swift 6 language mode
 73 |     @inlinable func retain(for timeInterval: TimeInterval) -> Invokable {
 74 |         let discardTime = Date(timeIntervalSinceNow: timeInterval)
 75 |         (DispatchQueue.current ?? .main).asyncAfter(deadline: .now() + timeInterval) { [weak self] in
    |                        |- warning: class property 'current' cannot be used in an '@inlinable' function because 'Chary' was not imported by this file; this is an error in the Swift 6 language mode
    |                        `- note: The missing import of module 'Chary' will be added implicitly
 76 |             self?.discard()
 77 |         }
<unknown>:0: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift:76:13: warning: capture of 'self' with non-sendable type 'Self?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 74 |         let discardTime = Date(timeIntervalSinceNow: timeInterval)
 75 |         (DispatchQueue.current ?? .main).asyncAfter(deadline: .now() + timeInterval) { [weak self] in
 76 |             self?.discard()
    |             `- warning: capture of 'self' with non-sendable type 'Self?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 77 |         }
 78 |         return retainUntil {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift:12:5: warning: var 'controlActionAssociatedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 10 | import UIKit
 11 |
 12 | var controlActionAssociatedKey: String = "controlActionAssociatedKey"
    |     |- warning: var 'controlActionAssociatedKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'controlActionAssociatedKey' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'controlActionAssociatedKey' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 | extension UIControl.Event: Hashable {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift:14:11: error: cannot find type 'UIControl' in scope
 12 | var controlActionAssociatedKey: String = "controlActionAssociatedKey"
 13 |
 14 | extension UIControl.Event: Hashable {
    |           `- error: cannot find type 'UIControl' in scope
 15 |     @inlinable public func hash(into hasher: inout Hasher) {
 16 |         hasher.combine(self.rawValue)
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift:20:11: error: cannot find type 'UIControl' in scope
 18 | }
 19 |
 20 | extension UIControl {
    |           `- error: cannot find type 'UIControl' in scope
 21 |
 22 |     var allEventsPair: [UIControl.Event: Selector] {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift:128:11: error: cannot find type 'UIControl' in scope
126 | }
127 |
128 | extension UIControl {
    |           `- error: cannot find type 'UIControl' in scope
129 |
130 |     @available(*, deprecated, renamed: "observeEventChange")
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:13:29: error: cannot find type 'UIControl' in scope
11 |
12 | class UIControlAction: NSObject {
13 |     @Subject var lastEvent: UIControl.Event = .allEvents
   |                             `- error: cannot find type 'UIControl' in scope
14 |
15 |     @inlinable var eventObservable: Observable<UIControl.Event> {
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:15:48: error: cannot find type 'UIControl' in scope
13 |     @Subject var lastEvent: UIControl.Event = .allEvents
14 |
15 |     @inlinable var eventObservable: Observable<UIControl.Event> {
   |                                                `- error: cannot find type 'UIControl' in scope
16 |         $lastEvent
17 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:19:40: error: cannot find type 'UIControl' in scope
17 |     }
18 |
19 |     @inlinable func invoked(by sender: UIControl, with event: UIControl.Event) {
   |                                        `- error: cannot find type 'UIControl' in scope
20 |         self.lastEvent = event
21 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:19:63: error: cannot find type 'UIControl' in scope
17 |     }
18 |
19 |     @inlinable func invoked(by sender: UIControl, with event: UIControl.Event) {
   |                                                               `- error: cannot find type 'UIControl' in scope
20 |         self.lastEvent = event
21 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:23:37: error: cannot find type 'UIControl' in scope
21 |     }
22 |
23 |     @objc func touchDown(by sender: UIControl) {
   |                                     `- error: cannot find type 'UIControl' in scope
24 |         invoked(by: sender, with: .touchDown)
25 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:27:43: error: cannot find type 'UIControl' in scope
25 |     }
26 |
27 |     @objc func touchDownRepeat(by sender: UIControl) {
   |                                           `- error: cannot find type 'UIControl' in scope
28 |         invoked(by: sender, with: .touchDownRepeat)
29 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:31:43: error: cannot find type 'UIControl' in scope
29 |     }
30 |
31 |     @objc func touchDragInside(by sender: UIControl) {
   |                                           `- error: cannot find type 'UIControl' in scope
32 |         invoked(by: sender, with: .touchDragInside)
33 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:35:44: error: cannot find type 'UIControl' in scope
33 |     }
34 |
35 |     @objc func touchDragOutside(by sender: UIControl) {
   |                                            `- error: cannot find type 'UIControl' in scope
36 |         invoked(by: sender, with: .touchDragOutside)
37 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:39:42: error: cannot find type 'UIControl' in scope
37 |     }
38 |
39 |     @objc func touchDragEnter(by sender: UIControl) {
   |                                          `- error: cannot find type 'UIControl' in scope
40 |         invoked(by: sender, with: .touchDragEnter)
41 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:43:41: error: cannot find type 'UIControl' in scope
41 |     }
42 |
43 |     @objc func touchDragExit(by sender: UIControl) {
   |                                         `- error: cannot find type 'UIControl' in scope
44 |         invoked(by: sender, with: .touchDragExit)
45 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:47:41: error: cannot find type 'UIControl' in scope
45 |     }
46 |
47 |     @objc func touchUpInside(by sender: UIControl) {
   |                                         `- error: cannot find type 'UIControl' in scope
48 |         invoked(by: sender, with: .touchUpInside)
49 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:51:42: error: cannot find type 'UIControl' in scope
49 |     }
50 |
51 |     @objc func touchUpOutside(by sender: UIControl) {
   |                                          `- error: cannot find type 'UIControl' in scope
52 |         invoked(by: sender, with: .touchUpOutside)
53 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:55:39: error: cannot find type 'UIControl' in scope
53 |     }
54 |
55 |     @objc func touchCancel(by sender: UIControl) {
   |                                       `- error: cannot find type 'UIControl' in scope
56 |         invoked(by: sender, with: .touchCancel)
57 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:59:40: error: cannot find type 'UIControl' in scope
57 |     }
58 |
59 |     @objc func valueChanged(by sender: UIControl) {
   |                                        `- error: cannot find type 'UIControl' in scope
60 |         invoked(by: sender, with: .valueChanged)
61 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:63:50: error: cannot find type 'UIControl' in scope
61 |     }
62 |
63 |     @objc func primaryActionTriggered(by sender: UIControl) {
   |                                                  `- error: cannot find type 'UIControl' in scope
64 |         invoked(by: sender, with: .primaryActionTriggered)
65 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:68:47: error: cannot find type 'UIControl' in scope
66 |
67 |     @available(iOS 14.0, *)
68 |     @objc func menuActionTriggered(by sender: UIControl) {
   |                                               `- error: cannot find type 'UIControl' in scope
69 |         invoked(by: sender, with: .menuActionTriggered)
70 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:72:43: error: cannot find type 'UIControl' in scope
70 |     }
71 |
72 |     @objc func editingDidBegin(by sender: UIControl) {
   |                                           `- error: cannot find type 'UIControl' in scope
73 |         invoked(by: sender, with: .editingDidBegin)
74 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:76:42: error: cannot find type 'UIControl' in scope
74 |     }
75 |
76 |     @objc func editingChanged(by sender: UIControl) {
   |                                          `- error: cannot find type 'UIControl' in scope
77 |         invoked(by: sender, with: .editingChanged)
78 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:80:41: error: cannot find type 'UIControl' in scope
78 |     }
79 |
80 |     @objc func editingDidEnd(by sender: UIControl) {
   |                                         `- error: cannot find type 'UIControl' in scope
81 |         invoked(by: sender, with: .editingDidEnd)
82 |     }
/Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift:84:47: error: cannot find type 'UIControl' in scope
82 |     }
83 |
84 |     @objc func editingDidEndOnExit(by sender: UIControl) {
   |                                               `- error: cannot find type 'UIControl' in scope
85 |         invoked(by: sender, with: .editingDidEndOnExit)
86 |     }
SwiftDriverJobDiscovery normal arm64 Compiling Atomic.swift (in target 'Chary' from project 'Chary')
SwiftCompile normal arm64 Compiling\ Observing.swift,\ Unwrapable.swift,\ WrappingObserver.swift,\ BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/AnyObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Changes.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Invokable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/InvokableGroup.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/CombinedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/KVOObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/MergedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/ObservableBlock.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Publisher.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Subject.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+TextInput.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIButton.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UICollectionView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIControl.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIImageView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UILabel.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/ExclusiveRetainableWrapper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/RetainableGroup.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/WeakWrappedObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pharos -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/AnyObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Changes.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Invokable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/InvokableGroup.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/CombinedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/KVOObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/MergedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/ObservableBlock.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Publisher.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Subject.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+TextInput.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIButton.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UICollectionView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIControl.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIImageView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UILabel.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/ExclusiveRetainableWrapper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/RetainableGroup.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/WeakWrappedObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pharos -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/AnyObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Changes.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Invokable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/InvokableGroup.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/CombinedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/KVOObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/MergedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/ObservableBlock.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Publisher.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Subject.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+TextInput.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIButton.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UICollectionView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIControl.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIImageView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UILabel.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/ExclusiveRetainableWrapper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/RetainableGroup.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/WeakWrappedObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pharos -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/AnyObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Changes.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Invokable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/InvokableGroup.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/CombinedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/KVOObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/MergedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/ObservableBlock.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Publisher.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Subject.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+TextInput.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIButton.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UICollectionView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIControl.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIImageView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UILabel.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/ExclusiveRetainableWrapper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/RetainableGroup.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/WeakWrappedObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pharos -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/AnyObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Changes.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Invokable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/InvokableGroup.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Observing.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/Unwrapable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Base/WrappingObserver.swift -primary-file /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/BufferedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/CombinedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/KVOObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/MergedObservable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Observable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/ObservableBlock.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Publisher.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Observable/Subject.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+TextInput.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIButton.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UICollectionView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIControl.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIImageView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UILabel.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIScrollView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISlider.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStackView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIStepper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UISwitch.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UITableView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollection+UIView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/BindableCollectionCellView.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/PopulatedRelays/PopulatedRelays.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/ExclusiveRetainableWrapper.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/Retainable.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/RetainableGroup.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/Retaining/WeakWrappedObserver.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControl+Extensions.swift /Users/admin/builder/spi-builder-workspace/Pharos/Classes/UIControl/UIControlAction.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/supplementaryOutputs-12 -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Pharos -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Observing.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Unwrapable.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/WrappingObserver.o -index-unit-output-path /Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/BufferedObservable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation\ Requirements Pharos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Pharos' from project 'Pharos')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Pharos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pharos.build/Debug-watchos/Pharos.build/Objects-normal/arm64/Pharos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Pharos' from project 'Pharos')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Chary' from project 'Chary')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Pharos' from project 'Pharos')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ Pharos (in target 'Pharos' from project 'Pharos')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ Pharos (in target 'Pharos' from project 'Pharos')
(2 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.