@szdziedzic/sim-on 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/README.md +51 -0
  2. package/bin/sim-on.js +5 -0
  3. package/dist/simon.mjs +307 -0
  4. package/package.json +38 -0
  5. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/LiveKitWebRTC.h +113 -0
  6. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioBuffer.h +38 -0
  7. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioCustomProcessingDelegate.h +52 -0
  8. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioDeviceModule.h +287 -0
  9. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioProcessingConfig.h +37 -0
  10. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioProcessingModule.h +31 -0
  11. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioProcessingState.h +137 -0
  12. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioRenderer.h +35 -0
  13. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioSource.h +32 -0
  14. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCAudioTrack.h +150 -0
  15. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h +52 -0
  16. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h +41 -0
  17. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h +71 -0
  18. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCertificate.h +47 -0
  19. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h +24 -0
  20. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h +27 -0
  21. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCConfiguration.h +278 -0
  22. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h +66 -0
  23. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDataChannel.h +134 -0
  24. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h +52 -0
  25. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDataPacketCryptor.h +52 -0
  26. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDefaultAudioProcessingModule.h +47 -0
  27. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
  28. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
  29. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDesktopCapturer.h +60 -0
  30. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDesktopMediaList.h +51 -0
  31. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDesktopSource.h +40 -0
  32. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDispatcher.h +46 -0
  33. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCDtmfSender.h +73 -0
  34. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCEncodedImage.h +52 -0
  35. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCFieldTrials.h +34 -0
  36. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCFileLogger.h +75 -0
  37. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h +51 -0
  38. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCFrameCryptor.h +77 -0
  39. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCFrameCryptorKeyProvider.h +76 -0
  40. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h +60 -0
  41. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCI420Buffer.h +22 -0
  42. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCIODevice.h +41 -0
  43. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCIceCandidate.h +50 -0
  44. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCIceCandidateErrorEvent.h +45 -0
  45. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCIceServer.h +114 -0
  46. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h +37 -0
  47. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCLogging.h +66 -0
  48. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h +22 -0
  49. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMTLVideoView.h +63 -0
  50. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMacros.h +69 -0
  51. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h +47 -0
  52. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMediaSource.h +34 -0
  53. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMediaStream.h +50 -0
  54. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h +50 -0
  55. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMetrics.h +24 -0
  56. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h +48 -0
  57. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h +24 -0
  58. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
  59. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h +23 -0
  60. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h +24 -0
  61. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCPeerConnection.h +416 -0
  62. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h +159 -0
  63. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
  64. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h +30 -0
  65. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpCapabilities.h +31 -0
  66. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpCodecCapability.h +58 -0
  67. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h +74 -0
  68. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h +81 -0
  69. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h +33 -0
  70. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtensionCapability.h +39 -0
  71. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpParameters.h +63 -0
  72. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h +105 -0
  73. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpSender.h +55 -0
  74. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpSource.h +66 -0
  75. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h +180 -0
  76. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h +20 -0
  77. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCSSLCertificateVerifier.h +25 -0
  78. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCSessionDescription.h +48 -0
  79. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCStatisticsReport.h +58 -0
  80. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCTracing.h +21 -0
  81. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h +37 -0
  82. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h +43 -0
  83. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h +41 -0
  84. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderAV1.h +25 -0
  85. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h +33 -0
  86. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h +18 -0
  87. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h +18 -0
  88. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h +25 -0
  89. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h +27 -0
  90. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h +62 -0
  91. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderAV1.h +34 -0
  92. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h +78 -0
  93. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h +18 -0
  94. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactorySimulcast.h +16 -0
  95. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h +22 -0
  96. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h +29 -0
  97. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h +42 -0
  98. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderSimulcast.h +13 -0
  99. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h +30 -0
  100. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h +34 -0
  101. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoFrame.h +86 -0
  102. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h +40 -0
  103. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h +44 -0
  104. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoSource.h +37 -0
  105. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoTrack.h +41 -0
  106. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h +39 -0
  107. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCYUVHelper.h +118 -0
  108. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h +46 -0
  109. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/LiveKitWebRTC +0 -0
  110. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Modules/module.modulemap +6 -0
  111. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Resources/Info.plist +36 -0
  112. package/vendor/helper/LiveKitWebRTC.framework/Versions/A/Versions/A/Resources/PrivacyInfo.xcprivacy +32 -0
  113. package/vendor/helper/simon-helper +0 -0
  114. package/vendor/web/app.js +54 -0
  115. package/vendor/web/index.html +15 -0
  116. package/vendor/web/styles.css +435 -0
