@continuous-excellence/coupling-cli 1.1.418 → 1.1.420

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 (354) hide show
  1. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
  2. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CliScope.mjs +4 -4
  3. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +13 -13
  4. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +3 -3
  5. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
  6. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Welcome.mjs +3 -3
  7. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +14 -13
  8. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs.map +1 -1
  9. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
  10. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +14 -14
  11. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +32 -32
  12. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +15 -15
  13. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
  14. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +373 -0
  15. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs.map +1 -0
  16. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
  17. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +22 -21
  18. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs.map +1 -1
  19. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +61 -105
  20. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs.map +1 -1
  21. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +14 -14
  22. package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +50 -50
  23. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
  24. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
  25. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
  26. package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
  27. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +54 -54
  28. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
  29. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +409 -0
  30. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs.map +1 -0
  31. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +69 -0
  32. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs.map +1 -0
  33. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
  34. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
  35. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
  36. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
  37. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
  38. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +52 -4
  39. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs.map +1 -1
  40. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/PinTarget.mjs +36 -0
  41. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/PinTarget.mjs.map +1 -0
  42. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +118 -0
  43. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs.map +1 -0
  44. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +48 -0
  45. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs.map +1 -0
  46. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +82 -0
  47. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs.map +1 -0
  48. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
  49. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +48 -0
  50. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs.map +1 -0
  51. package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
  52. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +19 -19
  53. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +1 -1
  54. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +19 -19
  55. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +38 -23
  56. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs.map +1 -1
  57. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
  58. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
  59. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +4 -4
  60. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/AvatarTypeMapper.mjs +74 -0
  61. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/AvatarTypeMapper.mjs.map +1 -0
  62. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/BadgeMapper.mjs +34 -0
  63. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/BadgeMapper.mjs.map +1 -0
  64. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +71 -0
  65. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs.map +1 -0
  66. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
  67. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +191 -0
  68. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs.map +1 -0
  69. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
  70. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
  71. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +150 -0
  72. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs.map +1 -0
  73. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +36 -0
  74. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs.map +1 -0
  75. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +14 -14
  76. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
  77. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +6 -6
  78. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
  79. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +246 -0
  80. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs.map +1 -0
  81. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +512 -0
  82. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs.map +1 -0
  83. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
  84. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +25 -25
  85. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +170 -0
  86. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs.map +1 -0
  87. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +110 -0
  88. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs.map +1 -0
  89. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +46 -46
  90. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
  91. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
  92. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +50 -0
  93. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs.map +1 -0
  94. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +50 -0
  95. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs.map +1 -0
  96. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +45 -45
  97. package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +6 -6
  98. package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +2 -2
  99. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +15 -0
  100. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs.map +1 -1
  101. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +38 -38
  102. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +7 -7
  103. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +9 -9
  104. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
  105. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
  106. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +20 -20
  107. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +6 -6
  108. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +1 -1
  109. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +86 -86
  110. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +53 -53
  111. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
  112. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +7 -7
  113. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +65 -65
  114. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +258 -258
  115. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
  116. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +3 -3
  117. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +5 -5
  118. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +28 -28
  119. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +23 -23
  120. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +24 -24
  121. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
  122. package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +39 -39
  123. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +9 -9
  124. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +205 -205
  125. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
  126. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
  127. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +6 -6
  128. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +38 -38
  129. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +31 -31
  130. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +42 -42
  131. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +22 -22
  132. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/is-node.mjs +1 -1
  133. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +17 -17
  134. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
  135. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +21 -21
  136. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
  137. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
  138. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +114 -114
  139. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
  140. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +26 -26
  141. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +142 -142
  142. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +21 -21
  143. package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
  144. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
  145. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +22 -22
  146. package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +45 -45
  147. package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
  148. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +34 -34
  149. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
  150. package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
  151. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +112 -112
  152. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
  153. package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
  154. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +52 -52
  155. package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
  156. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +138 -138
  157. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
  158. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +31 -31
  159. package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
  160. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
  161. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
  162. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
  163. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
  164. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +23 -23
  165. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +211 -211
  166. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
  167. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +4 -4
  168. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
  169. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
  170. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +31 -31
  171. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
  172. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +232 -232
  173. package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
  174. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
  175. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
  176. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
  177. package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
  178. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
  179. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
  180. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
  181. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
  182. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
  183. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
  184. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
  185. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
  186. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
  187. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
  188. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +62 -62
  189. package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
  190. package/kotlin/kotlin-kotlin-stdlib/kotlin/Char.mjs +18 -18
  191. package/kotlin/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +4 -4
  192. package/kotlin/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +2 -2
  193. package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +2 -2
  194. package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +2 -2
  195. package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +2 -2
  196. package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +2 -2
  197. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +3 -3
  198. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +3 -3
  199. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +18 -18
  200. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +3 -3
  201. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +4 -4
  202. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +7 -7
  203. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +1 -1
  204. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +3 -3
  205. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +1 -1
  206. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
  207. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +6 -6
  208. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +1 -1
  209. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +6 -6
  210. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +6 -6
  211. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +1 -1
  212. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +17 -17
  213. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +1 -1
  214. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +2 -2
  215. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +10 -2
  216. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -1
  217. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +5 -5
  218. package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +2 -2
  219. package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +2 -2
  220. package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +3 -3
  221. package/kotlin/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +2 -2
  222. package/kotlin/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +2 -2
  223. package/kotlin/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +14 -14
  224. package/kotlin/kotlin-kotlin-stdlib/kotlin/hacks.mjs +1 -1
  225. package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +11 -11
  226. package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +9 -9
  227. package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +4 -4
  228. package/kotlin/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +2 -2
  229. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +1 -1
  230. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +12 -12
  231. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +1 -1
  232. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +6 -6
  233. package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
  234. package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +1 -1
  235. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
  236. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
  237. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
  238. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
  239. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +22 -22
  240. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
  241. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
  242. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
  243. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
  244. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
  245. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
  246. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
  247. package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
  248. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +8 -8
  249. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1 -1
  250. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
  251. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
  252. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +1 -1
  253. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +1 -1
  254. package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
  255. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +1 -1
  256. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +1 -1
  257. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +1 -1
  258. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +1 -1
  259. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +7 -7
  260. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +2 -2
  261. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +1 -1
  262. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +3 -3
  263. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +1 -1
  264. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +1 -1
  265. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +4 -4
  266. package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +15 -15
  267. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +13 -13
  268. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +1 -1
  269. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +1 -1
  270. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +1 -1
  271. package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +16 -16
  272. package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +1 -1
  273. package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +6 -6
  274. package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +2 -2
  275. package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +2 -2
  276. package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +2 -2
  277. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +5 -5
  278. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
  279. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +1 -1
  280. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +1 -1
  281. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +1 -1
  282. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +1 -1
  283. package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +2 -2
  284. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/KtorMDCContext.jsAndWasmShared.mjs +1 -1
  285. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +4 -4
  286. package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +4 -4
  287. package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +7 -7
  288. package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +1 -1
  289. package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +4 -4
  290. package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +1 -1
  291. package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +2 -2
  292. package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +2 -2
  293. package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +6 -6
  294. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +1 -1
  295. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +3 -3
  296. package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
  297. package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +1 -1
  298. package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +10 -10
  299. package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +6 -6
  300. package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +1 -1
  301. package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +19 -19
  302. package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +7 -7
  303. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
  304. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +42 -42
  305. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
  306. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
  307. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +18 -18
  308. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +65 -65
  309. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
  310. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
  311. package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
  312. package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
  313. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
  314. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +70 -70
  315. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
  316. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +23 -23
  317. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
  318. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
  319. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
  320. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
  321. package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
  322. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
  323. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +267 -267
  324. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
  325. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +152 -152
  326. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
  327. package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
  328. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
  329. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
  330. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +54 -54
  331. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
  332. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
  333. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
  334. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
  335. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
  336. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
  337. package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
  338. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
  339. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
  340. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +59 -59
  341. package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
  342. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
  343. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
  344. package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +4 -4
  345. package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +98 -98
  346. package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
  347. package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +246 -0
  348. package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs.map +1 -0
  349. package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +27 -27
  350. package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +23 -13
  351. package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs.map +1 -1
  352. package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +5 -5
  353. package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +4 -4
  354. package/package.json +1 -1
@@ -107,51 +107,51 @@ function SRGB() {
107
107
  class $ {
108
108
  constructor() {
109
109
  SRGB_instance = this;
110
- this.u61_1 = RGBColorSpaces_getInstance().a62_1;
110
+ this.y65_1 = RGBColorSpaces_getInstance().e66_1;
111
111
  }
112
- t61(r, g, b, alpha) {
113
- return this.u61_1.t61(r, g, b, alpha);
112
+ x65(r, g, b, alpha) {
113
+ return this.y65_1.x65(r, g, b, alpha);
114
114
  }
115
- x62(r, g, b, alpha) {
116
- return this.u61_1.x62(r, g, b, alpha);
115
+ b67(r, g, b, alpha) {
116
+ return this.y65_1.b67(r, g, b, alpha);
117
117
  }
118
- y62(hex) {
119
- return this.u61_1.y62(hex);
118
+ c67(hex) {
119
+ return this.y65_1.c67(hex);
120
120
  }
121
- z62(r, g, b, alpha) {
122
- return this.u61_1.z62(r, g, b, alpha);
121
+ d67(r, g, b, alpha) {
122
+ return this.y65_1.d67(r, g, b, alpha);
123
123
  }
124
- m62() {
125
- return this.u61_1.m62();
124
+ q66() {
125
+ return this.y65_1.q66();
126
126
  }
127
- a63() {
128
- return this.u61_1.a63();
127
+ e67() {
128
+ return this.y65_1.e67();
129
129
  }
130
- b63() {
131
- return this.u61_1.b63();
130
+ f67() {
131
+ return this.y65_1.f67();
132
132
  }
133
- c63() {
134
- return this.u61_1.c63();
133
+ g67() {
134
+ return this.y65_1.g67();
135
135
  }
136
136
  i1() {
137
- return this.u61_1.i1();
137
+ return this.y65_1.i1();
138
138
  }
139
- f61() {
140
- return this.u61_1.f61();
139
+ j65() {
140
+ return this.y65_1.j65();
141
141
  }
142
142
  equals(other) {
143
- return equals(RGBColorSpaces_getInstance().a62_1, other);
143
+ return equals(RGBColorSpaces_getInstance().e66_1, other);
144
144
  }
145
145
  hashCode() {
146
- return hashCode(RGBColorSpaces_getInstance().a62_1);
146
+ return hashCode(RGBColorSpaces_getInstance().e66_1);
147
147
  }
148
148
  toString() {
149
149
  return 'sRGB';
150
150
  }
151
151
  }
152
- protoOf($).h61 = invoke$default;
153
- protoOf($).m61 = invoke$default_0;
154
- protoOf($).i61 = from255$default;
152
+ protoOf($).l65 = invoke$default;
153
+ protoOf($).q65 = invoke$default_0;
154
+ protoOf($).m65 = from255$default;
155
155
  initMetadataForObject($, 'SRGB', VOID, VOID, [RGBColorSpace()]);
156
156
  SRGBClass = $;
157
157
  }
@@ -164,17 +164,17 @@ function SRGB_getInstance() {
164
164
  return SRGB_instance;
165
165
  }
166
166
  function RGBColorSpaces$SRGB$lambda($this$RGBColorSpaceImpl, it) {
167
- return it.d60();
167
+ return it.h64();
168
168
  }
169
169
  function RGBColorSpaces$BT2020$lambda($this$RGBColorSpaceImpl, color) {
170
170
  var tmp;
171
171
  if (color instanceof RGB()) {
172
- tmp = color.g63($this$RGBColorSpaceImpl);
172
+ tmp = color.k67($this$RGBColorSpaceImpl);
173
173
  } else {
174
174
  if (color instanceof ICtCp()) {
175
- tmp = color.z61();
175
+ tmp = color.d66();
176
176
  } else {
177
- tmp = color.e60().m63($this$RGBColorSpaceImpl);
177
+ tmp = color.i64().q67($this$RGBColorSpaceImpl);
178
178
  }
179
179
  }
180
180
  return tmp;
@@ -186,29 +186,29 @@ function RGBColorSpaces() {
186
186
  constructor() {
187
187
  RGBColorSpaces_instance = this;
188
188
  var tmp = this;
189
- var tmp_0 = Illuminant_getInstance().v60_1;
189
+ var tmp_0 = Illuminant_getInstance().z64_1;
190
190
  var tmp_1 = SRGBTransferFunctions_instance;
191
191
  var tmp_2 = get_SRGB_R();
192
192
  var tmp_3 = get_SRGB_G();
193
193
  var tmp_4 = get_SRGB_B();
194
- tmp.a62_1 = new (RGBColorSpaceImpl())('sRGB', tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, RGBColorSpaces$SRGB$lambda);
195
- this.b62_1 = RGBColorSpace_0('Linear sRGB', Illuminant_getInstance().v60_1, LinearTransferFunctions_instance, get_SRGB_R(), get_SRGB_G(), get_SRGB_B());
196
- this.c62_1 = RGBColorSpace_0('ACES2065-1', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP0_R(), get_ACES_AP0_G(), get_ACES_AP0_B());
197
- this.d62_1 = RGBColorSpace_0('ACEScc', get_ACES_WHITE_POINT(), ACESccTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
198
- this.e62_1 = RGBColorSpace_0('ACEScct', get_ACES_WHITE_POINT(), ACEScctTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
199
- this.f62_1 = RGBColorSpace_0('ACEScg', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
200
- this.g62_1 = RGBColorSpace_0('Adobe RGB', Illuminant_getInstance().v60_1, new (GammaTransferFunctions())(2.19921875), xyY().b61(0.64, 0.33), xyY().b61(0.21, 0.71), xyY().b61(0.15, 0.06));
194
+ tmp.e66_1 = new (RGBColorSpaceImpl())('sRGB', tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, RGBColorSpaces$SRGB$lambda);
195
+ this.f66_1 = RGBColorSpace_0('Linear sRGB', Illuminant_getInstance().z64_1, LinearTransferFunctions_instance, get_SRGB_R(), get_SRGB_G(), get_SRGB_B());
196
+ this.g66_1 = RGBColorSpace_0('ACES2065-1', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP0_R(), get_ACES_AP0_G(), get_ACES_AP0_B());
197
+ this.h66_1 = RGBColorSpace_0('ACEScc', get_ACES_WHITE_POINT(), ACESccTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
198
+ this.i66_1 = RGBColorSpace_0('ACEScct', get_ACES_WHITE_POINT(), ACEScctTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
199
+ this.j66_1 = RGBColorSpace_0('ACEScg', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
200
+ this.k66_1 = RGBColorSpace_0('Adobe RGB', Illuminant_getInstance().z64_1, new (GammaTransferFunctions())(2.19921875), xyY().f65(0.64, 0.33), xyY().f65(0.21, 0.71), xyY().f65(0.15, 0.06));
201
201
  var tmp_5 = this;
202
- var tmp_6 = Illuminant_getInstance().v60_1;
202
+ var tmp_6 = Illuminant_getInstance().z64_1;
203
203
  var tmp_7 = BT2020TransferFunctions_getInstance();
204
- var tmp_8 = xyY().b61(0.708, 0.292);
205
- var tmp_9 = xyY().b61(0.17, 0.797);
206
- var tmp_10 = xyY().b61(0.131, 0.046);
207
- tmp_5.h62_1 = new (RGBColorSpaceImpl())('BT.2020', tmp_6, tmp_7, tmp_8, tmp_9, tmp_10, RGBColorSpaces$BT2020$lambda);
208
- this.i62_1 = RGBColorSpace_0('BT.709', Illuminant_getInstance().v60_1, BT709TransferFunctions_getInstance(), xyY().b61(0.64, 0.33), xyY().b61(0.3, 0.6), xyY().b61(0.15, 0.06));
209
- this.j62_1 = RGBColorSpace_0('DCI P3', new (WhitePoint())('DCI P3', xyY().b61(0.314, 0.351)), new (GammaTransferFunctions())(2.6), xyY().b61(0.68, 0.32), xyY().b61(0.265, 0.69), xyY().b61(0.15, 0.06));
210
- this.k62_1 = RGBColorSpace_0('Display P3', Illuminant_getInstance().v60_1, SRGBTransferFunctions_instance, xyY().b61(0.68, 0.32), xyY().b61(0.265, 0.69), xyY().b61(0.15, 0.06));
211
- this.l62_1 = RGBColorSpace_0('ROMM RGB', Illuminant_getInstance().t60_1, ROMMTransferFunctions_instance, xyY().b61(0.7347, 0.2653), xyY().b61(0.1596, 0.8404), xyY().b61(0.0366, 1.0E-4));
204
+ var tmp_8 = xyY().f65(0.708, 0.292);
205
+ var tmp_9 = xyY().f65(0.17, 0.797);
206
+ var tmp_10 = xyY().f65(0.131, 0.046);
207
+ tmp_5.l66_1 = new (RGBColorSpaceImpl())('BT.2020', tmp_6, tmp_7, tmp_8, tmp_9, tmp_10, RGBColorSpaces$BT2020$lambda);
208
+ this.m66_1 = RGBColorSpace_0('BT.709', Illuminant_getInstance().z64_1, BT709TransferFunctions_getInstance(), xyY().f65(0.64, 0.33), xyY().f65(0.3, 0.6), xyY().f65(0.15, 0.06));
209
+ this.n66_1 = RGBColorSpace_0('DCI P3', new (WhitePoint())('DCI P3', xyY().f65(0.314, 0.351)), new (GammaTransferFunctions())(2.6), xyY().f65(0.68, 0.32), xyY().f65(0.265, 0.69), xyY().f65(0.15, 0.06));
210
+ this.o66_1 = RGBColorSpace_0('Display P3', Illuminant_getInstance().z64_1, SRGBTransferFunctions_instance, xyY().f65(0.68, 0.32), xyY().f65(0.265, 0.69), xyY().f65(0.15, 0.06));
211
+ this.p66_1 = RGBColorSpace_0('ROMM RGB', Illuminant_getInstance().x64_1, ROMMTransferFunctions_instance, xyY().f65(0.7347, 0.2653), xyY().f65(0.1596, 0.8404), xyY().f65(0.0366, 1.0E-4));
212
212
  }
213
213
  }
214
214
  initMetadataForObject($, 'RGBColorSpaces');
@@ -227,39 +227,39 @@ function RGBColorSpaceImpl() {
227
227
  if (RGBColorSpaceImplClass === VOID) {
228
228
  class $ {
229
229
  constructor(name, whitePoint, transferFunctions, r, g, b, convertImpl) {
230
- this.t63_1 = name;
231
- this.u63_1 = whitePoint;
232
- this.v63_1 = transferFunctions;
233
- this.w63_1 = r;
234
- this.x63_1 = g;
235
- this.y63_1 = b;
236
- this.z63_1 = convertImpl;
237
- this.a64_1 = zeroOneComponentInfo('RGB');
238
- this.b64_1 = _Matrix___get_rowMajor__impl__vmgxkq(rgbToXyzMatrix(this.u63_1, this.w63_1, this.x63_1, this.y63_1));
239
- this.c64_1 = _Matrix___get_rowMajor__impl__vmgxkq(inverse(_Matrix___init__impl__q3kp4w(this.b64_1)));
230
+ this.x67_1 = name;
231
+ this.y67_1 = whitePoint;
232
+ this.z67_1 = transferFunctions;
233
+ this.a68_1 = r;
234
+ this.b68_1 = g;
235
+ this.c68_1 = b;
236
+ this.d68_1 = convertImpl;
237
+ this.e68_1 = zeroOneComponentInfo('RGB');
238
+ this.f68_1 = _Matrix___get_rowMajor__impl__vmgxkq(rgbToXyzMatrix(this.y67_1, this.a68_1, this.b68_1, this.c68_1));
239
+ this.g68_1 = _Matrix___get_rowMajor__impl__vmgxkq(inverse(_Matrix___init__impl__q3kp4w(this.f68_1)));
240
240
  }
241
241
  i1() {
242
- return this.t63_1;
242
+ return this.x67_1;
243
243
  }
244
- c63() {
245
- return this.u63_1;
244
+ g67() {
245
+ return this.y67_1;
246
246
  }
247
- m62() {
248
- return this.v63_1;
247
+ q66() {
248
+ return this.z67_1;
249
249
  }
250
- f61() {
251
- return this.a64_1;
250
+ j65() {
251
+ return this.e68_1;
252
252
  }
253
- a63() {
254
- return this.b64_1;
253
+ e67() {
254
+ return this.f68_1;
255
255
  }
256
- b63() {
257
- return this.c64_1;
256
+ f67() {
257
+ return this.g68_1;
258
258
  }
259
259
  toString() {
260
- return this.t63_1;
260
+ return this.x67_1;
261
261
  }
262
- t61(r, g, b, alpha) {
262
+ x65(r, g, b, alpha) {
263
263
  return new (RGB())(r, g, b, alpha, this);
264
264
  }
265
265
  equals(other) {
@@ -267,43 +267,43 @@ function RGBColorSpaceImpl() {
267
267
  return true;
268
268
  if (!(!(other == null) ? isInterface(other, RGBColorSpace()) : false))
269
269
  return false;
270
- if (!(this.t63_1 === other.i1()))
270
+ if (!(this.x67_1 === other.i1()))
271
271
  return false;
272
- if (!this.u63_1.equals(other.c63()))
272
+ if (!this.y67_1.equals(other.g67()))
273
273
  return false;
274
- if (!equals(this.v63_1, other.m62()))
274
+ if (!equals(this.z67_1, other.q66()))
275
275
  return false;
276
276
  if (other instanceof RGBColorSpaceImpl()) {
277
- if (!this.w63_1.equals(other.w63_1))
277
+ if (!this.a68_1.equals(other.a68_1))
278
278
  return false;
279
- if (!this.x63_1.equals(other.x63_1))
279
+ if (!this.b68_1.equals(other.b68_1))
280
280
  return false;
281
- if (!this.y63_1.equals(other.y63_1))
281
+ if (!this.c68_1.equals(other.c68_1))
282
282
  return false;
283
283
  } else {
284
- if (!contentEquals(this.b64_1, other.a63()))
284
+ if (!contentEquals(this.f68_1, other.e67()))
285
285
  return false;
286
- if (!contentEquals(this.c64_1, other.b63()))
286
+ if (!contentEquals(this.g68_1, other.f67()))
287
287
  return false;
288
288
  }
289
289
  return true;
290
290
  }
291
291
  hashCode() {
292
- var result = getStringHashCode(this.t63_1);
293
- result = imul(31, result) + this.u63_1.hashCode() | 0;
294
- result = imul(31, result) + hashCode(this.v63_1) | 0;
295
- result = imul(31, result) + this.w63_1.hashCode() | 0;
296
- result = imul(31, result) + this.x63_1.hashCode() | 0;
297
- result = imul(31, result) + this.y63_1.hashCode() | 0;
292
+ var result = getStringHashCode(this.x67_1);
293
+ result = imul(31, result) + this.y67_1.hashCode() | 0;
294
+ result = imul(31, result) + hashCode(this.z67_1) | 0;
295
+ result = imul(31, result) + this.a68_1.hashCode() | 0;
296
+ result = imul(31, result) + this.b68_1.hashCode() | 0;
297
+ result = imul(31, result) + this.c68_1.hashCode() | 0;
298
298
  return result;
299
299
  }
300
300
  }
301
- protoOf($).h61 = invoke$default;
302
- protoOf($).x62 = invoke;
303
- protoOf($).m61 = invoke$default_0;
304
- protoOf($).y62 = invoke_0;
305
- protoOf($).z62 = from255;
306
- protoOf($).i61 = from255$default;
301
+ protoOf($).l65 = invoke$default;
302
+ protoOf($).b67 = invoke;
303
+ protoOf($).q65 = invoke$default_0;
304
+ protoOf($).c67 = invoke_0;
305
+ protoOf($).d67 = from255;
306
+ protoOf($).m65 = from255$default;
307
307
  initMetadataForClass($, 'RGBColorSpaceImpl', VOID, VOID, [RGBColorSpace()]);
308
308
  RGBColorSpaceImplClass = $;
309
309
  }
@@ -313,10 +313,10 @@ var SRGBTransferFunctionsClass;
313
313
  function SRGBTransferFunctions() {
314
314
  if (SRGBTransferFunctionsClass === VOID) {
315
315
  class $ {
316
- w62(x) {
316
+ a67(x) {
317
317
  return x <= 0.0031308 ? x * 12.92 : 1.055 * spow(x, 1 / 2.4) - 0.055;
318
318
  }
319
- v62(x) {
319
+ z66(x) {
320
320
  return x <= 0.04045 ? x / 12.92 : spow_0((x + 0.055) / 1.055, 2.4);
321
321
  }
322
322
  }
@@ -339,18 +339,18 @@ function ACESccTransferFunctions() {
339
339
  class $ {
340
340
  constructor() {
341
341
  ACESccTransferFunctions_instance = this;
342
- this.d64_1 = 3.0517578125E-5;
343
- this.e64_1 = 1.52587890625E-5;
344
- this.f64_1 = -0.3013698630136986;
342
+ this.h68_1 = 3.0517578125E-5;
343
+ this.i68_1 = 1.52587890625E-5;
344
+ this.j68_1 = -0.3013698630136986;
345
345
  var tmp = this;
346
346
  // Inline function 'kotlin.math.log2' call
347
- tmp.g64_1 = (log2(65504.0) + 9.72) / 17.52;
347
+ tmp.k68_1 = (log2(65504.0) + 9.72) / 17.52;
348
348
  }
349
- v62(x) {
349
+ z66(x) {
350
350
  var tmp;
351
351
  if (x <= -0.3013698630136986) {
352
352
  tmp = (spow_0(2.0, x * 17.52 - 9.72) - 1.52587890625E-5) * 2.0;
353
- } else if (x < this.g64_1) {
353
+ } else if (x < this.k68_1) {
354
354
  // Inline function 'kotlin.math.pow' call
355
355
  var x_0 = x * 17.52 - 9.72;
356
356
  tmp = Math.pow(2.0, x_0);
@@ -359,7 +359,7 @@ function ACESccTransferFunctions() {
359
359
  }
360
360
  return tmp;
361
361
  }
362
- w62(x) {
362
+ a67(x) {
363
363
  var tmp;
364
364
  if (x < 3.0517578125E-5) {
365
365
  // Inline function 'kotlin.math.log2' call
@@ -389,17 +389,17 @@ function ACEScctTransferFunctions() {
389
389
  class $ {
390
390
  constructor() {
391
391
  ACEScctTransferFunctions_instance = this;
392
- this.h64_1 = 10.5402377416545;
393
- this.i64_1 = 0.0729055341958355;
392
+ this.l68_1 = 10.5402377416545;
393
+ this.m68_1 = 0.0729055341958355;
394
394
  var tmp = this;
395
395
  // Inline function 'kotlin.math.log2' call
396
- tmp.j64_1 = (log2(65504.0) + 9.72) / 17.52;
396
+ tmp.n68_1 = (log2(65504.0) + 9.72) / 17.52;
397
397
  }
398
- v62(x) {
398
+ z66(x) {
399
399
  var tmp;
400
400
  if (x <= 0.155251141552511) {
401
401
  tmp = (x - 0.0729055341958355) / 10.5402377416545;
402
- } else if (x < this.j64_1) {
402
+ } else if (x < this.n68_1) {
403
403
  // Inline function 'kotlin.math.pow' call
404
404
  var x_0 = x * 17.52 - 9.72;
405
405
  tmp = Math.pow(2.0, x_0);
@@ -408,7 +408,7 @@ function ACEScctTransferFunctions() {
408
408
  }
409
409
  return tmp;
410
410
  }
411
- w62(x) {
411
+ a67(x) {
412
412
  var tmp;
413
413
  if (x < 0.0078125) {
414
414
  tmp = 10.5402377416545 * x + 0.0729055341958355;
@@ -436,16 +436,16 @@ function BT2020TransferFunctions() {
436
436
  class $ {
437
437
  constructor() {
438
438
  BT2020TransferFunctions_instance = this;
439
- this.k64_1 = 1.0993;
440
- this.l64_1 = 0.0181;
439
+ this.o68_1 = 1.0993;
440
+ this.p68_1 = 0.0181;
441
441
  var tmp = this;
442
442
  // Inline function 'kotlin.math.pow' call
443
- tmp.m64_1 = 1.0993 * Math.pow(0.0181, 0.45) - (1.0993 - 1);
443
+ tmp.q68_1 = 1.0993 * Math.pow(0.0181, 0.45) - (1.0993 - 1);
444
444
  }
445
- v62(x) {
446
- return numberToDouble(x < this.m64_1 ? x / 4.5 : spow_0((x + (1.0993 - 1)) / 1.0993, 1 / 0.45));
445
+ z66(x) {
446
+ return numberToDouble(x < this.q68_1 ? x / 4.5 : spow_0((x + (1.0993 - 1)) / 1.0993, 1 / 0.45));
447
447
  }
448
- w62(x) {
448
+ a67(x) {
449
449
  return x < 0.0181 ? 4.5 * x : 1.0993 * spow(x, 0.45) - (1.0993 - 1);
450
450
  }
451
451
  }
@@ -466,12 +466,12 @@ function BT709TransferFunctions() {
466
466
  class $ {
467
467
  constructor() {
468
468
  BT709TransferFunctions_instance = this;
469
- this.n64_1 = 1.099 * spow_0(0.018, 0.45) - 0.099;
469
+ this.r68_1 = 1.099 * spow_0(0.018, 0.45) - 0.099;
470
470
  }
471
- v62(x) {
472
- return numberToDouble(x < this.n64_1 ? x / 4.5 : spow_0((x + 0.099) / 1.099, 1 / 0.45));
471
+ z66(x) {
472
+ return numberToDouble(x < this.r68_1 ? x / 4.5 : spow_0((x + 0.099) / 1.099, 1 / 0.45));
473
473
  }
474
- w62(x) {
474
+ a67(x) {
475
475
  return x < 0.018 ? 4.5 * x : 1.099 * spow(x, 0.45) - 0.099;
476
476
  }
477
477
  }
@@ -491,12 +491,12 @@ function ROMMTransferFunctions() {
491
491
  if (ROMMTransferFunctionsClass === VOID) {
492
492
  class $ {
493
493
  constructor() {
494
- this.o64_1 = 0.001953;
494
+ this.s68_1 = 0.001953;
495
495
  }
496
- v62(x) {
496
+ z66(x) {
497
497
  return x < 16 * 0.001953 ? x / 16.0 : spow(x, 1.8);
498
498
  }
499
- w62(x) {
499
+ a67(x) {
500
500
  return x < 0.001953 ? x * 16.0 : spow(x, 1.0 / 1.8);
501
501
  }
502
502
  }
@@ -511,13 +511,13 @@ function ROMMTransferFunctions_getInstance() {
511
511
  }
512
512
  function rgbToXyzMatrix(whitePoint, r, g, b) {
513
513
  _init_properties_RGBColorSpaces_kt__nc9fsz();
514
- var primaries = _Matrix___init__impl__q3kp4w_0(r.y60_1, g.y60_1, b.y60_1, r.z60_1, g.z60_1, b.z60_1, r.p64(), g.p64(), b.p64());
515
- var wp = whitePoint.p60_1;
514
+ var primaries = _Matrix___init__impl__q3kp4w_0(r.c65_1, g.c65_1, b.c65_1, r.d65_1, g.d65_1, b.d65_1, r.t68(), g.t68(), b.t68());
515
+ var wp = whitePoint.t64_1;
516
516
  var tmp0 = inverse(primaries);
517
- var tmp2 = wp.q64();
518
- var tmp4 = wp.a61_1;
517
+ var tmp2 = wp.u68();
518
+ var tmp4 = wp.e65_1;
519
519
  // Inline function 'com.github.ajalt.colormath.internal.dot' call
520
- var v2 = wp.r64();
520
+ var v2 = wp.v68();
521
521
  var tmp0_0 = Matrix__get_impl_xogbpk(tmp0, 0, 0) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 0) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 0) * v2;
522
522
  var tmp2_0 = Matrix__get_impl_xogbpk(tmp0, 0, 1) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 1) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 1) * v2;
523
523
  var z = Matrix__get_impl_xogbpk(tmp0, 0, 2) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 2) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 2) * v2;
@@ -527,9 +527,9 @@ function RGBColorSpace$lambda($this$RGBColorSpaceImpl, color) {
527
527
  _init_properties_RGBColorSpaces_kt__nc9fsz();
528
528
  var tmp;
529
529
  if (color instanceof RGB()) {
530
- tmp = color.g63($this$RGBColorSpaceImpl);
530
+ tmp = color.k67($this$RGBColorSpaceImpl);
531
531
  } else {
532
- tmp = color.e60().m63($this$RGBColorSpaceImpl);
532
+ tmp = color.i64().q67($this$RGBColorSpaceImpl);
533
533
  }
534
534
  return tmp;
535
535
  }
@@ -537,16 +537,16 @@ var properties_initialized_RGBColorSpaces_kt_fsnpad;
537
537
  function _init_properties_RGBColorSpaces_kt__nc9fsz() {
538
538
  if (!properties_initialized_RGBColorSpaces_kt_fsnpad) {
539
539
  properties_initialized_RGBColorSpaces_kt_fsnpad = true;
540
- SRGB_R = xyY().b61(0.64, 0.33);
541
- SRGB_G = xyY().b61(0.3, 0.6);
542
- SRGB_B = xyY().b61(0.15, 0.06);
543
- ACES_WHITE_POINT = new (WhitePoint())('ACES', xyY().b61(0.32168, 0.33767));
544
- ACES_AP0_R = xyY().b61(0.7347, 0.2653);
545
- ACES_AP0_G = xyY().b61(0.0, 1.0);
546
- ACES_AP0_B = xyY().b61(1.0E-4, -0.077);
547
- ACES_AP1_R = xyY().b61(0.713, 0.293);
548
- ACES_AP1_G = xyY().b61(0.165, 0.83);
549
- ACES_AP1_B = xyY().b61(0.128, 0.044);
540
+ SRGB_R = xyY().f65(0.64, 0.33);
541
+ SRGB_G = xyY().f65(0.3, 0.6);
542
+ SRGB_B = xyY().f65(0.15, 0.06);
543
+ ACES_WHITE_POINT = new (WhitePoint())('ACES', xyY().f65(0.32168, 0.33767));
544
+ ACES_AP0_R = xyY().f65(0.7347, 0.2653);
545
+ ACES_AP0_G = xyY().f65(0.0, 1.0);
546
+ ACES_AP0_B = xyY().f65(1.0E-4, -0.077);
547
+ ACES_AP1_R = xyY().f65(0.713, 0.293);
548
+ ACES_AP1_G = xyY().f65(0.165, 0.83);
549
+ ACES_AP1_B = xyY().f65(0.128, 0.044);
550
550
  }
551
551
  }
552
552
  //region block: init