@@ -0,0 +1,118 @@
1
+ /*
2
+ * Copyright 2016 The WebRTC project authors. All Rights Reserved.
3
+ *
4
+ * Use of this source code is governed by a BSD-style license
5
+ * that can be found in the LICENSE file in the root of the source
6
+ * tree. An additional intellectual property rights grant can be found
7
+ * in the file PATENTS. All contributing project authors may
8
+ * be found in the AUTHORS file in the root of the source tree.
9
+ */
10
+
11
+ #import <Foundation/Foundation.h>
12
+
13
+ #import <LiveKitWebRTC/RTCMacros.h>
14
+ #import <LiveKitWebRTC/RTCVideoFrame.h>
15
+
16
+ RTC_OBJC_EXPORT
17
+ @interface RTC_OBJC_TYPE (RTCYUVHelper) : NSObject
18
+
19
+ - (instancetype)init NS_UNAVAILABLE;
20
+
21
+ + (void)I420Rotate:(const uint8_t*)srcY
22
+ srcStrideY:(int)srcStrideY
23
+ srcU:(const uint8_t*)srcU
24
+ srcStrideU:(int)srcStrideU
25
+ srcV:(const uint8_t*)srcV
26
+ srcStrideV:(int)srcStrideV
27
+ dstY:(uint8_t*)dstY
28
+ dstStrideY:(int)dstStrideY
29
+ dstU:(uint8_t*)dstU
30
+ dstStrideU:(int)dstStrideU
31
+ dstV:(uint8_t*)dstV
32
+ dstStrideV:(int)dstStrideV
33
+ width:(int)width
34
+ height:(int)height
35
+ mode:(RTC_OBJC_TYPE(RTCVideoRotation))mode;
36
+
37
+ + (int)I420ToNV12:(const uint8_t*)srcY
38
+ srcStrideY:(int)srcStrideY
39
+ srcU:(const uint8_t*)srcU
40
+ srcStrideU:(int)srcStrideU
41
+ srcV:(const uint8_t*)srcV
42
+ srcStrideV:(int)srcStrideV
43
+ dstY:(uint8_t*)dstY
44
+ dstStrideY:(int)dstStrideY
45
+ dstUV:(uint8_t*)dstUV
46
+ dstStrideUV:(int)dstStrideUV
47
+ width:(int)width
48
+ height:(int)height;
49
+
50
+ + (int)I420ToNV21:(const uint8_t*)srcY
51
+ srcStrideY:(int)srcStrideY
52
+ srcU:(const uint8_t*)srcU
53
+ srcStrideU:(int)srcStrideU
54
+ srcV:(const uint8_t*)srcV
55
+ srcStrideV:(int)srcStrideV
56
+ dstY:(uint8_t*)dstY
57
+ dstStrideY:(int)dstStrideY
58
+ dstUV:(uint8_t*)dstUV
59
+ dstStrideUV:(int)dstStrideUV
60
+ width:(int)width
61
+ height:(int)height;
62
+
63
+ + (int)I420ToARGB:(const uint8_t*)srcY
64
+ srcStrideY:(int)srcStrideY
65
+ srcU:(const uint8_t*)srcU
66
+ srcStrideU:(int)srcStrideU
67
+ srcV:(const uint8_t*)srcV
68
+ srcStrideV:(int)srcStrideV
69
+ dstARGB:(uint8_t*)dstARGB
70
+ dstStrideARGB:(int)dstStrideARGB
71
+ width:(int)width
72
+ height:(int)height;
73
+
74
+ + (int)I420ToBGRA:(const uint8_t*)srcY
75
+ srcStrideY:(int)srcStrideY
76
+ srcU:(const uint8_t*)srcU
77
+ srcStrideU:(int)srcStrideU
78
+ srcV:(const uint8_t*)srcV
79
+ srcStrideV:(int)srcStrideV
80
+ dstBGRA:(uint8_t*)dstBGRA
81
+ dstStrideBGRA:(int)dstStrideBGRA
82
+ width:(int)width
83
+ height:(int)height;
84
+
85
+ + (int)I420ToABGR:(const uint8_t*)srcY
86
+ srcStrideY:(int)srcStrideY
87
+ srcU:(const uint8_t*)srcU
88
+ srcStrideU:(int)srcStrideU
89
+ srcV:(const uint8_t*)srcV
90
+ srcStrideV:(int)srcStrideV
91
+ dstABGR:(uint8_t*)dstABGR
92
+ dstStrideABGR:(int)dstStrideABGR
93
+ width:(int)width
94
+ height:(int)height;
95
+
96
+ + (int)I420ToRGBA:(const uint8_t*)srcY
97
+ srcStrideY:(int)srcStrideY
98
+ srcU:(const uint8_t*)srcU
99
+ srcStrideU:(int)srcStrideU
100
+ srcV:(const uint8_t*)srcV
101
+ srcStrideV:(int)srcStrideV
102
+ dstRGBA:(uint8_t*)dstRGBA
103
+ dstStrideRGBA:(int)dstStrideRGBA
104
+ width:(int)width
105
+ height:(int)height;
106
+
107
+ + (int)I420ToRGB24:(const uint8_t*)srcY
108
+ srcStrideY:(int)srcStrideY
109
+ srcU:(const uint8_t*)srcU
110
+ srcStrideU:(int)srcStrideU
111
+ srcV:(const uint8_t*)srcV
112
+ srcStrideV:(int)srcStrideV
113
+ dstRGB24:(uint8_t*)dstRGB24
114
+ dstStrideRGB24:(int)dstStrideRGB24
115
+ width:(int)width
116
+ height:(int)height;
117
+
118
+ @end
@@ -0,0 +1,46 @@
1
+ /*
2
+ * Copyright 2018 The WebRTC project authors. All Rights Reserved.
3
+ *
4
+ * Use of this source code is governed by a BSD-style license
5
+ * that can be found in the LICENSE file in the root of the source
6
+ * tree. An additional intellectual property rights grant can be found
7
+ * in the file PATENTS. All contributing project authors may
8
+ * be found in the AUTHORS file in the root of the source tree.
9
+ */
10
+
11
+ #import <AVFoundation/AVFoundation.h>
12
+
13
+ #import <LiveKitWebRTC/RTCVideoFrameBuffer.h>
14
+ #import <LiveKitWebRTC/RTCMacros.h>
15
+
16
+ NS_ASSUME_NONNULL_BEGIN
17
+
18
+ /** Protocol for RTCVideoFrameBuffers containing YUV planar data. */
19
+ RTC_OBJC_EXPORT
20
+ @protocol RTC_OBJC_TYPE
21
+ (RTCYUVPlanarBuffer)<RTC_OBJC_TYPE(RTCVideoFrameBuffer)>
22
+
23
+ @property(nonatomic, readonly) int chromaWidth;
24
+ @property(nonatomic, readonly) int chromaHeight;
25
+ @property(nonatomic, readonly) const uint8_t *dataY;
26
+ @property(nonatomic, readonly) const uint8_t *dataU;
27
+ @property(nonatomic, readonly) const uint8_t *dataV;
28
+ @property(nonatomic, readonly) int strideY;
29
+ @property(nonatomic, readonly) int strideU;
30
+ @property(nonatomic, readonly) int strideV;
31
+
32
+ - (instancetype)initWithWidth:(int)width
33
+ height:(int)height
34
+ dataY:(const uint8_t *)dataY
35
+ dataU:(const uint8_t *)dataU
36
+ dataV:(const uint8_t *)dataV;
37
+ - (instancetype)initWithWidth:(int)width height:(int)height;
38
+ - (instancetype)initWithWidth:(int)width
39
+ height:(int)height
40
+ strideY:(int)strideY
41
+ strideU:(int)strideU
42
+ strideV:(int)strideV;
43
+
44
+ @end
45
+
46
+ NS_ASSUME_NONNULL_END
@@ -0,0 +1,6 @@
1
+ framework module LiveKitWebRTC {
2
+ umbrella header "LiveKitWebRTC.h"
3
+
4
+ export *
5
+ module * { export * }
6
+ }
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>LiveKitWebRTC</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>io.livekit.LiveKitWebRTC</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>LiveKitWebRTC</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>FMWK</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1.0</string>
23
+ <key>DTCompiler</key>
24
+ <string>com.apple.compilers.llvm.clang.1_0</string>
25
+ <key>DTSDKBuild</key>
26
+ <string>25A352</string>
27
+ <key>DTSDKName</key>
28
+ <string>macosx26.0</string>
29
+ <key>DTXcode</key>
30
+ <string>2601</string>
31
+ <key>DTXcodeBuild</key>
32
+ <string>17A400</string>
33
+ <key>NSPrincipalClass</key>
34
+ <string></string>
35
+ </dict>
36
+ </plist>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>NSPrivacyAccessedAPITypes</key>
6
+ <array>
7
+ <dict>
8
+ <key>NSPrivacyAccessedAPIType</key>
9
+ <string>NSPrivacyAccessedAPICategorySystemBootTime</string>
10
+ <key>NSPrivacyAccessedAPITypeReasons</key>
11
+ <array>
12
+ <string>35F9.1</string>
13
+ <string>8FFB.1</string>
14
+ </array>
15
+ </dict>
16
+ <dict>
17
+ <key>NSPrivacyAccessedAPIType</key>
18
+ <string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
19
+ <key>NSPrivacyAccessedAPITypeReasons</key>
20
+ <array>
21
+ <string>C617.1</string>
22
+ </array>
23
+ </dict>
24
+ </array>
25
+ <key>NSPrivacyCollectedDataTypes</key>
26
+ <array/>
27
+ <key>NSPrivacyTracking</key>
28
+ <false/>
29
+ <key>NSPrivacyTrackingDomains</key>
30
+ <array/>
31
+ </dict>
32
+ </plist>
Binary file