@attocash/commons-js 5.4.1 → 6.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 (1439) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +73 -64
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -1
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +20 -24
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -1
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +46 -46
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -1
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +307 -115
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -1
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +152 -71
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -1
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +219 -98
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -1
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +76 -27
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -1
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +287 -101
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -1
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +94 -155
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -1
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +13 -6
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -1
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +61 -40
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -1
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +185 -543
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -1
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +124 -111
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -1
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +188 -177
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -1
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +285 -198
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -1
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
  40. package/{ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map → Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs.map} +1 -1
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +14 -11
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -1
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +77 -162
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -1
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +50 -48
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -1
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +169 -174
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -1
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +16 -16
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -1
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +115 -12
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -1
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +117 -63
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -1
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +46 -46
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -1
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +4 -4
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -1
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +89 -89
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -1
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +128 -371
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -1
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +20 -19
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -1
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
  79. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +0 -35
  80. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -1
  81. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +112 -123
  82. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -1
  83. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +22 -22
  84. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -1
  85. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +22 -22
  86. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -1
  87. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +22 -22
  88. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -1
  89. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +64 -64
  90. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -1
  91. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
  92. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
  93. package/commons-commons-core/cash/atto/commons/{AccountUpdate.js.export.d.ts → AccountUpdate.js.export.d.mts} +1 -1
  94. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +1 -1
  95. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +19 -22
  96. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -1
  97. package/commons-commons-core/cash/atto/commons/{AttoAccount.export.d.ts → AttoAccount.export.d.mts} +14 -10
  98. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +3 -2
  99. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -1
  100. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +165 -175
  101. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -1
  102. package/commons-commons-core/cash/atto/commons/{AttoAccountEntry.export.d.ts → AttoAccountEntry.export.d.mts} +10 -6
  103. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +3 -2
  104. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -1
  105. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +164 -183
  106. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -1
  107. package/commons-commons-core/cash/atto/commons/{AttoAddress.export.d.ts → AttoAddress.export.d.mts} +9 -4
  108. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +5 -2
  109. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -1
  110. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +83 -41
  111. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -1
  112. package/commons-commons-core/cash/atto/commons/{AttoAlgorithm.export.d.ts → AttoAlgorithm.export.d.mts} +5 -2
  113. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +4 -3
  114. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -1
  115. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +21 -21
  116. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -1
  117. package/commons-commons-core/cash/atto/commons/{AttoAmount.export.d.ts → AttoAmount.export.d.mts} +11 -6
  118. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +9 -4
  119. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -1
  120. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +83 -69
  121. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -1
  122. package/commons-commons-core/cash/atto/commons/{AttoBlock.export.d.ts → AttoBlock.export.d.mts} +60 -25
  123. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +12 -11
  124. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -1
  125. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +1131 -1180
  126. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -1
  127. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +16 -16
  128. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -1
  129. package/commons-commons-core/cash/atto/commons/{AttoChallenge.export.d.ts → AttoChallenge.export.d.mts} +5 -1
  130. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +3 -2
  131. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -1
  132. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +16 -16
  133. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -1
  134. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
  135. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
  136. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
  137. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/{AttoHash.export.d.ts → AttoHash.export.d.mts} +6 -2
  139. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +3 -2
  140. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -1
  141. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +35 -35
  142. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -1
  143. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +1 -1
  144. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -1
  145. package/commons-commons-core/cash/atto/commons/{AttoHeight.export.d.ts → AttoHeight.export.d.mts} +10 -5
  146. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +5 -2
  147. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -1
  148. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +54 -47
  149. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -1
  150. package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
  151. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
  152. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
  153. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
  154. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
  156. package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
  158. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
  159. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
  160. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +82 -0
  161. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
  163. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
  164. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
  165. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
  166. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
  167. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
  168. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
  169. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
  170. package/commons-commons-core/cash/atto/commons/{AttoNetwork.export.d.ts → AttoNetwork.export.d.mts} +8 -4
  171. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +8 -7
  172. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -1
  173. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +30 -30
  174. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -1
  175. package/commons-commons-core/cash/atto/commons/{AttoPrivateKey.export.d.ts → AttoPrivateKey.export.d.mts} +7 -3
  176. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +5 -2
  177. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -1
  178. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +8 -8
  179. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -1
  180. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +38 -31
  181. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -1
  182. package/commons-commons-core/cash/atto/commons/{AttoPublicKey.export.d.ts → AttoPublicKey.export.d.mts} +5 -1
  183. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +3 -2
  184. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -1
  185. package/{ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.ts → commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.d.mts} +1 -2
  186. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
  187. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -1
  188. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +29 -29
  189. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -1
  190. package/commons-commons-core/cash/atto/commons/{AttoReceivable.export.d.ts → AttoReceivable.export.d.mts} +9 -4
  191. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +3 -2
  192. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -1
  193. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +148 -133
  194. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -1
  195. package/{commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts → commons-commons-core/cash/atto/commons/AttoSeed.js.export.d.mts} +1 -1
  196. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
  197. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
  198. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
  199. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +29 -4
  200. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -1
  201. package/commons-commons-core/cash/atto/commons/{AttoSignature.export.d.ts → AttoSignature.export.d.mts} +5 -1
  202. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +3 -2
  203. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -1
  204. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -1
  205. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +30 -30
  206. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -1
  207. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +23 -441
  208. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -1
  209. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +19 -135
  210. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -1
  211. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +7 -7
  212. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -1
  213. package/commons-commons-core/cash/atto/commons/{AttoTransaction.export.d.ts → AttoTransaction.export.d.mts} +9 -3
  214. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +3 -2
  215. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -1
  216. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +105 -92
  217. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -1
  218. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
  219. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
  220. package/commons-commons-core/cash/atto/commons/{AttoVersion.export.d.ts → AttoVersion.export.d.mts} +5 -1
  221. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +3 -2
  222. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -1
  223. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +17 -18
  224. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -1
  225. package/commons-commons-core/cash/atto/commons/{AttoVote.export.d.ts → AttoVote.export.d.mts} +9 -5
  226. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +3 -2
  227. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -1
  228. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +105 -111
  229. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -1
  230. package/commons-commons-core/cash/atto/commons/{AttoWork.export.d.ts → AttoWork.export.d.mts} +5 -2
  231. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +3 -2
  232. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -1
  233. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +68 -98
  234. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -1
  235. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
  236. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
  237. package/commons-commons-core/cash/atto/commons/Extensions.mjs +44 -10
  238. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -1
  239. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +14 -14
  240. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -1
  241. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +1 -1
  242. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -1
  243. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
  244. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
  245. package/commons-commons-core.mjs +6 -1
  246. package/commons-commons-core.mjs.map +1 -1
  247. package/commons-commons-js.mjs +0 -1
  248. package/commons-commons-js.mjs.map +1 -1
  249. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
  250. package/{kotlin-kotlin-stdlib/kotlin/Number.mjs.map → commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map} +1 -1
  251. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
  252. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
  253. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
  254. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
  255. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
  256. package/commons-commons-node/cash/atto/commons/node/{AttoNodeOperations.export.d.ts → AttoNodeOperations.export.d.mts} +25 -9
  257. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +6 -5
  258. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -1
  259. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +215 -324
  260. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -1
  261. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +21 -21
  262. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -1
  263. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
  264. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
  265. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
  266. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
  267. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
  268. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
  269. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
  270. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
  271. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
  272. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
  273. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
  274. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
  275. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +251 -0
  276. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
  277. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
  278. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
  279. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
  280. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
  281. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
  282. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
  283. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
  284. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
  285. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
  286. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
  287. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
  288. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
  289. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
  290. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
  291. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
  292. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
  293. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
  294. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
  295. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
  296. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
  297. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
  298. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
  299. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
  300. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
  301. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
  302. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
  303. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
  304. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
  305. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2039 -0
  306. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
  307. package/commons-commons-node-remote.mjs +1 -1
  308. package/commons-commons-node.mjs +7 -0
  309. package/commons-commons-node.mjs.map +1 -1
  310. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs +987 -0
  311. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs.map +1 -0
  312. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.d.mts +24 -0
  313. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs +13 -0
  314. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs.map +1 -0
  315. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs +440 -0
  316. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs.map +1 -0
  317. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.d.mts +8 -0
  318. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.mjs +4 -0
  319. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.d.mts +13 -0
  320. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs +13 -0
  321. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs.map +1 -0
  322. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs +147 -0
  323. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs.map +1 -0
  324. package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs → commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs} +7 -12
  325. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs.map +1 -0
  326. package/commons-commons-wallet.mjs +8 -0
  327. package/{commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map → commons-commons-wallet.mjs.map} +1 -1
  328. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +4 -4
  329. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -1
  330. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
  331. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
  332. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
  333. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
  334. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
  335. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
  336. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
  337. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +95 -143
  338. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -1
  339. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
  340. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
  341. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
  342. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
  343. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
  344. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +149 -260
  345. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -1
  346. package/commons-commons-worker-remote.mjs +1 -1
  347. package/commons-commons-worker.mjs +3 -0
  348. package/commons-commons-worker.mjs.map +1 -1
  349. package/index.d.ts +1 -0
  350. package/index.mjs +1 -0
  351. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +2 -2
  352. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -1
  353. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +18 -18
  354. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -1
  355. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +28 -28
  356. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -1
  357. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +10 -10
  358. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -1
  359. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
  360. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
  361. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +10 -10
  362. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -1
  363. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -1
  364. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +27 -19
  365. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -1
  366. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +9 -136
  367. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -1
  368. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +11 -12
  369. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -1
  370. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +4 -4
  371. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -1
  372. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +21 -24
  373. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -1
  374. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
  375. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -1
  376. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +50 -33
  377. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -1
  378. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +15 -15
  379. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -1
  380. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +50 -33
  381. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -1
  382. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +14 -15
  383. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -1
  384. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +50 -33
  385. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -1
  386. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
  387. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -1
  388. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +50 -33
  389. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -1
  390. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -1
  391. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +54 -41
  392. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -1
  393. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +15 -17
  394. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -1
  395. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +98 -71
  396. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -1
  397. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +81 -80
  398. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -1
  399. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +51 -17
  400. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -1
  401. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +107 -82
  402. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -1
  403. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +35 -35
  404. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -1
  405. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +4 -4
  406. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -1
  407. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +11 -11
  408. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -1
  409. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +264 -219
  410. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -1
  411. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +1 -1
  412. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -1
  413. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +101 -74
  414. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -1
  415. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +1 -3
  416. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -1
  417. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
  418. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
  419. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
  420. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +86 -17
  421. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -1
  422. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +125 -99
  423. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -1
  424. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +37 -37
  425. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -1
  426. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +90 -70
  427. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -1
  428. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +64 -50
  429. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -1
  430. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +31 -28
  431. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -1
  432. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +7 -9
  433. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -1
  434. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +267 -237
  435. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -1
  436. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +5 -5
  437. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +17 -17
  438. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -1
  439. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +8 -8
  440. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -1
  441. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +57 -11
  442. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -1
  443. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +11 -11
  444. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -1
  445. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +4 -4
  446. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -1
  447. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +135 -87
  448. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -1
  449. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +42 -15
  450. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -1
  451. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +6 -20
  452. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -1
  453. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +22 -23
  454. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -1
  455. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +1 -1
  456. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -1
  457. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +165 -140
  458. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
  459. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +67 -68
  460. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -1
  461. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +262 -260
  462. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -1
  463. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +4 -4
  464. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -1
  465. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +13 -13
  466. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -1
  467. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +33 -6
  468. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -1
  469. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +16 -16
  470. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -1
  471. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +5 -5
  472. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -1
  473. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
  474. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +27 -0
  476. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -1
  477. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +3 -3
  478. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -1
  479. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +5 -5
  480. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -1
  481. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +10 -10
  482. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -1
  483. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +43 -44
  484. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -1
  485. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +9 -111
  486. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -1
  487. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
  488. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +5 -7
  490. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -1
  491. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +18 -18
  492. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -1
  493. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +8 -8
  494. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +134 -107
  495. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -1
  496. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +26 -18
  497. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -1
  498. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +116 -116
  499. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -1
  500. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +10 -5
  501. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -1
  502. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
  503. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
  504. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
  505. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +1 -21
  506. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -1
  507. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -1
  508. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +1 -1
  509. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +11 -12
  510. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -1
  511. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -1
  512. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -1
  513. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +4 -3
  514. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -1
  515. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +58 -27
  516. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -1
  517. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -1
  518. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
  519. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
  520. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
  521. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
  522. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
  523. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
  524. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +26 -26
  525. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -1
  526. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
  527. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
  528. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +4 -5
  529. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -1
  530. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +3 -26
  531. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -1
  532. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -1
  533. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +20 -3
  534. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -1
  535. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -1
  536. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +1 -2
  537. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -1
  538. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -1
  539. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +14 -14
  540. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -1
  541. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +14 -14
  542. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -1
  543. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -1
  544. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +105 -13
  545. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -1
  546. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +38 -38
  547. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -1
  548. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +35 -103
  549. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -1
  550. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +28 -62
  551. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -1
  552. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +30 -93
  553. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -1
  554. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +1 -1
  555. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -1
  556. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +1 -1
  557. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -1
  558. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +24 -24
  559. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -1
  560. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +0 -10
  561. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -1
  562. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +21 -25
  563. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -1
  564. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +36 -67
  565. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -1
  566. package/kotlin-kotlin-stdlib/{KTypeHelpers.mjs → kotlin/reflect/js/internal/KTypeHelpers.mjs} +13 -13
  567. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
  568. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +17 -17
  569. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -1
  570. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +18 -16
  571. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -1
  572. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +58 -47
  573. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -1
  574. package/kotlin-kotlin-stdlib/{reflection.mjs → kotlin/reflect/js/internal/reflection.mjs} +7 -47
  575. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
  576. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +43 -43
  577. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -1
  578. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +33 -33
  579. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -1
  580. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +18 -18
  581. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -1
  582. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +1 -1
  583. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -1
  584. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +6 -6
  585. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -1
  586. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +6 -6
  587. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +56 -49
  588. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -1
  589. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +59 -59
  590. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -1
  591. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +26 -28
  592. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -1
  593. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +43 -43
  594. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -1
  595. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +32 -22
  596. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -1
  597. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +397 -412
  598. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -1
  599. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +63 -61
  600. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -1
  601. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -1
  602. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +3 -3
  603. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -1
  604. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +7 -7
  605. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -1
  606. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +33 -33
  607. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
  608. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -1
  609. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -1
  610. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +19 -19
  611. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -1
  612. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +21 -21
  613. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -1
  614. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +36 -36
  615. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
  616. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +54 -54
  617. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -1
  618. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +13 -13
  619. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -1
  620. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +29 -29
  621. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -1
  622. package/{Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime → kotlin-kotlin-stdlib/kotlin/time}/Clock.mjs +6 -6
  623. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
  624. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +144 -118
  625. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -1
  626. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +3 -3
  627. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -1
  628. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +15 -12
  629. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -1
  630. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
  631. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
  632. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
  633. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
  634. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +31 -29
  635. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -1
  636. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +13 -9
  637. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -1
  638. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -1
  639. package/kotlin-kotlin-stdlib/reflectionJs.mjs +2 -2
  640. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -1
  641. package/kotlin-kotlin-stdlib.mjs +7 -0
  642. package/kotlin-kotlin-stdlib.mjs.map +1 -0
  643. package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +30 -0
  644. package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -0
  645. package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +50 -0
  646. package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs.map +1 -0
  647. package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +85 -0
  648. package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -0
  649. package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +49 -0
  650. package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -0
  651. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +80 -0
  652. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -0
  653. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +30 -0
  654. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs.map +1 -0
  655. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
  656. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
  657. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +38 -0
  658. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -0
  659. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +15 -0
  660. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +1 -0
  661. package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +60 -0
  662. package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -0
  663. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +29 -2
  664. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
  665. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
  666. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -1
  667. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +5 -5
  668. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -1
  669. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +51 -0
  670. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs.map +1 -0
  671. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
  672. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -1
  673. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +79 -74
  674. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -1
  675. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -1
  676. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +27 -27
  677. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -1
  678. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +31 -195
  679. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
  680. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +11 -11
  681. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
  682. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +229 -216
  683. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
  684. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +18 -62
  685. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
  686. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +33 -33
  687. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -1
  688. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +10 -28
  689. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -1
  690. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +6 -6
  691. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +19 -19
  692. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -1
  693. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
  694. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +41 -32
  695. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -1
  696. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +8 -3
  697. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -1
  698. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +2 -2
  699. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +47 -30
  700. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
  701. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +51 -51
  702. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -1
  703. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
  704. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +35 -32
  705. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -1
  706. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +2 -2
  707. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +6 -6
  708. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -1
  709. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +10 -10
  710. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -1
  711. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +131 -131
  712. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
  713. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +62 -103
  714. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
  715. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +492 -641
  716. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
  717. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +4 -4
  718. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +14 -14
  719. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
  720. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
  721. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -1
  722. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +2 -153
  723. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -1
  724. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +5 -5
  725. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +746 -1307
  726. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
  727. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +107 -107
  728. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
  729. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +30 -28
  730. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -1
  731. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
  732. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -1
  733. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +20 -21
  734. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -1
  735. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +17 -16
  736. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -1
  737. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +56 -83
  738. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -1
  739. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
  740. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
  741. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +70 -0
  742. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
  743. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +51 -0
  744. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs.map +1 -0
  745. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +118 -0
  746. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
  747. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +249 -0
  748. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs.map +1 -0
  749. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +15 -72
  750. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -1
  751. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
  752. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
  753. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +81 -249
  754. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -1
  755. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +89 -0
  756. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
  757. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +286 -0
  758. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
  759. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +305 -0
  760. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
  761. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +243 -0
  762. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs.map +1 -0
  763. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
  764. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
  765. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +413 -0
  766. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
  767. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
  768. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +20 -4
  769. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -1
  770. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +217 -0
  771. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
  772. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +38 -0
  773. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
  774. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +9 -9
  775. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -1
  776. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +24 -15
  777. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -1
  778. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
  779. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
  780. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
  781. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
  782. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +35 -1
  783. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -1
  784. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +55 -51
  785. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -1
  786. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +5 -5
  787. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +4 -4
  788. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +141 -141
  789. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -1
  790. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +4 -4
  791. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -1
  792. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +33 -33
  793. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -1
  794. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +4 -4
  795. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +30 -30
  796. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -1
  797. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +2 -5
  798. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -1
  799. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
  800. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +10 -8
  801. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -1
  802. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
  803. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +26 -26
  804. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -1
  805. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +15 -19
  806. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -1
  807. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +21 -21
  808. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -1
  809. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
  810. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
  811. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +101 -125
  812. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -1
  813. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +54 -54
  814. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
  815. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
  816. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +14 -14
  817. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +7 -7
  818. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
  819. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +279 -291
  820. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
  821. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +71 -68
  822. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
  823. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
  824. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +35 -31
  825. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
  826. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +79 -79
  827. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
  828. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +200 -204
  829. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
  830. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
  831. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
  832. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +3 -3
  833. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -1
  834. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +69 -63
  835. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
  836. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +109 -100
  837. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
  838. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +5 -2
  839. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -1
  840. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +1 -1
  841. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
  842. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +9 -9
  843. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +47 -49
  844. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -1
  845. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +64 -66
  846. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -1
  847. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +35 -35
  848. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -1
  849. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +136 -138
  850. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -1
  851. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +8 -12
  852. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -1
  853. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
  854. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -1
  855. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +94 -89
  856. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -1
  857. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +56 -56
  858. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -1
  859. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +52 -52
  860. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -1
  861. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +117 -121
  862. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -1
  863. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +110 -110
  864. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -1
  865. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +58 -59
  866. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -1
  867. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +66 -66
  868. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -1
  869. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
  870. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -1
  871. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +2 -2
  872. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -1
  873. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +35 -35
  874. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -1
  875. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +67 -30
  876. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -1
  877. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +78 -78
  878. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -1
  879. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +308 -308
  880. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -1
  881. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +29 -29
  882. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -1
  883. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +42 -46
  884. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -1
  885. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +19 -19
  886. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -1
  887. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -1
  888. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +18 -18
  889. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -1
  890. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +17 -17
  891. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -1
  892. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +44 -44
  893. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -1
  894. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +23 -25
  895. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -1
  896. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +37 -37
  897. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -1
  898. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +62 -60
  899. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -1
  900. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +4 -4
  901. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -1
  902. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +137 -147
  903. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -1
  904. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +10 -10
  905. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -1
  906. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +454 -454
  907. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -1
  908. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +276 -277
  909. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -1
  910. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +109 -112
  911. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -1
  912. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +99 -99
  913. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -1
  914. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +85 -85
  915. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -1
  916. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +55 -55
  917. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -1
  918. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -1
  919. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +2 -4
  920. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -1
  921. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +48 -48
  922. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -1
  923. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
  924. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -1
  925. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +191 -166
  926. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -1
  927. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +281 -283
  928. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -1
  929. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
  930. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -1
  931. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +205 -197
  932. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -1
  933. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
  934. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -1
  935. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +72 -72
  936. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -1
  937. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
  938. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -1
  939. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +46 -46
  940. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -1
  941. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +36 -38
  942. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -1
  943. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +66 -52
  944. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -1
  945. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +19 -19
  946. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -1
  947. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +3 -3
  948. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -1
  949. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
  950. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -1
  951. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +113 -234
  952. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -1
  953. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +13 -13
  954. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -1
  955. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +12 -12
  956. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -1
  957. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +195 -190
  958. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -1
  959. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +142 -142
  960. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -1
  961. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
  962. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -1
  963. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +6 -6
  964. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -1
  965. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +281 -276
  966. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -1
  967. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
  968. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -1
  969. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +1 -1
  970. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -1
  971. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +354 -588
  972. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
  973. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +1 -1
  974. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -1
  975. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
  976. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -1
  977. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +142 -278
  978. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -1
  979. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +49 -49
  980. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -1
  981. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +3 -3
  982. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -1
  983. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +3 -3
  984. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -1
  985. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +43 -43
  986. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -1
  987. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +104 -162
  988. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -1
  989. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +66 -113
  990. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -1
  991. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +4 -14
  992. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -1
  993. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +36 -75
  994. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
  995. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +165 -295
  996. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
  997. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +54 -60
  998. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -1
  999. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +6 -6
  1000. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -1
  1001. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
  1002. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +14 -14
  1003. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -1
  1004. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +57 -57
  1005. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -1
  1006. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -8
  1007. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -1
  1008. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +155 -323
  1009. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
  1010. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +88 -246
  1011. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -1
  1012. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -1
  1013. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +60 -131
  1014. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -1
  1015. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +12 -12
  1016. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
  1017. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +21 -10
  1018. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -1
  1019. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +108 -263
  1020. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -1
  1021. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +105 -155
  1022. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -1
  1023. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +233 -462
  1024. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
  1025. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -1
  1026. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +222 -618
  1027. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -1
  1028. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +5 -5
  1029. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -1
  1030. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +119 -244
  1031. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -1
  1032. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +74 -184
  1033. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
  1034. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +74 -218
  1035. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -1
  1036. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
  1037. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
  1038. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +169 -247
  1039. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
  1040. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +193 -295
  1041. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -1
  1042. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +85 -161
  1043. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
  1044. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
  1045. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -1
  1046. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +15 -11
  1047. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -1
  1048. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +14 -14
  1049. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -1
  1050. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +45 -129
  1051. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -1
  1052. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +26 -26
  1053. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -1
  1054. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +150 -185
  1055. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -1
  1056. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
  1057. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
  1058. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +0 -2
  1059. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -1
  1060. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +128 -213
  1061. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
  1062. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +5 -37
  1063. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -1
  1064. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +18 -18
  1065. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -1
  1066. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +82 -108
  1067. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -1
  1068. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +32 -32
  1069. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -1
  1070. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +2 -2
  1071. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -1
  1072. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +1 -1
  1073. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -1
  1074. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +25 -25
  1075. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -1
  1076. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +71 -156
  1077. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -1
  1078. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +62 -64
  1079. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -1
  1080. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +102 -364
  1081. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -1
  1082. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +60 -170
  1083. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -1
  1084. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
  1085. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -1
  1086. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -6
  1087. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -1
  1088. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -1
  1089. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +11 -11
  1090. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -1
  1091. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
  1092. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -1
  1093. package/ktor-ktor-events/io/ktor/events/Events.mjs +16 -16
  1094. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -1
  1095. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +162 -162
  1096. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -1
  1097. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +121 -121
  1098. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
  1099. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +35 -35
  1100. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -1
  1101. package/ktor-ktor-http/io/ktor/http/Headers.mjs +63 -63
  1102. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -1
  1103. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +117 -118
  1104. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -1
  1105. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +131 -130
  1106. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -1
  1107. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +19 -19
  1108. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -1
  1109. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +14 -17
  1110. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -1
  1111. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +17 -44
  1112. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -1
  1113. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +71 -71
  1114. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -1
  1115. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +18 -16
  1116. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
  1117. package/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
  1118. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -1
  1119. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +96 -96
  1120. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -1
  1121. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +1 -1
  1122. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -1
  1123. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +42 -42
  1124. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
  1125. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +26 -28
  1126. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -1
  1127. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +47 -106
  1128. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -1
  1129. package/ktor-ktor-http/io/ktor/http/Url.mjs +88 -128
  1130. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -1
  1131. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +56 -59
  1132. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -1
  1133. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +10 -10
  1134. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -1
  1135. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +8 -8
  1136. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -1
  1137. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +13 -13
  1138. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -1
  1139. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +6 -7
  1140. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -1
  1141. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +176 -238
  1142. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -1
  1143. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +90 -334
  1144. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -1
  1145. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +239 -580
  1146. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -1
  1147. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +53 -110
  1148. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -1
  1149. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +91 -91
  1150. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -1
  1151. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
  1152. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -1
  1153. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -1
  1154. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +54 -199
  1155. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -1
  1156. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
  1157. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
  1158. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -1
  1159. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +1 -38
  1160. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -1
  1161. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +258 -419
  1162. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -1
  1163. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
  1164. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -1
  1165. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +144 -350
  1166. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -1
  1167. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
  1168. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -1
  1169. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +272 -1739
  1170. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
  1171. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +24 -105
  1172. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -1
  1173. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +118 -356
  1174. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -1
  1175. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +12 -14
  1176. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -1
  1177. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +43 -93
  1178. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -1
  1179. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -1
  1180. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
  1181. package/{ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs → ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs} +3 -3
  1182. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
  1183. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +20 -21
  1184. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -1
  1185. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +19 -19
  1186. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -1
  1187. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +118 -117
  1188. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
  1189. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -1
  1190. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +37 -33
  1191. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -1
  1192. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
  1193. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -1
  1194. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
  1195. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -1
  1196. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +8 -8
  1197. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -1
  1198. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -1
  1199. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
  1200. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -1
  1201. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +2 -1
  1202. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -1
  1203. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -14
  1204. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -1
  1205. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +9 -20
  1206. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -1
  1207. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
  1208. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -1
  1209. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +17 -17
  1210. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
  1211. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
  1212. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -1
  1213. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +29 -29
  1214. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -1
  1215. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +4 -4
  1216. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -1
  1217. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +20 -20
  1218. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -1
  1219. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +99 -270
  1220. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
  1221. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +6 -6
  1222. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -1
  1223. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +216 -564
  1224. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
  1225. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +40 -40
  1226. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -1
  1227. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
  1228. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -1
  1229. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +19 -20
  1230. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -1
  1231. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +15 -15
  1232. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -1
  1233. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +64 -53
  1234. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -1
  1235. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -1
  1236. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -1
  1237. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -1
  1238. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +2 -2
  1239. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -1
  1240. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +70 -55
  1241. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -1
  1242. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +3 -5
  1243. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -1
  1244. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +63 -67
  1245. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -1
  1246. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +3 -3
  1247. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -1
  1248. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +154 -161
  1249. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -1
  1250. package/ktor-ktor-utils/io/ktor/util/Text.mjs +10 -10
  1251. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -1
  1252. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
  1253. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -1
  1254. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +112 -112
  1255. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -1
  1256. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +11 -12
  1257. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -1
  1258. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +23 -23
  1259. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -1
  1260. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +15 -15
  1261. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -1
  1262. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +3 -3
  1263. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -1
  1264. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +45 -106
  1265. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -1
  1266. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +30 -30
  1267. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -1
  1268. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +72 -76
  1269. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -1
  1270. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -1
  1271. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
  1272. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -1
  1273. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -1
  1274. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
  1275. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -1
  1276. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -4
  1277. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -1
  1278. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -1
  1279. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -1
  1280. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +62 -62
  1281. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
  1282. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
  1283. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -1
  1284. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +1 -1
  1285. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -1
  1286. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +22 -32
  1287. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
  1288. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +1 -3
  1289. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
  1290. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +31 -87
  1291. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -1
  1292. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +17 -23
  1293. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -1
  1294. package/package.json +3 -4
  1295. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +0 -1
  1296. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +0 -258
  1297. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +0 -1
  1298. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +0 -24
  1299. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +0 -1
  1300. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +0 -845
  1301. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +0 -1
  1302. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +0 -46
  1303. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +0 -1
  1304. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +0 -53
  1305. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +0 -1
  1306. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +0 -14
  1307. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +0 -12
  1308. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +0 -55
  1309. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +0 -1
  1310. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +0 -54
  1311. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +0 -1
  1312. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +0 -23
  1313. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +0 -4
  1314. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +0 -108
  1315. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +0 -1
  1316. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +0 -2412
  1317. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +0 -1
  1318. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.d.ts +0 -3
  1319. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.mjs +0 -12
  1320. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.mjs +0 -727
  1321. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.mjs.map +0 -1
  1322. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +0 -10
  1323. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +0 -4
  1324. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +0 -12
  1325. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +0 -272
  1326. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +0 -1
  1327. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +0 -1
  1328. package/kotlin-kotlin-stdlib/kotlin/Number.mjs +0 -22
  1329. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +0 -387
  1330. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +0 -1
  1331. package/kotlin-kotlin-stdlib/reflection.mjs.map +0 -1
  1332. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +0 -56
  1333. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +0 -1
  1334. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +0 -381
  1335. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +0 -1
  1336. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +0 -52
  1337. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +0 -1
  1338. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +0 -161
  1339. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +0 -1
  1340. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +0 -39
  1341. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +0 -1
  1342. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +0 -1338
  1343. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +0 -1
  1344. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +0 -122
  1345. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +0 -1
  1346. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +0 -12
  1347. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +0 -1
  1348. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +0 -13
  1349. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +0 -29
  1350. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +0 -1
  1351. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +0 -1339
  1352. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +0 -1
  1353. package/ktor-ktor-client-cio.mjs +0 -12
  1354. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +0 -1
  1355. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +0 -40
  1356. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +0 -1
  1357. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +0 -23
  1358. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +0 -1
  1359. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +0 -46
  1360. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +0 -1
  1361. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +0 -680
  1362. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +0 -1
  1363. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +0 -221
  1364. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +0 -1
  1365. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +0 -171
  1366. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +0 -1
  1367. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +0 -51
  1368. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +0 -1
  1369. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +0 -58
  1370. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +0 -1
  1371. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +0 -28
  1372. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +0 -1
  1373. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +0 -107
  1374. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +0 -1
  1375. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +0 -22
  1376. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +0 -1
  1377. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +0 -22
  1378. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +0 -1
  1379. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +0 -42
  1380. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +0 -1
  1381. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +0 -35
  1382. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +0 -1
  1383. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +0 -107
  1384. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +0 -1
  1385. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +0 -304
  1386. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +0 -1
  1387. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +0 -573
  1388. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +0 -1
  1389. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +0 -26
  1390. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +0 -1
  1391. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +0 -129
  1392. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +0 -1
  1393. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +0 -33
  1394. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +0 -1
  1395. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +0 -71
  1396. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +0 -1
  1397. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +0 -34
  1398. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +0 -1
  1399. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +0 -41
  1400. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +0 -1
  1401. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +0 -56
  1402. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +0 -1
  1403. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +0 -163
  1404. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +0 -1
  1405. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +0 -18
  1406. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +0 -1
  1407. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +0 -99
  1408. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +0 -1
  1409. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +0 -22
  1410. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +0 -33
  1411. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +0 -1
  1412. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +0 -32
  1413. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +0 -1
  1414. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +0 -113
  1415. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +0 -1
  1416. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +0 -11
  1417. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +0 -1
  1418. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +0 -16
  1419. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +0 -1
  1420. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +0 -47
  1421. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +0 -1
  1422. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +0 -47
  1423. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +0 -1
  1424. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +0 -19
  1425. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +0 -1
  1426. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +0 -846
  1427. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +0 -1
  1428. /package/{ktor-ktor-client-cio.mjs.map → commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map} +0 -0
  1429. /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map → commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map} +0 -0
  1430. /package/commons-commons-core/cash/atto/commons/{AttoSigner.js.export.mjs.map → AttoPublicKey.js.export.mjs.map} +0 -0
  1431. /package/commons-commons-core/cash/atto/commons/{AttoSeed.export.d.ts → AttoSeed.export.d.mts} +0 -0
  1432. /package/{commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.mjs.map → commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map} +0 -0
  1433. /package/commons-commons-core/cash/atto/commons/{AttoSocketAddress.export.d.ts → AttoSocketAddress.export.d.mts} +0 -0
  1434. /package/commons-commons-core/cash/atto/commons/{Extensions.export.d.ts → Extensions.export.d.mts} +0 -0
  1435. /package/commons-commons-node/cash/atto/commons/node/{NodeExtensions.export.d.ts → NodeExtensions.export.d.mts} +0 -0
  1436. /package/{ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map → commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs.map} +0 -0
  1437. /package/{commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map → commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.mjs.map} +0 -0
  1438. /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map → kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map} +0 -0
  1439. /package/{ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts → ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.mts} +0 -0
@@ -1,31 +1,23 @@
1
1
  import {
2
- initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
3
- initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
4
- initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
5
- } from '../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
6
- import { VOID3gxj6tk5isa35 as VOID } from '../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
7
- import {
8
- LockFreeLinkedListHeaduwhs9comnpmn as LockFreeLinkedListHead,
9
2
  LockFreeLinkedListNode18403qmazubk5 as LockFreeLinkedListNode,
3
+ LockFreeLinkedListHeaduwhs9comnpmn as LockFreeLinkedListHead,
10
4
  } from './internal/LinkedList.mjs';
11
- import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
12
- import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
13
5
  import {
14
- equals2au1ep9vhcato as equals,
15
- toString1pkumu07cwy4m as toString,
16
- protoOf180f3jzyo7rfj as protoOf,
17
- anyToString3ho3k49fc56mj as anyToString,
18
- } from '../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
6
+ throwUninitializedPropertyAccessExceptionyynx7gkm73wd as throwUninitializedPropertyAccessException,
7
+ THROW_CCE2g6jy02ryeudk as THROW_CCE,
8
+ } from '../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
19
9
  import {
20
- get_DEBUG1a8uv2i5oid01 as get_DEBUG,
21
10
  get_classSimpleName2jgk6lzg9ft1 as get_classSimpleName,
22
11
  get_hexAddress1mxa7txdmiojm as get_hexAddress,
12
+ get_DEBUG1a8uv2i5oid01 as get_DEBUG,
23
13
  } from './Debug.mjs';
24
14
  import {
25
- throwUninitializedPropertyAccessExceptionyynx7gkm73wd as throwUninitializedPropertyAccessException,
26
- THROW_CCE2g6jy02ryeudk as THROW_CCE,
27
- } from '../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
15
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
16
+ initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
17
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
18
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
28
19
  import { ArrayList3it5z8td81qkl as ArrayList } from '../../../kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs';
20
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
29
21
  import { CompletedExceptionally3itrk74dxkv9s as CompletedExceptionally } from './CompletionState.mjs';
30
22
  import { JobCancellationException2g3wpni5v5fkt as JobCancellationException } from './Exceptions.mjs';
31
23
  import { CancellationException3b36o9qz53rgr as CancellationException } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs';
@@ -44,6 +36,12 @@ import {
44
36
  Job29shfjfygy86k as Job,
45
37
  } from './Job.mjs';
46
38
  import { CompletionHandlerException1h8udyjlr1wky as CompletionHandlerException } from './Exceptions.common.mjs';
39
+ import {
40
+ equals2au1ep9vhcato as equals,
41
+ toString1pkumu07cwy4m as toString,
42
+ protoOf180f3jzyo7rfj as protoOf,
43
+ anyToString3ho3k49fc56mj as anyToString,
44
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
47
45
  import { isInterface3d6p8outrmvmk as isInterface } from '../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
48
46
  import { intercepted2ogpsikxxj4u0 as intercepted } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
49
47
  import { CancellableContinuationImpl1cx201opicavg as CancellableContinuationImpl } from './CancellableContinuationImpl.mjs';
@@ -55,24 +53,19 @@ import {
55
53
  atomic$ref$130aurmcwdfdf1 as atomic$ref$1,
56
54
  } from '../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
57
55
  import { toString30pk9tzaqopn as toString_0 } from '../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
58
- import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
59
- import {
60
- SequenceScope1coiso86pqzq2 as SequenceScope,
61
- sequence2vgswtrxvqoa7 as sequence,
62
- } from '../../../kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs';
63
- import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
64
56
  import {
65
57
  plusolev77jfy5r9 as plus,
66
58
  get6d5x931vk0s as get,
67
59
  fold36i9psb7d5v48 as fold,
68
60
  minusKeyyqanvso9aovh as minusKey,
69
61
  } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs';
62
+ import { CompletableJob1w6swnu15iclo as CompletableJob } from './CompletableJob.mjs';
63
+ import { StringBuildermazzzhj6kkai as StringBuilder } from '../../../kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs';
70
64
  import {
71
65
  Companion_instance2oawqq9qiaris as Companion_instance,
72
66
  _Result___init__impl__xyqfz83hut4nr3dfvi3 as _Result___init__impl__xyqfz8,
73
67
  createFailure8paxfkfa5dc7 as createFailure,
74
68
  } from '../../../kotlin-kotlin-stdlib/kotlin/Result.mjs';
75
- import { CompletableJob1w6swnu15iclo as CompletableJob } from './CompletableJob.mjs';
76
69
  import { Symbol17xuwzgi5g8ve as Symbol } from './internal/Symbol.mjs';
77
70
  //region block: imports
78
71
  //endregion
@@ -113,103 +106,29 @@ function get_EMPTY_ACTIVE() {
113
106
  return EMPTY_ACTIVE;
114
107
  }
115
108
  var EMPTY_ACTIVE;
116
- var EmptyClass;
117
- function Empty() {
118
- if (EmptyClass === VOID) {
119
- class $ {
120
- constructor(isActive) {
121
- this.q26_1 = isActive;
122
- }
123
- t1x() {
124
- return this.q26_1;
125
- }
126
- j24() {
127
- return null;
128
- }
129
- toString() {
130
- return 'Empty{' + (this.q26_1 ? 'Active' : 'New') + '}';
131
- }
132
- }
133
- initMetadataForClass($, 'Empty', VOID, VOID, [Incomplete()]);
134
- EmptyClass = $;
135
- }
136
- return EmptyClass;
137
- }
138
- var IncompleteClass;
139
- function Incomplete() {
140
- if (IncompleteClass === VOID) {
141
- class $ {}
142
- initMetadataForInterface($, 'Incomplete');
143
- IncompleteClass = $;
144
- }
145
- return IncompleteClass;
146
- }
147
- var NodeListClass;
148
- function NodeList() {
149
- if (NodeListClass === VOID) {
150
- class $ extends LockFreeLinkedListHead() {
151
- t1x() {
152
- return true;
153
- }
154
- j24() {
155
- return this;
156
- }
157
- u26(state) {
158
- // Inline function 'kotlin.text.buildString' call
159
- // Inline function 'kotlin.apply' call
160
- var this_0 = StringBuilder().a1();
161
- this_0.jb('List{');
162
- this_0.jb(state);
163
- this_0.jb('}[');
164
- var first = true;
165
- // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
166
- var cur = this.k24_1;
167
- while (!equals(cur, this)) {
168
- var node = cur;
169
- if (node instanceof JobNode()) {
170
- if (first) {
171
- first = false;
172
- } else
173
- this_0.jb(', ');
174
- this_0.ib(node);
175
- }
176
- cur = cur.k24_1;
177
- }
178
- this_0.jb(']');
179
- return this_0.toString();
180
- }
181
- toString() {
182
- return get_DEBUG() ? this.u26('Active') : super.toString();
183
- }
184
- }
185
- initMetadataForClass($, 'NodeList', NodeList, VOID, [LockFreeLinkedListHead(), Incomplete()]);
186
- NodeListClass = $;
187
- }
188
- return NodeListClass;
189
- }
190
109
  var JobNodeClass;
191
110
  function JobNode() {
192
111
  if (JobNodeClass === VOID) {
193
112
  class $ extends LockFreeLinkedListNode() {
194
- i24() {
195
- var tmp = this.h24_1;
113
+ m10() {
114
+ var tmp = this.l10_1;
196
115
  if (!(tmp == null))
197
116
  return tmp;
198
117
  else {
199
118
  throwUninitializedPropertyAccessException('job');
200
119
  }
201
120
  }
202
- t1x() {
121
+ qu() {
203
122
  return true;
204
123
  }
205
- j24() {
124
+ n10() {
206
125
  return null;
207
126
  }
208
- u21() {
209
- return this.i24().a1z(this);
127
+ wx() {
128
+ return this.m10().xv(this);
210
129
  }
211
130
  toString() {
212
- return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.i24()) + ']';
131
+ return get_classSimpleName(this) + '@' + get_hexAddress(this) + '[job@' + get_hexAddress(this.m10()) + ']';
213
132
  }
214
133
  }
215
134
  initMetadataForClass($, 'JobNode', VOID, VOID, [LockFreeLinkedListNode(), Incomplete()]);
@@ -217,26 +136,32 @@ function JobNode() {
217
136
  }
218
137
  return JobNodeClass;
219
138
  }
139
+ function unboxState(_this__u8e3s4) {
140
+ _init_properties_JobSupport_kt__68f172();
141
+ var tmp0_safe_receiver = _this__u8e3s4 instanceof IncompleteStateBox() ? _this__u8e3s4 : null;
142
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.e12_1;
143
+ return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
144
+ }
220
145
  function _set_exceptionsHolder__tqm22h($this, value) {
221
- $this.z26_1.kotlinx$atomicfu$value = value;
146
+ $this.i12_1.kotlinx$atomicfu$value = value;
222
147
  }
223
148
  function _get_exceptionsHolder__nhszp($this) {
224
- return $this.z26_1.kotlinx$atomicfu$value;
149
+ return $this.i12_1.kotlinx$atomicfu$value;
225
150
  }
226
151
  function allocateList($this) {
227
- return ArrayList().c1(4);
152
+ return ArrayList().u(4);
228
153
  }
229
154
  function finalizeFinishingState($this, state, proposedUpdate) {
230
155
  // Inline function 'kotlinx.coroutines.assert' call
231
156
  // Inline function 'kotlinx.coroutines.assert' call
232
157
  // Inline function 'kotlinx.coroutines.assert' call
233
158
  var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
234
- var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
159
+ var proposedException = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.vu_1;
235
160
  var wasCancelling;
236
161
  // Inline function 'kotlinx.coroutines.internal.synchronized' call
237
162
  // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
238
- wasCancelling = state.a27();
239
- var exceptions = state.b27(proposedException);
163
+ wasCancelling = state.j12();
164
+ var exceptions = state.k12(proposedException);
240
165
  var finalCause = getFinalRootCause($this, state, exceptions);
241
166
  if (!(finalCause == null)) {
242
167
  addSuppressedExceptions($this, finalCause, exceptions);
@@ -244,34 +169,34 @@ function finalizeFinishingState($this, state, proposedUpdate) {
244
169
  var finalException = finalCause;
245
170
  var finalState = finalException == null ? proposedUpdate : finalException === proposedException ? proposedUpdate : new (CompletedExceptionally())(finalException);
246
171
  if (!(finalException == null)) {
247
- var handled = cancelParent($this, finalException) || $this.q1z(finalException);
172
+ var handled = cancelParent($this, finalException) || $this.mw(finalException);
248
173
  if (handled) {
249
- (finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).x22();
174
+ (finalState instanceof CompletedExceptionally() ? finalState : THROW_CCE()).az();
250
175
  }
251
176
  }
252
177
  if (!wasCancelling) {
253
- $this.n1z(finalException);
178
+ $this.jw(finalException);
254
179
  }
255
- $this.x1x(finalState);
256
- var casSuccess = $this.m1x_1.atomicfu$compareAndSet(state, boxIncomplete(finalState));
180
+ $this.uu(finalState);
181
+ var casSuccess = $this.ju_1.atomicfu$compareAndSet(state, boxIncomplete(finalState));
257
182
  // Inline function 'kotlinx.coroutines.assert' call
258
183
  completeStateFinalization($this, state, finalState);
259
184
  return finalState;
260
185
  }
261
186
  function getFinalRootCause($this, state, exceptions) {
262
- if (exceptions.j()) {
263
- if (state.a27()) {
187
+ if (exceptions.o()) {
188
+ if (state.j12()) {
264
189
  // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
265
- return JobCancellationException().i27(null == null ? $this.w1x() : null, null, $this);
190
+ return JobCancellationException().r12(null == null ? $this.tu() : null, null, $this);
266
191
  }
267
192
  return null;
268
193
  }
269
194
  var tmp$ret$2;
270
195
  $l$block: {
271
196
  // Inline function 'kotlin.collections.firstOrNull' call
272
- var _iterator__ex2g4s = exceptions.d1();
273
- while (_iterator__ex2g4s.e1()) {
274
- var element = _iterator__ex2g4s.f1();
197
+ var _iterator__ex2g4s = exceptions.k1();
198
+ while (_iterator__ex2g4s.l1()) {
199
+ var element = _iterator__ex2g4s.m1();
275
200
  if (!(element instanceof CancellationException())) {
276
201
  tmp$ret$2 = element;
277
202
  break $l$block;
@@ -282,14 +207,14 @@ function getFinalRootCause($this, state, exceptions) {
282
207
  var firstNonCancellation = tmp$ret$2;
283
208
  if (!(firstNonCancellation == null))
284
209
  return firstNonCancellation;
285
- var first = exceptions.j1(0);
210
+ var first = exceptions.o1(0);
286
211
  if (first instanceof TimeoutCancellationException()) {
287
212
  var tmp$ret$4;
288
213
  $l$block_0: {
289
214
  // Inline function 'kotlin.collections.firstOrNull' call
290
- var _iterator__ex2g4s_0 = exceptions.d1();
291
- while (_iterator__ex2g4s_0.e1()) {
292
- var element_0 = _iterator__ex2g4s_0.f1();
215
+ var _iterator__ex2g4s_0 = exceptions.k1();
216
+ while (_iterator__ex2g4s_0.l1()) {
217
+ var element_0 = _iterator__ex2g4s_0.m1();
293
218
  var tmp;
294
219
  if (!(element_0 === first)) {
295
220
  tmp = element_0 instanceof TimeoutCancellationException();
@@ -310,13 +235,13 @@ function getFinalRootCause($this, state, exceptions) {
310
235
  return first;
311
236
  }
312
237
  function addSuppressedExceptions($this, rootCause, exceptions) {
313
- if (exceptions.i1() <= 1)
238
+ if (exceptions.n1() <= 1)
314
239
  return Unit_instance;
315
- var seenExceptions = identitySet(exceptions.i1());
240
+ var seenExceptions = identitySet(exceptions.n1());
316
241
  var unwrappedCause = unwrap(rootCause);
317
- var _iterator__ex2g4s = exceptions.d1();
318
- while (_iterator__ex2g4s.e1()) {
319
- var exception = _iterator__ex2g4s.f1();
242
+ var _iterator__ex2g4s = exceptions.k1();
243
+ while (_iterator__ex2g4s.l1()) {
244
+ var exception = _iterator__ex2g4s.m1();
320
245
  var unwrapped = unwrap(exception);
321
246
  var tmp;
322
247
  var tmp_0;
@@ -326,7 +251,7 @@ function addSuppressedExceptions($this, rootCause, exceptions) {
326
251
  tmp_0 = false;
327
252
  }
328
253
  if (tmp_0) {
329
- tmp = seenExceptions.m(unwrapped);
254
+ tmp = seenExceptions.v(unwrapped);
330
255
  } else {
331
256
  tmp = false;
332
257
  }
@@ -338,37 +263,37 @@ function addSuppressedExceptions($this, rootCause, exceptions) {
338
263
  function tryFinalizeSimpleState($this, state, update) {
339
264
  // Inline function 'kotlinx.coroutines.assert' call
340
265
  // Inline function 'kotlinx.coroutines.assert' call
341
- if (!$this.m1x_1.atomicfu$compareAndSet(state, boxIncomplete(update)))
266
+ if (!$this.ju_1.atomicfu$compareAndSet(state, boxIncomplete(update)))
342
267
  return false;
343
- $this.n1z(null);
344
- $this.x1x(update);
268
+ $this.jw(null);
269
+ $this.uu(update);
345
270
  completeStateFinalization($this, state, update);
346
271
  return true;
347
272
  }
348
273
  function completeStateFinalization($this, state, update) {
349
- var tmp0_safe_receiver = $this.l1y();
274
+ var tmp0_safe_receiver = $this.iv();
350
275
  if (tmp0_safe_receiver == null)
351
276
  null;
352
277
  else {
353
278
  // Inline function 'kotlin.let' call
354
- tmp0_safe_receiver.u21();
355
- $this.k1y(NonDisposableHandle_instance);
279
+ tmp0_safe_receiver.wx();
280
+ $this.hv(NonDisposableHandle_instance);
356
281
  }
357
282
  var tmp1_safe_receiver = update instanceof CompletedExceptionally() ? update : null;
358
- var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.y1x_1;
283
+ var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.vu_1;
359
284
  if (state instanceof JobNode()) {
360
285
  try {
361
- state.t21(cause);
286
+ state.vx(cause);
362
287
  } catch ($p) {
363
288
  if ($p instanceof Error) {
364
289
  var ex = $p;
365
- $this.e1y(CompletionHandlerException().o22('Exception in completion handler ' + state.toString() + ' for ' + $this.toString(), ex));
290
+ $this.bv(CompletionHandlerException().ry('Exception in completion handler ' + state.toString() + ' for ' + $this.toString(), ex));
366
291
  } else {
367
292
  throw $p;
368
293
  }
369
294
  }
370
295
  } else {
371
- var tmp2_safe_receiver = state.j24();
296
+ var tmp2_safe_receiver = state.n10();
372
297
  if (tmp2_safe_receiver == null)
373
298
  null;
374
299
  else {
@@ -377,23 +302,23 @@ function completeStateFinalization($this, state, update) {
377
302
  }
378
303
  }
379
304
  function notifyCancelling($this, list, cause) {
380
- $this.n1z(cause);
381
- list.v26(4);
305
+ $this.jw(cause);
306
+ list.s12(4);
382
307
  // Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
383
308
  var exception = null;
384
309
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
385
- var cur = list.k24_1;
310
+ var cur = list.o10_1;
386
311
  while (!equals(cur, list)) {
387
312
  var node = cur;
388
313
  var tmp;
389
314
  if (node instanceof JobNode()) {
390
- tmp = node.d24();
315
+ tmp = node.h10();
391
316
  } else {
392
317
  tmp = false;
393
318
  }
394
319
  if (tmp) {
395
320
  try {
396
- node.t21(cause);
321
+ node.vx(cause);
397
322
  } catch ($p) {
398
323
  if ($p instanceof Error) {
399
324
  var ex = $p;
@@ -408,40 +333,40 @@ function notifyCancelling($this, list, cause) {
408
333
  }
409
334
  if (tmp_0 == null) {
410
335
  // Inline function 'kotlin.run' call
411
- exception = CompletionHandlerException().o22('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
336
+ exception = CompletionHandlerException().ry('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
412
337
  }
413
338
  } else {
414
339
  throw $p;
415
340
  }
416
341
  }
417
342
  }
418
- cur = cur.k24_1;
343
+ cur = cur.o10_1;
419
344
  }
420
345
  var tmp0_safe_receiver_0 = exception;
421
346
  if (tmp0_safe_receiver_0 == null)
422
347
  null;
423
348
  else {
424
349
  // Inline function 'kotlin.let' call
425
- $this.e1y(tmp0_safe_receiver_0);
350
+ $this.bv(tmp0_safe_receiver_0);
426
351
  }
427
352
  cancelParent($this, cause);
428
353
  }
429
354
  function cancelParent($this, cause) {
430
- if ($this.o1z())
355
+ if ($this.kw())
431
356
  return true;
432
357
  var isCancellation = cause instanceof CancellationException();
433
- var parent = $this.l1y();
358
+ var parent = $this.iv();
434
359
  if (parent === null || parent === NonDisposableHandle_instance) {
435
360
  return isCancellation;
436
361
  }
437
- return parent.g1z(cause) || isCancellation;
362
+ return parent.dw(cause) || isCancellation;
438
363
  }
439
364
  function notifyCompletion($this, _this__u8e3s4, cause) {
440
- _this__u8e3s4.v26(1);
365
+ _this__u8e3s4.s12(1);
441
366
  // Inline function 'kotlinx.coroutines.JobSupport.notifyHandlers' call
442
367
  var exception = null;
443
368
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
444
- var cur = _this__u8e3s4.k24_1;
369
+ var cur = _this__u8e3s4.o10_1;
445
370
  while (!equals(cur, _this__u8e3s4)) {
446
371
  var node = cur;
447
372
  var tmp;
@@ -452,7 +377,7 @@ function notifyCompletion($this, _this__u8e3s4, cause) {
452
377
  }
453
378
  if (tmp) {
454
379
  try {
455
- node.t21(cause);
380
+ node.vx(cause);
456
381
  } catch ($p) {
457
382
  if ($p instanceof Error) {
458
383
  var ex = $p;
@@ -467,36 +392,36 @@ function notifyCompletion($this, _this__u8e3s4, cause) {
467
392
  }
468
393
  if (tmp_0 == null) {
469
394
  // Inline function 'kotlin.run' call
470
- exception = CompletionHandlerException().o22('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
395
+ exception = CompletionHandlerException().ry('Exception in completion handler ' + node.toString() + ' for ' + $this.toString(), ex);
471
396
  }
472
397
  } else {
473
398
  throw $p;
474
399
  }
475
400
  }
476
401
  }
477
- cur = cur.k24_1;
402
+ cur = cur.o10_1;
478
403
  }
479
404
  var tmp0_safe_receiver_0 = exception;
480
405
  if (tmp0_safe_receiver_0 == null)
481
406
  null;
482
407
  else {
483
408
  // Inline function 'kotlin.let' call
484
- $this.e1y(tmp0_safe_receiver_0);
409
+ $this.bv(tmp0_safe_receiver_0);
485
410
  }
486
411
  }
487
412
  function startInternal($this, state) {
488
413
  if (state instanceof Empty()) {
489
- if (state.q26_1)
414
+ if (state.u12_1)
490
415
  return 0;
491
- if (!$this.m1x_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
416
+ if (!$this.ju_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
492
417
  return -1;
493
- $this.r1y();
418
+ $this.ov();
494
419
  return 1;
495
420
  } else {
496
421
  if (state instanceof InactiveNodeList()) {
497
- if (!$this.m1x_1.atomicfu$compareAndSet(state, state.j27_1))
422
+ if (!$this.ju_1.atomicfu$compareAndSet(state, state.t12_1))
498
423
  return -1;
499
- $this.r1y();
424
+ $this.ov();
500
425
  return 1;
501
426
  } else {
502
427
  return 0;
@@ -505,19 +430,19 @@ function startInternal($this, state) {
505
430
  }
506
431
  function promoteEmptyToNodeList($this, state) {
507
432
  var list = new (NodeList())();
508
- var update = state.q26_1 ? list : new (InactiveNodeList())(list);
509
- $this.m1x_1.atomicfu$compareAndSet(state, update);
433
+ var update = state.u12_1 ? list : new (InactiveNodeList())(list);
434
+ $this.ju_1.atomicfu$compareAndSet(state, update);
510
435
  }
511
436
  function promoteSingleToNodeList($this, state) {
512
- state.p24(new (NodeList())());
437
+ state.t10(new (NodeList())());
513
438
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
514
- var list = state.k24_1;
515
- $this.m1x_1.atomicfu$compareAndSet(state, list);
439
+ var list = state.o10_1;
440
+ $this.ju_1.atomicfu$compareAndSet(state, list);
516
441
  }
517
442
  function joinInternal($this) {
518
443
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
519
444
  while (true) {
520
- var state = $this.n1y();
445
+ var state = $this.kv();
521
446
  if (!(!(state == null) ? isInterface(state, Incomplete()) : false))
522
447
  return false;
523
448
  if (startInternal($this, state) >= 0)
@@ -526,21 +451,21 @@ function joinInternal($this) {
526
451
  }
527
452
  function joinSuspend($this, $completion) {
528
453
  var cancellable = new (CancellableContinuationImpl())(intercepted($completion), 1);
529
- cancellable.a23();
454
+ cancellable.dz();
530
455
  disposeOnCancellation(cancellable, invokeOnCompletion($this, VOID, new (ResumeOnCompletion())(cancellable)));
531
- return cancellable.b20();
456
+ return cancellable.lz();
532
457
  }
533
458
  function cancelMakeCompleting($this, cause) {
534
459
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
535
460
  while (true) {
536
- var state = $this.n1y();
461
+ var state = $this.kv();
537
462
  var tmp;
538
463
  if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
539
464
  tmp = true;
540
465
  } else {
541
466
  var tmp_0;
542
467
  if (state instanceof Finishing()) {
543
- tmp_0 = state.k27();
468
+ tmp_0 = state.v12();
544
469
  } else {
545
470
  tmp_0 = false;
546
471
  }
@@ -561,13 +486,13 @@ function createCauseException($this, cause) {
561
486
  var tmp_0;
562
487
  if (cause == null) {
563
488
  // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
564
- tmp_0 = JobCancellationException().i27(null == null ? $this.w1x() : null, null, $this);
489
+ tmp_0 = JobCancellationException().r12(null == null ? $this.tu() : null, null, $this);
565
490
  } else {
566
491
  tmp_0 = cause;
567
492
  }
568
493
  tmp = tmp_0;
569
494
  } else {
570
- tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).j1z();
495
+ tmp = ((!(cause == null) ? isInterface(cause, ParentJob()) : false) ? cause : THROW_CCE()).gw();
571
496
  }
572
497
  return tmp;
573
498
  }
@@ -575,14 +500,14 @@ function makeCancelling($this, cause) {
575
500
  var causeExceptionCache = null;
576
501
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
577
502
  while (true) {
578
- var tmp0 = $this.n1y();
503
+ var tmp0 = $this.kv();
579
504
  $l$block: {
580
505
  if (tmp0 instanceof Finishing()) {
581
506
  // Inline function 'kotlinx.coroutines.internal.synchronized' call
582
507
  // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
583
- if (tmp0.l27())
508
+ if (tmp0.w12())
584
509
  return get_TOO_LATE_TO_CANCEL();
585
- var wasCancelling = tmp0.a27();
510
+ var wasCancelling = tmp0.j12();
586
511
  if (!(cause == null) || !wasCancelling) {
587
512
  var tmp0_elvis_lhs = causeExceptionCache;
588
513
  var tmp;
@@ -595,10 +520,10 @@ function makeCancelling($this, cause) {
595
520
  tmp = tmp0_elvis_lhs;
596
521
  }
597
522
  var causeException = tmp;
598
- tmp0.m27(causeException);
523
+ tmp0.x12(causeException);
599
524
  }
600
525
  // Inline function 'kotlin.takeIf' call
601
- var this_1 = tmp0.n27();
526
+ var this_1 = tmp0.y12();
602
527
  var tmp_0;
603
528
  if (!wasCancelling) {
604
529
  tmp_0 = this_1;
@@ -610,7 +535,7 @@ function makeCancelling($this, cause) {
610
535
  null;
611
536
  else {
612
537
  // Inline function 'kotlin.let' call
613
- notifyCancelling($this, tmp0.w26_1, notifyRootCause);
538
+ notifyCancelling($this, tmp0.f12_1, notifyRootCause);
614
539
  }
615
540
  return get_COMPLETING_ALREADY();
616
541
  } else {
@@ -626,7 +551,7 @@ function makeCancelling($this, cause) {
626
551
  tmp_1 = tmp2_elvis_lhs;
627
552
  }
628
553
  var causeException_0 = tmp_1;
629
- if (tmp0.t1x()) {
554
+ if (tmp0.qu()) {
630
555
  if (tryMakeCancelling($this, tmp0, causeException_0))
631
556
  return get_COMPLETING_ALREADY();
632
557
  } else {
@@ -634,7 +559,7 @@ function makeCancelling($this, cause) {
634
559
  if (finalState === get_COMPLETING_ALREADY()) {
635
560
  // Inline function 'kotlin.error' call
636
561
  var message = 'Cannot happen in ' + toString(tmp0);
637
- throw IllegalStateException().o4(toString(message));
562
+ throw IllegalStateException().x4(toString(message));
638
563
  } else if (finalState === get_COMPLETING_RETRY()) {
639
564
  break $l$block;
640
565
  } else
@@ -648,7 +573,7 @@ function makeCancelling($this, cause) {
648
573
  }
649
574
  }
650
575
  function getOrPromoteCancellingList($this, state) {
651
- var tmp0_elvis_lhs = state.j24();
576
+ var tmp0_elvis_lhs = state.n10();
652
577
  var tmp;
653
578
  if (tmp0_elvis_lhs == null) {
654
579
  var tmp_0;
@@ -660,7 +585,7 @@ function getOrPromoteCancellingList($this, state) {
660
585
  tmp_0 = null;
661
586
  } else {
662
587
  var message = 'State should have list: ' + toString(state);
663
- throw IllegalStateException().o4(toString(message));
588
+ throw IllegalStateException().x4(toString(message));
664
589
  }
665
590
  }
666
591
  tmp = tmp_0;
@@ -681,7 +606,7 @@ function tryMakeCancelling($this, state, rootCause) {
681
606
  }
682
607
  var list = tmp;
683
608
  var cancelling = new (Finishing())(list, false, rootCause);
684
- if (!$this.m1x_1.atomicfu$compareAndSet(state, cancelling))
609
+ if (!$this.ju_1.atomicfu$compareAndSet(state, cancelling))
685
610
  return false;
686
611
  notifyCancelling($this, list, rootCause);
687
612
  return true;
@@ -729,24 +654,24 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
729
654
  var notifyRootCause;
730
655
  // Inline function 'kotlinx.coroutines.internal.synchronized' call
731
656
  // Inline function 'kotlinx.coroutines.internal.synchronizedImpl' call
732
- if (finishing.k27())
657
+ if (finishing.v12())
733
658
  return get_COMPLETING_ALREADY();
734
- finishing.o27(true);
659
+ finishing.z12(true);
735
660
  if (!(finishing === state)) {
736
- if (!$this.m1x_1.atomicfu$compareAndSet(state, finishing))
661
+ if (!$this.ju_1.atomicfu$compareAndSet(state, finishing))
737
662
  return get_COMPLETING_RETRY();
738
663
  }
739
664
  // Inline function 'kotlinx.coroutines.assert' call
740
- var wasCancelling = finishing.a27();
665
+ var wasCancelling = finishing.j12();
741
666
  var tmp0_safe_receiver = proposedUpdate instanceof CompletedExceptionally() ? proposedUpdate : null;
742
667
  if (tmp0_safe_receiver == null)
743
668
  null;
744
669
  else {
745
670
  // Inline function 'kotlin.let' call
746
- finishing.m27(tmp0_safe_receiver.y1x_1);
671
+ finishing.x12(tmp0_safe_receiver.vu_1);
747
672
  }
748
673
  // Inline function 'kotlin.takeIf' call
749
- var this_0 = finishing.n27();
674
+ var this_0 = finishing.y12();
750
675
  var tmp_0;
751
676
  if (!wasCancelling) {
752
677
  tmp_0 = this_0;
@@ -763,7 +688,7 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
763
688
  var child = nextChild($this, list);
764
689
  if (!(child == null) && tryWaitForChild($this, finishing, child, proposedUpdate))
765
690
  return get_COMPLETING_WAITING_CHILDREN();
766
- list.v26(2);
691
+ list.s12(2);
767
692
  var anotherChild = nextChild($this, list);
768
693
  if (!(anotherChild == null) && tryWaitForChild($this, finishing, anotherChild, proposedUpdate))
769
694
  return get_COMPLETING_WAITING_CHILDREN();
@@ -771,7 +696,7 @@ function tryMakeCompletingSlowPath($this, state, proposedUpdate) {
771
696
  }
772
697
  function _get_exceptionOrNull__b3j7js($this, _this__u8e3s4) {
773
698
  var tmp0_safe_receiver = _this__u8e3s4 instanceof CompletedExceptionally() ? _this__u8e3s4 : null;
774
- return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
699
+ return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.vu_1;
775
700
  }
776
701
  function tryWaitForChild($this, state, child, proposedUpdate) {
777
702
  var $this_0 = $this;
@@ -780,7 +705,7 @@ function tryWaitForChild($this, state, child, proposedUpdate) {
780
705
  var proposedUpdate_0 = proposedUpdate;
781
706
  $l$1: do {
782
707
  $l$0: do {
783
- var handle = invokeOnCompletion(child_0.t27_1, false, new (ChildCompletion())($this_0, state_0, child_0, proposedUpdate_0));
708
+ var handle = invokeOnCompletion(child_0.e13_1, false, new (ChildCompletion())($this_0, state_0, child_0, proposedUpdate_0));
784
709
  if (!(handle === NonDisposableHandle_instance))
785
710
  return true;
786
711
  var tmp0_elvis_lhs = nextChild($this_0, child_0);
@@ -809,29 +734,29 @@ function continueCompleting($this, state, lastChild, proposedUpdate) {
809
734
  var waitChild = nextChild($this, lastChild);
810
735
  if (!(waitChild == null) && tryWaitForChild($this, state, waitChild, proposedUpdate))
811
736
  return Unit_instance;
812
- state.w26_1.v26(2);
737
+ state.f12_1.s12(2);
813
738
  var waitChildAgain = nextChild($this, lastChild);
814
739
  if (!(waitChildAgain == null) && tryWaitForChild($this, state, waitChildAgain, proposedUpdate)) {
815
740
  return Unit_instance;
816
741
  }
817
742
  var finalState = finalizeFinishingState($this, state, proposedUpdate);
818
- $this.d1y(finalState);
743
+ $this.av(finalState);
819
744
  }
820
745
  function nextChild($this, _this__u8e3s4) {
821
746
  var cur = _this__u8e3s4;
822
747
  $l$loop: while (true) {
823
748
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
824
- if (!cur.m24_1) {
749
+ if (!cur.q10_1) {
825
750
  break $l$loop;
826
751
  }
827
752
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.prevNode' call
828
- cur = cur.l24_1;
753
+ cur = cur.p10_1;
829
754
  }
830
755
  $l$loop_0: while (true) {
831
756
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.nextNode' call
832
- cur = cur.k24_1;
757
+ cur = cur.o10_1;
833
758
  // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListNode.isRemoved' call
834
- if (cur.m24_1)
759
+ if (cur.q10_1)
835
760
  continue $l$loop_0;
836
761
  if (cur instanceof ChildHandleNode())
837
762
  return cur;
@@ -842,10 +767,10 @@ function nextChild($this, _this__u8e3s4) {
842
767
  function stateString($this, state) {
843
768
  var tmp;
844
769
  if (state instanceof Finishing()) {
845
- tmp = state.a27() ? 'Cancelling' : state.k27() ? 'Completing' : 'Active';
770
+ tmp = state.j12() ? 'Cancelling' : state.v12() ? 'Completing' : 'Active';
846
771
  } else {
847
772
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
848
- tmp = state.t1x() ? 'Active' : 'New';
773
+ tmp = state.qu() ? 'Active' : 'New';
849
774
  } else {
850
775
  if (state instanceof CompletedExceptionally()) {
851
776
  tmp = 'Cancelled';
@@ -862,36 +787,36 @@ function Finishing() {
862
787
  class $ extends SynchronizedObject() {
863
788
  constructor(list, isCompleting, rootCause) {
864
789
  super();
865
- this.w26_1 = list;
866
- this.x26_1 = atomic$boolean$1(isCompleting);
867
- this.y26_1 = atomic$ref$1(rootCause);
868
- this.z26_1 = atomic$ref$1(null);
790
+ this.f12_1 = list;
791
+ this.g12_1 = atomic$boolean$1(isCompleting);
792
+ this.h12_1 = atomic$ref$1(rootCause);
793
+ this.i12_1 = atomic$ref$1(null);
869
794
  }
870
- j24() {
871
- return this.w26_1;
795
+ n10() {
796
+ return this.f12_1;
872
797
  }
873
- o27(value) {
874
- this.x26_1.kotlinx$atomicfu$value = value;
798
+ z12(value) {
799
+ this.g12_1.kotlinx$atomicfu$value = value;
875
800
  }
876
- k27() {
877
- return this.x26_1.kotlinx$atomicfu$value;
801
+ v12() {
802
+ return this.g12_1.kotlinx$atomicfu$value;
878
803
  }
879
- u27(value) {
880
- this.y26_1.kotlinx$atomicfu$value = value;
804
+ f13(value) {
805
+ this.h12_1.kotlinx$atomicfu$value = value;
881
806
  }
882
- n27() {
883
- return this.y26_1.kotlinx$atomicfu$value;
807
+ y12() {
808
+ return this.h12_1.kotlinx$atomicfu$value;
884
809
  }
885
- l27() {
810
+ w12() {
886
811
  return _get_exceptionsHolder__nhszp(this) === get_SEALED();
887
812
  }
888
- a27() {
889
- return !(this.n27() == null);
813
+ j12() {
814
+ return !(this.y12() == null);
890
815
  }
891
- t1x() {
892
- return this.n27() == null;
816
+ qu() {
817
+ return this.y12() == null;
893
818
  }
894
- b27(proposedException) {
819
+ k12(proposedException) {
895
820
  var eh = _get_exceptionsHolder__nhszp(this);
896
821
  var tmp;
897
822
  if (eh == null) {
@@ -900,35 +825,35 @@ function Finishing() {
900
825
  if (eh instanceof Error) {
901
826
  // Inline function 'kotlin.also' call
902
827
  var this_0 = allocateList(this);
903
- this_0.m(eh);
828
+ this_0.v(eh);
904
829
  tmp = this_0;
905
830
  } else {
906
831
  if (eh instanceof ArrayList()) {
907
832
  tmp = eh instanceof ArrayList() ? eh : THROW_CCE();
908
833
  } else {
909
834
  var message = 'State is ' + toString_0(eh);
910
- throw IllegalStateException().o4(toString(message));
835
+ throw IllegalStateException().x4(toString(message));
911
836
  }
912
837
  }
913
838
  }
914
839
  var list = tmp;
915
- var rootCause = this.n27();
840
+ var rootCause = this.y12();
916
841
  if (rootCause == null)
917
842
  null;
918
843
  else {
919
844
  // Inline function 'kotlin.let' call
920
- list.b3(0, rootCause);
845
+ list.t3(0, rootCause);
921
846
  }
922
847
  if (!(proposedException == null) && !equals(proposedException, rootCause)) {
923
- list.m(proposedException);
848
+ list.v(proposedException);
924
849
  }
925
850
  _set_exceptionsHolder__tqm22h(this, get_SEALED());
926
851
  return list;
927
852
  }
928
- m27(exception) {
929
- var rootCause = this.n27();
853
+ x12(exception) {
854
+ var rootCause = this.y12();
930
855
  if (rootCause == null) {
931
- this.u27(exception);
856
+ this.f13(exception);
932
857
  return Unit_instance;
933
858
  }
934
859
  if (exception === rootCause)
@@ -942,22 +867,22 @@ function Finishing() {
942
867
  return Unit_instance;
943
868
  // Inline function 'kotlin.apply' call
944
869
  var this_0 = allocateList(this);
945
- this_0.m(eh);
946
- this_0.m(exception);
870
+ this_0.v(eh);
871
+ this_0.v(exception);
947
872
  _set_exceptionsHolder__tqm22h(this, this_0);
948
873
  } else {
949
874
  if (eh instanceof ArrayList()) {
950
- (eh instanceof ArrayList() ? eh : THROW_CCE()).m(exception);
875
+ (eh instanceof ArrayList() ? eh : THROW_CCE()).v(exception);
951
876
  } else {
952
877
  // Inline function 'kotlin.error' call
953
878
  var message = 'State is ' + toString_0(eh);
954
- throw IllegalStateException().o4(toString(message));
879
+ throw IllegalStateException().x4(toString(message));
955
880
  }
956
881
  }
957
882
  }
958
883
  }
959
884
  toString() {
960
- return 'Finishing[cancelling=' + this.a27() + ', completing=' + this.k27() + ', rootCause=' + toString_0(this.n27()) + ', exceptions=' + toString_0(_get_exceptionsHolder__nhszp(this)) + ', list=' + this.w26_1.toString() + ']';
885
+ return 'Finishing[cancelling=' + this.j12() + ', completing=' + this.v12() + ', rootCause=' + toString_0(this.y12()) + ', exceptions=' + toString_0(_get_exceptionsHolder__nhszp(this)) + ', list=' + this.f12_1.toString() + ']';
961
886
  }
962
887
  }
963
888
  initMetadataForClass($, 'Finishing', VOID, VOID, [SynchronizedObject(), Incomplete()]);
@@ -971,16 +896,16 @@ function ChildCompletion() {
971
896
  class $ extends JobNode() {
972
897
  constructor(parent, state, child, proposedUpdate) {
973
898
  super();
974
- this.z27_1 = parent;
975
- this.a28_1 = state;
976
- this.b28_1 = child;
977
- this.c28_1 = proposedUpdate;
899
+ this.k13_1 = parent;
900
+ this.l13_1 = state;
901
+ this.m13_1 = child;
902
+ this.n13_1 = proposedUpdate;
978
903
  }
979
- d24() {
904
+ h10() {
980
905
  return false;
981
906
  }
982
- t21(cause) {
983
- continueCompleting(this.z27_1, this.a28_1, this.b28_1, this.c28_1);
907
+ vx(cause) {
908
+ continueCompleting(this.k13_1, this.l13_1, this.m13_1, this.n13_1);
984
909
  }
985
910
  }
986
911
  initMetadataForClass($, 'ChildCompletion');
@@ -994,12 +919,12 @@ function AwaitContinuation() {
994
919
  class $ extends CancellableContinuationImpl() {
995
920
  constructor(delegate, job) {
996
921
  super(delegate, 1);
997
- this.j28_1 = job;
922
+ this.u13_1 = job;
998
923
  }
999
- h23(parent) {
1000
- var state = this.j28_1.n1y();
924
+ kz(parent) {
925
+ var state = this.u13_1.kv();
1001
926
  if (state instanceof Finishing()) {
1002
- var tmp0_safe_receiver = state.n27();
927
+ var tmp0_safe_receiver = state.y12();
1003
928
  if (tmp0_safe_receiver == null)
1004
929
  null;
1005
930
  else {
@@ -1008,10 +933,10 @@ function AwaitContinuation() {
1008
933
  }
1009
934
  }
1010
935
  if (state instanceof CompletedExceptionally())
1011
- return state.y1x_1;
1012
- return parent.s1y();
936
+ return state.vu_1;
937
+ return parent.pv();
1013
938
  }
1014
- t23() {
939
+ yz() {
1015
940
  return 'AwaitContinuation';
1016
941
  }
1017
942
  }
@@ -1022,210 +947,71 @@ function AwaitContinuation() {
1022
947
  }
1023
948
  function awaitSuspend($this, $completion) {
1024
949
  var cont = new (AwaitContinuation())(intercepted($completion), $this);
1025
- cont.a23();
950
+ cont.dz();
1026
951
  disposeOnCancellation(cont, invokeOnCompletion($this, VOID, new (ResumeAwaitOnCompletion())(cont)));
1027
- return cont.b20();
1028
- }
1029
- var JobSupport$_get_children_$slambda_k839f8Class;
1030
- function JobSupport$_get_children_$slambda_k839f8() {
1031
- if (JobSupport$_get_children_$slambda_k839f8Class === VOID) {
1032
- class $ extends CoroutineImpl() {
1033
- constructor(this$0, resultContinuation, $box) {
1034
- if ($box === VOID)
1035
- $box = {};
1036
- $box.s28_1 = this$0;
1037
- super(resultContinuation, $box);
1038
- }
1039
- g29($this$sequence, $completion) {
1040
- var tmp = this.h29($this$sequence, $completion);
1041
- tmp.cc_1 = Unit_instance;
1042
- tmp.dc_1 = null;
1043
- return tmp.ic();
1044
- }
1045
- kd(p1, $completion) {
1046
- return this.g29(p1 instanceof SequenceScope() ? p1 : THROW_CCE(), $completion);
1047
- }
1048
- ic() {
1049
- var suspendResult = this.cc_1;
1050
- $sm: do
1051
- try {
1052
- var tmp = this.ac_1;
1053
- switch (tmp) {
1054
- case 0:
1055
- this.bc_1 = 8;
1056
- this.u28_1 = this.s28_1.n1y();
1057
- var tmp_0 = this.u28_1;
1058
- if (tmp_0 instanceof ChildHandleNode()) {
1059
- this.ac_1 = 6;
1060
- suspendResult = this.t28_1.ml(this.u28_1.t27_1, this);
1061
- if (suspendResult === get_COROUTINE_SUSPENDED()) {
1062
- return suspendResult;
1063
- }
1064
- continue $sm;
1065
- } else {
1066
- var tmp_1 = this.u28_1;
1067
- if (!(tmp_1 == null) ? isInterface(tmp_1, Incomplete()) : false) {
1068
- this.v28_1 = this.u28_1.j24();
1069
- if (this.v28_1 == null) {
1070
- this.w28_1 = null;
1071
- this.ac_1 = 5;
1072
- continue $sm;
1073
- } else {
1074
- var tmp_2 = this;
1075
- tmp_2.x28_1 = this.v28_1;
1076
- this.y28_1 = this.x28_1;
1077
- var tmp_3 = this;
1078
- tmp_3.z28_1 = this.y28_1;
1079
- this.a29_1 = this.z28_1;
1080
- var tmp_4 = this;
1081
- tmp_4.b29_1 = this.a29_1;
1082
- this.c29_1 = this.b29_1;
1083
- this.d29_1 = this.c29_1.k24_1;
1084
- this.ac_1 = 1;
1085
- continue $sm;
1086
- }
1087
- } else {
1088
- this.ac_1 = 7;
1089
- continue $sm;
1090
- }
1091
- }
1092
-
1093
- case 1:
1094
- if (!!equals(this.d29_1, this.c29_1)) {
1095
- this.ac_1 = 4;
1096
- continue $sm;
1097
- }
1098
-
1099
- var tmp_5 = this;
1100
- tmp_5.e29_1 = this.d29_1;
1101
- this.f29_1 = this.e29_1;
1102
- var tmp_6 = this.f29_1;
1103
- if (tmp_6 instanceof ChildHandleNode()) {
1104
- this.ac_1 = 2;
1105
- suspendResult = this.t28_1.ml(this.f29_1.t27_1, this);
1106
- if (suspendResult === get_COROUTINE_SUSPENDED()) {
1107
- return suspendResult;
1108
- }
1109
- continue $sm;
1110
- } else {
1111
- this.ac_1 = 3;
1112
- continue $sm;
1113
- }
1114
-
1115
- case 2:
1116
- this.ac_1 = 3;
1117
- continue $sm;
1118
- case 3:
1119
- this.d29_1 = this.d29_1.k24_1;
1120
- this.ac_1 = 1;
1121
- continue $sm;
1122
- case 4:
1123
- var tmp_7 = this;
1124
- tmp_7.w28_1 = Unit_instance;
1125
- this.ac_1 = 5;
1126
- continue $sm;
1127
- case 5:
1128
- this.ac_1 = 7;
1129
- continue $sm;
1130
- case 6:
1131
- this.ac_1 = 7;
1132
- continue $sm;
1133
- case 7:
1134
- return Unit_instance;
1135
- case 8:
1136
- throw this.dc_1;
1137
- }
1138
- } catch ($p) {
1139
- var e = $p;
1140
- if (this.bc_1 === 8) {
1141
- throw e;
1142
- } else {
1143
- this.ac_1 = this.bc_1;
1144
- this.dc_1 = e;
1145
- }
1146
- }
1147
- while (true);
1148
- }
1149
- h29($this$sequence, completion) {
1150
- var i = new (JobSupport$_get_children_$slambda_k839f8())(this.s28_1, completion);
1151
- i.t28_1 = $this$sequence;
1152
- return i;
1153
- }
1154
- }
1155
- initMetadataForLambda($, VOID, VOID, [1]);
1156
- JobSupport$_get_children_$slambda_k839f8Class = $;
1157
- }
1158
- return JobSupport$_get_children_$slambda_k839f8Class;
1159
- }
1160
- function JobSupport$_get_children_$slambda_k839f8_0(this$0, resultContinuation) {
1161
- var i = new (JobSupport$_get_children_$slambda_k839f8())(this$0, resultContinuation);
1162
- var l = function ($this$sequence, $completion) {
1163
- return i.g29($this$sequence, $completion);
1164
- };
1165
- l.$arity = 1;
1166
- return l;
952
+ return cont.lz();
1167
953
  }
1168
954
  var JobSupportClass;
1169
955
  function JobSupport() {
1170
956
  if (JobSupportClass === VOID) {
1171
957
  class $ {
1172
958
  constructor(active) {
1173
- this.m1x_1 = atomic$ref$1(active ? get_EMPTY_ACTIVE() : get_EMPTY_NEW());
1174
- this.n1x_1 = atomic$ref$1(null);
959
+ this.ju_1 = atomic$ref$1(active ? get_EMPTY_ACTIVE() : get_EMPTY_NEW());
960
+ this.ku_1 = atomic$ref$1(null);
1175
961
  }
1176
- r1() {
962
+ y1() {
1177
963
  return Key_instance;
1178
964
  }
1179
- k1y(value) {
1180
- this.n1x_1.kotlinx$atomicfu$value = value;
965
+ hv(value) {
966
+ this.ku_1.kotlinx$atomicfu$value = value;
1181
967
  }
1182
- l1y() {
1183
- return this.n1x_1.kotlinx$atomicfu$value;
968
+ iv() {
969
+ return this.ku_1.kotlinx$atomicfu$value;
1184
970
  }
1185
- m1y() {
1186
- var tmp0_safe_receiver = this.l1y();
1187
- return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m1y();
971
+ jv() {
972
+ var tmp0_safe_receiver = this.iv();
973
+ return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.jv();
1188
974
  }
1189
- o1x(parent) {
975
+ lu(parent) {
1190
976
  // Inline function 'kotlinx.coroutines.assert' call
1191
977
  if (parent == null) {
1192
- this.k1y(NonDisposableHandle_instance);
978
+ this.hv(NonDisposableHandle_instance);
1193
979
  return Unit_instance;
1194
980
  }
1195
- parent.q1y();
1196
- var handle = parent.m1z(this);
1197
- this.k1y(handle);
1198
- if (this.o1y()) {
1199
- handle.u21();
1200
- this.k1y(NonDisposableHandle_instance);
981
+ parent.nv();
982
+ var handle = parent.iw(this);
983
+ this.hv(handle);
984
+ if (this.lv()) {
985
+ handle.wx();
986
+ this.hv(NonDisposableHandle_instance);
1201
987
  }
1202
988
  }
1203
- n1y() {
1204
- return this.m1x_1.kotlinx$atomicfu$value;
989
+ kv() {
990
+ return this.ju_1.kotlinx$atomicfu$value;
1205
991
  }
1206
- t1x() {
1207
- var state = this.n1y();
992
+ qu() {
993
+ var state = this.kv();
1208
994
  var tmp;
1209
995
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1210
- tmp = state.t1x();
996
+ tmp = state.qu();
1211
997
  } else {
1212
998
  tmp = false;
1213
999
  }
1214
1000
  return tmp;
1215
1001
  }
1216
- o1y() {
1217
- var tmp = this.n1y();
1002
+ lv() {
1003
+ var tmp = this.kv();
1218
1004
  return !(!(tmp == null) ? isInterface(tmp, Incomplete()) : false);
1219
1005
  }
1220
- p1y() {
1221
- var state = this.n1y();
1006
+ mv() {
1007
+ var state = this.kv();
1222
1008
  var tmp;
1223
1009
  if (state instanceof CompletedExceptionally()) {
1224
1010
  tmp = true;
1225
1011
  } else {
1226
1012
  var tmp_0;
1227
1013
  if (state instanceof Finishing()) {
1228
- tmp_0 = state.a27();
1014
+ tmp_0 = state.j12();
1229
1015
  } else {
1230
1016
  tmp_0 = false;
1231
1017
  }
@@ -1233,10 +1019,10 @@ function JobSupport() {
1233
1019
  }
1234
1020
  return tmp;
1235
1021
  }
1236
- q1y() {
1022
+ nv() {
1237
1023
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1238
1024
  while (true) {
1239
- var state = this.n1y();
1025
+ var state = this.kv();
1240
1026
  var tmp0_subject = startInternal(this, state);
1241
1027
  if (tmp0_subject === 0)
1242
1028
  return false;
@@ -1244,18 +1030,18 @@ function JobSupport() {
1244
1030
  return true;
1245
1031
  }
1246
1032
  }
1247
- r1y() {
1033
+ ov() {
1248
1034
  }
1249
- s1y() {
1250
- var state = this.n1y();
1035
+ pv() {
1036
+ var state = this.kv();
1251
1037
  var tmp;
1252
1038
  if (state instanceof Finishing()) {
1253
- var tmp0_safe_receiver = state.n27();
1254
- var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.t1y(tmp0_safe_receiver, get_classSimpleName(this) + ' is cancelling');
1039
+ var tmp0_safe_receiver = state.y12();
1040
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : this.qv(tmp0_safe_receiver, get_classSimpleName(this) + ' is cancelling');
1255
1041
  var tmp_0;
1256
1042
  if (tmp1_elvis_lhs == null) {
1257
1043
  var message = 'Job is still new or active: ' + this.toString();
1258
- throw IllegalStateException().o4(toString(message));
1044
+ throw IllegalStateException().x4(toString(message));
1259
1045
  } else {
1260
1046
  tmp_0 = tmp1_elvis_lhs;
1261
1047
  }
@@ -1263,55 +1049,55 @@ function JobSupport() {
1263
1049
  } else {
1264
1050
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1265
1051
  var message_0 = 'Job is still new or active: ' + this.toString();
1266
- throw IllegalStateException().o4(toString(message_0));
1052
+ throw IllegalStateException().x4(toString(message_0));
1267
1053
  } else {
1268
1054
  if (state instanceof CompletedExceptionally()) {
1269
- tmp = this.u1y(state.y1x_1);
1055
+ tmp = this.rv(state.vu_1);
1270
1056
  } else {
1271
- tmp = JobCancellationException().i27(get_classSimpleName(this) + ' has completed normally', null, this);
1057
+ tmp = JobCancellationException().r12(get_classSimpleName(this) + ' has completed normally', null, this);
1272
1058
  }
1273
1059
  }
1274
1060
  }
1275
1061
  return tmp;
1276
1062
  }
1277
- t1y(_this__u8e3s4, message) {
1063
+ qv(_this__u8e3s4, message) {
1278
1064
  var tmp0_elvis_lhs = _this__u8e3s4 instanceof CancellationException() ? _this__u8e3s4 : null;
1279
1065
  var tmp;
1280
1066
  if (tmp0_elvis_lhs == null) {
1281
1067
  // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
1282
- tmp = JobCancellationException().i27(message == null ? this.w1x() : message, _this__u8e3s4, this);
1068
+ tmp = JobCancellationException().r12(message == null ? this.tu() : message, _this__u8e3s4, this);
1283
1069
  } else {
1284
1070
  tmp = tmp0_elvis_lhs;
1285
1071
  }
1286
1072
  return tmp;
1287
1073
  }
1288
- u1y(_this__u8e3s4, message, $super) {
1074
+ rv(_this__u8e3s4, message, $super) {
1289
1075
  message = message === VOID ? null : message;
1290
- return $super === VOID ? this.t1y(_this__u8e3s4, message) : $super.t1y.call(this, _this__u8e3s4, message);
1076
+ return $super === VOID ? this.qv(_this__u8e3s4, message) : $super.qv.call(this, _this__u8e3s4, message);
1291
1077
  }
1292
- v1y(handler) {
1293
- return this.y1y(true, new (InvokeOnCompletion())(handler));
1078
+ sv(handler) {
1079
+ return this.vv(true, new (InvokeOnCompletion())(handler));
1294
1080
  }
1295
- w1y(onCancelling, invokeImmediately, handler) {
1081
+ tv(onCancelling, invokeImmediately, handler) {
1296
1082
  var tmp;
1297
1083
  if (onCancelling) {
1298
1084
  tmp = new (InvokeOnCancelling())(handler);
1299
1085
  } else {
1300
1086
  tmp = new (InvokeOnCompletion())(handler);
1301
1087
  }
1302
- return this.y1y(invokeImmediately, tmp);
1088
+ return this.vv(invokeImmediately, tmp);
1303
1089
  }
1304
- y1y(invokeImmediately, node) {
1305
- node.h24_1 = this;
1090
+ vv(invokeImmediately, node) {
1091
+ node.l10_1 = this;
1306
1092
  var tmp$ret$0;
1307
1093
  $l$block_1: {
1308
1094
  // Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
1309
1095
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1310
1096
  while (true) {
1311
- var state = this.n1y();
1097
+ var state = this.kv();
1312
1098
  if (state instanceof Empty()) {
1313
- if (state.q26_1) {
1314
- if (this.m1x_1.atomicfu$compareAndSet(state, node)) {
1099
+ if (state.u12_1) {
1100
+ if (this.ju_1.atomicfu$compareAndSet(state, node)) {
1315
1101
  tmp$ret$0 = true;
1316
1102
  break $l$block_1;
1317
1103
  }
@@ -1320,26 +1106,26 @@ function JobSupport() {
1320
1106
  }
1321
1107
  } else {
1322
1108
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1323
- var list = state.j24();
1109
+ var list = state.n10();
1324
1110
  if (list == null) {
1325
1111
  promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
1326
1112
  } else {
1327
1113
  var tmp;
1328
- if (node.d24()) {
1114
+ if (node.h10()) {
1329
1115
  var tmp0_safe_receiver = state instanceof Finishing() ? state : null;
1330
- var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.n27();
1116
+ var rootCause = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y12();
1331
1117
  var tmp_0;
1332
1118
  if (rootCause == null) {
1333
- tmp_0 = list.n24(node, 5);
1119
+ tmp_0 = list.r10(node, 5);
1334
1120
  } else {
1335
1121
  if (invokeImmediately) {
1336
- node.t21(rootCause);
1122
+ node.vx(rootCause);
1337
1123
  }
1338
1124
  return NonDisposableHandle_instance;
1339
1125
  }
1340
1126
  tmp = tmp_0;
1341
1127
  } else {
1342
- tmp = list.n24(node, 1);
1128
+ tmp = list.r10(node, 1);
1343
1129
  }
1344
1130
  if (tmp) {
1345
1131
  tmp$ret$0 = true;
@@ -1357,34 +1143,34 @@ function JobSupport() {
1357
1143
  if (added)
1358
1144
  return node;
1359
1145
  else if (invokeImmediately) {
1360
- var tmp_1 = this.n1y();
1146
+ var tmp_1 = this.kv();
1361
1147
  var tmp0_safe_receiver_0 = tmp_1 instanceof CompletedExceptionally() ? tmp_1 : null;
1362
- node.t21(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.y1x_1);
1148
+ node.vx(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.vu_1);
1363
1149
  }
1364
1150
  return NonDisposableHandle_instance;
1365
1151
  }
1366
- z1y($completion) {
1152
+ wv($completion) {
1367
1153
  if (!joinInternal(this)) {
1368
1154
  // Inline function 'kotlin.js.getCoroutineContext' call
1369
- var tmp$ret$0 = $completion.gc();
1155
+ var tmp$ret$0 = $completion.zb();
1370
1156
  ensureActive(tmp$ret$0);
1371
1157
  return Unit_instance;
1372
1158
  }
1373
1159
  return joinSuspend(this, $completion);
1374
1160
  }
1375
- a1z(node) {
1161
+ xv(node) {
1376
1162
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1377
1163
  while (true) {
1378
- var state = this.n1y();
1164
+ var state = this.kv();
1379
1165
  if (state instanceof JobNode()) {
1380
1166
  if (!(state === node))
1381
1167
  return Unit_instance;
1382
- if (this.m1x_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
1168
+ if (this.ju_1.atomicfu$compareAndSet(state, get_EMPTY_ACTIVE()))
1383
1169
  return Unit_instance;
1384
1170
  } else {
1385
1171
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1386
- if (!(state.j24() == null)) {
1387
- node.o24();
1172
+ if (!(state.n10() == null)) {
1173
+ node.s10();
1388
1174
  }
1389
1175
  return Unit_instance;
1390
1176
  } else {
@@ -1393,39 +1179,39 @@ function JobSupport() {
1393
1179
  }
1394
1180
  }
1395
1181
  }
1396
- b1z() {
1182
+ yv() {
1397
1183
  return false;
1398
1184
  }
1399
- c1z(cause) {
1185
+ zv(cause) {
1400
1186
  var tmp;
1401
1187
  if (cause == null) {
1402
1188
  // Inline function 'kotlinx.coroutines.JobSupport.defaultCancellationException' call
1403
- tmp = JobCancellationException().i27(null == null ? this.w1x() : null, null, this);
1189
+ tmp = JobCancellationException().r12(null == null ? this.tu() : null, null, this);
1404
1190
  } else {
1405
1191
  tmp = cause;
1406
1192
  }
1407
- this.e1z(tmp);
1193
+ this.bw(tmp);
1408
1194
  }
1409
- w1x() {
1195
+ tu() {
1410
1196
  return 'Job was cancelled';
1411
1197
  }
1412
- e1z(cause) {
1413
- this.i1z(cause);
1198
+ bw(cause) {
1199
+ this.fw(cause);
1414
1200
  }
1415
- f1z(parentJob) {
1416
- this.i1z(parentJob);
1201
+ cw(parentJob) {
1202
+ this.fw(parentJob);
1417
1203
  }
1418
- g1z(cause) {
1204
+ dw(cause) {
1419
1205
  if (cause instanceof CancellationException())
1420
1206
  return true;
1421
- return this.i1z(cause) && this.p1z();
1207
+ return this.fw(cause) && this.lw();
1422
1208
  }
1423
- h1z(cause) {
1424
- return this.i1z(cause);
1209
+ ew(cause) {
1210
+ return this.fw(cause);
1425
1211
  }
1426
- i1z(cause) {
1212
+ fw(cause) {
1427
1213
  var finalState = get_COMPLETING_ALREADY();
1428
- if (this.b1z()) {
1214
+ if (this.yv()) {
1429
1215
  finalState = cancelMakeCompleting(this, cause);
1430
1216
  if (finalState === get_COMPLETING_WAITING_CHILDREN())
1431
1217
  return true;
@@ -1441,23 +1227,23 @@ function JobSupport() {
1441
1227
  } else if (finalState === get_TOO_LATE_TO_CANCEL()) {
1442
1228
  tmp = false;
1443
1229
  } else {
1444
- this.d1y(finalState);
1230
+ this.av(finalState);
1445
1231
  tmp = true;
1446
1232
  }
1447
1233
  return tmp;
1448
1234
  }
1449
- j1z() {
1450
- var state = this.n1y();
1235
+ gw() {
1236
+ var state = this.kv();
1451
1237
  var tmp;
1452
1238
  if (state instanceof Finishing()) {
1453
- tmp = state.n27();
1239
+ tmp = state.y12();
1454
1240
  } else {
1455
1241
  if (state instanceof CompletedExceptionally()) {
1456
- tmp = state.y1x_1;
1242
+ tmp = state.vu_1;
1457
1243
  } else {
1458
1244
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1459
1245
  var message = 'Cannot be cancelling child in this state: ' + toString(state);
1460
- throw IllegalStateException().o4(toString(message));
1246
+ throw IllegalStateException().x4(toString(message));
1461
1247
  } else {
1462
1248
  tmp = null;
1463
1249
  }
@@ -1465,12 +1251,12 @@ function JobSupport() {
1465
1251
  }
1466
1252
  var rootCause = tmp;
1467
1253
  var tmp1_elvis_lhs = rootCause instanceof CancellationException() ? rootCause : null;
1468
- return tmp1_elvis_lhs == null ? JobCancellationException().i27('Parent job is ' + stateString(this, state), rootCause, this) : tmp1_elvis_lhs;
1254
+ return tmp1_elvis_lhs == null ? JobCancellationException().r12('Parent job is ' + stateString(this, state), rootCause, this) : tmp1_elvis_lhs;
1469
1255
  }
1470
- k1z(proposedUpdate) {
1256
+ hw(proposedUpdate) {
1471
1257
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1472
1258
  while (true) {
1473
- var tmp0 = this.n1y();
1259
+ var tmp0 = this.kv();
1474
1260
  $l$block: {
1475
1261
  var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
1476
1262
  if (finalState === get_COMPLETING_ALREADY())
@@ -1480,20 +1266,20 @@ function JobSupport() {
1480
1266
  else if (finalState === get_COMPLETING_RETRY()) {
1481
1267
  break $l$block;
1482
1268
  } else {
1483
- this.d1y(finalState);
1269
+ this.av(finalState);
1484
1270
  return true;
1485
1271
  }
1486
1272
  }
1487
1273
  }
1488
1274
  }
1489
- b1y(proposedUpdate) {
1275
+ yu(proposedUpdate) {
1490
1276
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1491
1277
  while (true) {
1492
- var tmp0 = this.n1y();
1278
+ var tmp0 = this.kv();
1493
1279
  $l$block: {
1494
1280
  var finalState = tryMakeCompleting(this, tmp0, proposedUpdate);
1495
1281
  if (finalState === get_COMPLETING_ALREADY())
1496
- throw IllegalStateException().ed('Job ' + this.toString() + ' is already complete or completing, ' + ('but is being completed with ' + toString_0(proposedUpdate)), _get_exceptionOrNull__b3j7js(this, proposedUpdate));
1282
+ throw IllegalStateException().dd('Job ' + this.toString() + ' is already complete or completing, ' + ('but is being completed with ' + toString_0(proposedUpdate)), _get_exceptionOrNull__b3j7js(this, proposedUpdate));
1497
1283
  else if (finalState === get_COMPLETING_RETRY()) {
1498
1284
  break $l$block;
1499
1285
  } else
@@ -1501,23 +1287,20 @@ function JobSupport() {
1501
1287
  }
1502
1288
  }
1503
1289
  }
1504
- l1z() {
1505
- return sequence(JobSupport$_get_children_$slambda_k839f8_0(this, null));
1506
- }
1507
- m1z(child) {
1290
+ iw(child) {
1508
1291
  // Inline function 'kotlin.also' call
1509
1292
  var this_0 = new (ChildHandleNode())(child);
1510
- this_0.h24_1 = this;
1293
+ this_0.l10_1 = this;
1511
1294
  var node = this_0;
1512
1295
  var tmp$ret$2;
1513
1296
  $l$block_1: {
1514
1297
  // Inline function 'kotlinx.coroutines.JobSupport.tryPutNodeIntoList' call
1515
1298
  // Inline function 'kotlinx.coroutines.JobSupport.loopOnState' call
1516
1299
  while (true) {
1517
- var state = this.n1y();
1300
+ var state = this.kv();
1518
1301
  if (state instanceof Empty()) {
1519
- if (state.q26_1) {
1520
- if (this.m1x_1.atomicfu$compareAndSet(state, node)) {
1302
+ if (state.u12_1) {
1303
+ if (this.ju_1.atomicfu$compareAndSet(state, node)) {
1521
1304
  tmp$ret$2 = true;
1522
1305
  break $l$block_1;
1523
1306
  }
@@ -1526,27 +1309,27 @@ function JobSupport() {
1526
1309
  }
1527
1310
  } else {
1528
1311
  if (!(state == null) ? isInterface(state, Incomplete()) : false) {
1529
- var list = state.j24();
1312
+ var list = state.n10();
1530
1313
  if (list == null) {
1531
1314
  promoteSingleToNodeList(this, state instanceof JobNode() ? state : THROW_CCE());
1532
1315
  } else {
1533
- var addedBeforeCancellation = list.n24(node, 7);
1316
+ var addedBeforeCancellation = list.r10(node, 7);
1534
1317
  var tmp;
1535
1318
  if (addedBeforeCancellation) {
1536
1319
  tmp = true;
1537
1320
  } else {
1538
- var addedBeforeCompletion = list.n24(node, 3);
1539
- var latestState = this.n1y();
1321
+ var addedBeforeCompletion = list.r10(node, 3);
1322
+ var latestState = this.kv();
1540
1323
  var tmp_0;
1541
1324
  if (latestState instanceof Finishing()) {
1542
- tmp_0 = latestState.n27();
1325
+ tmp_0 = latestState.y12();
1543
1326
  } else {
1544
1327
  // Inline function 'kotlinx.coroutines.assert' call
1545
1328
  var tmp0_safe_receiver = latestState instanceof CompletedExceptionally() ? latestState : null;
1546
- tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y1x_1;
1329
+ tmp_0 = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.vu_1;
1547
1330
  }
1548
1331
  var rootCause = tmp_0;
1549
- node.t21(rootCause);
1332
+ node.vx(rootCause);
1550
1333
  var tmp_1;
1551
1334
  if (addedBeforeCompletion) {
1552
1335
  // Inline function 'kotlinx.coroutines.assert' call
@@ -1571,65 +1354,65 @@ function JobSupport() {
1571
1354
  var added = tmp$ret$2;
1572
1355
  if (added)
1573
1356
  return node;
1574
- var tmp_2 = this.n1y();
1357
+ var tmp_2 = this.kv();
1575
1358
  var tmp0_safe_receiver_0 = tmp_2 instanceof CompletedExceptionally() ? tmp_2 : null;
1576
- node.t21(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.y1x_1);
1359
+ node.vx(tmp0_safe_receiver_0 == null ? null : tmp0_safe_receiver_0.vu_1);
1577
1360
  return NonDisposableHandle_instance;
1578
1361
  }
1579
- e1y(exception) {
1362
+ bv(exception) {
1580
1363
  throw exception;
1581
1364
  }
1582
- n1z(cause) {
1365
+ jw(cause) {
1583
1366
  }
1584
- o1z() {
1367
+ kw() {
1585
1368
  return false;
1586
1369
  }
1587
- p1z() {
1370
+ lw() {
1588
1371
  return true;
1589
1372
  }
1590
- q1z(exception) {
1373
+ mw(exception) {
1591
1374
  return false;
1592
1375
  }
1593
- x1x(state) {
1376
+ uu(state) {
1594
1377
  }
1595
- d1y(state) {
1378
+ av(state) {
1596
1379
  }
1597
1380
  toString() {
1598
- return this.r1z() + '@' + get_hexAddress(this);
1381
+ return this.nw() + '@' + get_hexAddress(this);
1599
1382
  }
1600
- r1z() {
1601
- return this.f1y() + '{' + stateString(this, this.n1y()) + '}';
1383
+ nw() {
1384
+ return this.cv() + '{' + stateString(this, this.kv()) + '}';
1602
1385
  }
1603
- f1y() {
1386
+ cv() {
1604
1387
  return get_classSimpleName(this);
1605
1388
  }
1606
- s1z() {
1607
- var state = this.n1y();
1389
+ ow() {
1390
+ var state = this.kv();
1608
1391
  // Inline function 'kotlin.check' call
1609
1392
  if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1610
1393
  var message = 'This job has not completed yet';
1611
- throw IllegalStateException().o4(toString(message));
1394
+ throw IllegalStateException().x4(toString(message));
1612
1395
  }
1613
1396
  return _get_exceptionOrNull__b3j7js(this, state);
1614
1397
  }
1615
- t1z() {
1616
- var state = this.n1y();
1398
+ pw() {
1399
+ var state = this.kv();
1617
1400
  // Inline function 'kotlin.check' call
1618
1401
  if (!!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1619
1402
  var message = 'This job has not completed yet';
1620
- throw IllegalStateException().o4(toString(message));
1403
+ throw IllegalStateException().x4(toString(message));
1621
1404
  }
1622
1405
  if (state instanceof CompletedExceptionally())
1623
- throw state.y1x_1;
1406
+ throw state.vu_1;
1624
1407
  return unboxState(state);
1625
1408
  }
1626
- u1z($completion) {
1409
+ qw($completion) {
1627
1410
  $l$loop: while (true) {
1628
- var state = this.n1y();
1411
+ var state = this.kv();
1629
1412
  if (!(!(state == null) ? isInterface(state, Incomplete()) : false)) {
1630
1413
  if (state instanceof CompletedExceptionally()) {
1631
1414
  // Inline function 'kotlinx.coroutines.internal.recoverAndThrow' call
1632
- throw state.y1x_1;
1415
+ throw state.vu_1;
1633
1416
  }
1634
1417
  return unboxState(state);
1635
1418
  }
@@ -1639,17 +1422,157 @@ function JobSupport() {
1639
1422
  return awaitSuspend(this, $completion);
1640
1423
  }
1641
1424
  }
1642
- protoOf($).x1y = invokeOnCompletion$default;
1643
- protoOf($).d1z = cancel$default;
1644
- protoOf($).lm = plus;
1645
- protoOf($).nc = get;
1646
- protoOf($).km = fold;
1647
- protoOf($).jm = minusKey;
1425
+ protoOf($).uv = invokeOnCompletion$default;
1426
+ protoOf($).aw = cancel$default;
1427
+ protoOf($).il = plus;
1428
+ protoOf($).mc = get;
1429
+ protoOf($).hl = fold;
1430
+ protoOf($).gl = minusKey;
1648
1431
  initMetadataForClass($, 'JobSupport', VOID, VOID, [Job(), ParentJob()], [0]);
1649
1432
  JobSupportClass = $;
1650
1433
  }
1651
1434
  return JobSupportClass;
1652
1435
  }
1436
+ function handlesExceptionF($this) {
1437
+ var tmp = $this.iv();
1438
+ var tmp0_safe_receiver = tmp instanceof ChildHandleNode() ? tmp : null;
1439
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.m10();
1440
+ var tmp_0;
1441
+ if (tmp1_elvis_lhs == null) {
1442
+ return false;
1443
+ } else {
1444
+ tmp_0 = tmp1_elvis_lhs;
1445
+ }
1446
+ var parentJob = tmp_0;
1447
+ while (true) {
1448
+ if (parentJob.lw())
1449
+ return true;
1450
+ var tmp_1 = parentJob.iv();
1451
+ var tmp2_safe_receiver = tmp_1 instanceof ChildHandleNode() ? tmp_1 : null;
1452
+ var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.m10();
1453
+ var tmp_2;
1454
+ if (tmp3_elvis_lhs == null) {
1455
+ return false;
1456
+ } else {
1457
+ tmp_2 = tmp3_elvis_lhs;
1458
+ }
1459
+ parentJob = tmp_2;
1460
+ }
1461
+ }
1462
+ var JobImplClass;
1463
+ function JobImpl() {
1464
+ if (JobImplClass === VOID) {
1465
+ class $ extends JobSupport() {
1466
+ constructor(parent) {
1467
+ super(true);
1468
+ this.lu(parent);
1469
+ this.x13_1 = handlesExceptionF(this);
1470
+ }
1471
+ yv() {
1472
+ return true;
1473
+ }
1474
+ lw() {
1475
+ return this.x13_1;
1476
+ }
1477
+ y10() {
1478
+ return this.hw(Unit_instance);
1479
+ }
1480
+ x10(exception) {
1481
+ return this.hw(new (CompletedExceptionally())(exception));
1482
+ }
1483
+ }
1484
+ initMetadataForClass($, 'JobImpl', VOID, VOID, [JobSupport(), CompletableJob()], [0]);
1485
+ JobImplClass = $;
1486
+ }
1487
+ return JobImplClass;
1488
+ }
1489
+ var EmptyClass;
1490
+ function Empty() {
1491
+ if (EmptyClass === VOID) {
1492
+ class $ {
1493
+ constructor(isActive) {
1494
+ this.u12_1 = isActive;
1495
+ }
1496
+ qu() {
1497
+ return this.u12_1;
1498
+ }
1499
+ n10() {
1500
+ return null;
1501
+ }
1502
+ toString() {
1503
+ return 'Empty{' + (this.u12_1 ? 'Active' : 'New') + '}';
1504
+ }
1505
+ }
1506
+ initMetadataForClass($, 'Empty', VOID, VOID, [Incomplete()]);
1507
+ EmptyClass = $;
1508
+ }
1509
+ return EmptyClass;
1510
+ }
1511
+ var IncompleteClass;
1512
+ function Incomplete() {
1513
+ if (IncompleteClass === VOID) {
1514
+ class $ {}
1515
+ initMetadataForInterface($, 'Incomplete');
1516
+ IncompleteClass = $;
1517
+ }
1518
+ return IncompleteClass;
1519
+ }
1520
+ var NodeListClass;
1521
+ function NodeList() {
1522
+ if (NodeListClass === VOID) {
1523
+ class $ extends LockFreeLinkedListHead() {
1524
+ qu() {
1525
+ return true;
1526
+ }
1527
+ n10() {
1528
+ return this;
1529
+ }
1530
+ b14(state) {
1531
+ // Inline function 'kotlin.text.buildString' call
1532
+ // Inline function 'kotlin.apply' call
1533
+ var this_0 = StringBuilder().x();
1534
+ this_0.ob('List{');
1535
+ this_0.ob(state);
1536
+ this_0.ob('}[');
1537
+ var first = true;
1538
+ // Inline function 'kotlinx.coroutines.internal.LockFreeLinkedListHead.forEach' call
1539
+ var cur = this.o10_1;
1540
+ while (!equals(cur, this)) {
1541
+ var node = cur;
1542
+ if (node instanceof JobNode()) {
1543
+ if (first) {
1544
+ first = false;
1545
+ } else
1546
+ this_0.ob(', ');
1547
+ this_0.nb(node);
1548
+ }
1549
+ cur = cur.o10_1;
1550
+ }
1551
+ this_0.ob(']');
1552
+ return this_0.toString();
1553
+ }
1554
+ toString() {
1555
+ return get_DEBUG() ? this.b14('Active') : super.toString();
1556
+ }
1557
+ }
1558
+ initMetadataForClass($, 'NodeList', NodeList, VOID, [LockFreeLinkedListHead(), Incomplete()]);
1559
+ NodeListClass = $;
1560
+ }
1561
+ return NodeListClass;
1562
+ }
1563
+ var IncompleteStateBoxClass;
1564
+ function IncompleteStateBox() {
1565
+ if (IncompleteStateBoxClass === VOID) {
1566
+ class $ {
1567
+ constructor(state) {
1568
+ this.e12_1 = state;
1569
+ }
1570
+ }
1571
+ initMetadataForClass($, 'IncompleteStateBox');
1572
+ IncompleteStateBoxClass = $;
1573
+ }
1574
+ return IncompleteStateBoxClass;
1575
+ }
1653
1576
  function boxIncomplete(_this__u8e3s4) {
1654
1577
  _init_properties_JobSupport_kt__68f172();
1655
1578
  var tmp;
@@ -1665,16 +1588,16 @@ function InactiveNodeList() {
1665
1588
  if (InactiveNodeListClass === VOID) {
1666
1589
  class $ {
1667
1590
  constructor(list) {
1668
- this.j27_1 = list;
1591
+ this.t12_1 = list;
1669
1592
  }
1670
- j24() {
1671
- return this.j27_1;
1593
+ n10() {
1594
+ return this.t12_1;
1672
1595
  }
1673
- t1x() {
1596
+ qu() {
1674
1597
  return false;
1675
1598
  }
1676
1599
  toString() {
1677
- return get_DEBUG() ? this.j27_1.u26('New') : anyToString(this);
1600
+ return get_DEBUG() ? this.t12_1.b14('New') : anyToString(this);
1678
1601
  }
1679
1602
  }
1680
1603
  initMetadataForClass($, 'InactiveNodeList', VOID, VOID, [Incomplete()]);
@@ -1688,13 +1611,13 @@ function InvokeOnCompletion() {
1688
1611
  class $ extends JobNode() {
1689
1612
  constructor(handler) {
1690
1613
  super();
1691
- this.m29_1 = handler;
1614
+ this.g14_1 = handler;
1692
1615
  }
1693
- d24() {
1616
+ h10() {
1694
1617
  return false;
1695
1618
  }
1696
- t21(cause) {
1697
- return this.m29_1(cause);
1619
+ vx(cause) {
1620
+ return this.g14_1(cause);
1698
1621
  }
1699
1622
  }
1700
1623
  initMetadataForClass($, 'InvokeOnCompletion');
@@ -1708,15 +1631,15 @@ function InvokeOnCancelling() {
1708
1631
  class $ extends JobNode() {
1709
1632
  constructor(handler) {
1710
1633
  super();
1711
- this.r29_1 = handler;
1712
- this.s29_1 = atomic$boolean$1(false);
1634
+ this.l14_1 = handler;
1635
+ this.m14_1 = atomic$boolean$1(false);
1713
1636
  }
1714
- d24() {
1637
+ h10() {
1715
1638
  return true;
1716
1639
  }
1717
- t21(cause) {
1718
- if (this.s29_1.atomicfu$compareAndSet(false, true))
1719
- this.r29_1(cause);
1640
+ vx(cause) {
1641
+ if (this.m14_1.atomicfu$compareAndSet(false, true))
1642
+ this.l14_1(cause);
1720
1643
  }
1721
1644
  }
1722
1645
  initMetadataForClass($, 'InvokeOnCancelling');
@@ -1730,17 +1653,17 @@ function ResumeOnCompletion() {
1730
1653
  class $ extends JobNode() {
1731
1654
  constructor(continuation) {
1732
1655
  super();
1733
- this.x29_1 = continuation;
1656
+ this.r14_1 = continuation;
1734
1657
  }
1735
- d24() {
1658
+ h10() {
1736
1659
  return false;
1737
1660
  }
1738
- t21(cause) {
1661
+ vx(cause) {
1739
1662
  // Inline function 'kotlin.coroutines.resume' call
1740
- var this_0 = this.x29_1;
1663
+ var this_0 = this.r14_1;
1741
1664
  // Inline function 'kotlin.Companion.success' call
1742
1665
  var tmp$ret$0 = _Result___init__impl__xyqfz8(Unit_instance);
1743
- this_0.lc(tmp$ret$0);
1666
+ this_0.bc(tmp$ret$0);
1744
1667
  return Unit_instance;
1745
1668
  }
1746
1669
  }
@@ -1755,19 +1678,19 @@ function ChildHandleNode() {
1755
1678
  class $ extends JobNode() {
1756
1679
  constructor(childJob) {
1757
1680
  super();
1758
- this.t27_1 = childJob;
1681
+ this.e13_1 = childJob;
1759
1682
  }
1760
- m1y() {
1761
- return this.i24();
1683
+ jv() {
1684
+ return this.m10();
1762
1685
  }
1763
- d24() {
1686
+ h10() {
1764
1687
  return true;
1765
1688
  }
1766
- t21(cause) {
1767
- return this.t27_1.f1z(this.i24());
1689
+ vx(cause) {
1690
+ return this.e13_1.cw(this.m10());
1768
1691
  }
1769
- g1z(cause) {
1770
- return this.i24().g1z(cause);
1692
+ dw(cause) {
1693
+ return this.m10().dw(cause);
1771
1694
  }
1772
1695
  }
1773
1696
  initMetadataForClass($, 'ChildHandleNode');
@@ -1775,41 +1698,35 @@ function ChildHandleNode() {
1775
1698
  }
1776
1699
  return ChildHandleNodeClass;
1777
1700
  }
1778
- function unboxState(_this__u8e3s4) {
1779
- _init_properties_JobSupport_kt__68f172();
1780
- var tmp0_safe_receiver = _this__u8e3s4 instanceof IncompleteStateBox() ? _this__u8e3s4 : null;
1781
- var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.y29_1;
1782
- return tmp1_elvis_lhs == null ? _this__u8e3s4 : tmp1_elvis_lhs;
1783
- }
1784
1701
  var ResumeAwaitOnCompletionClass;
1785
1702
  function ResumeAwaitOnCompletion() {
1786
1703
  if (ResumeAwaitOnCompletionClass === VOID) {
1787
1704
  class $ extends JobNode() {
1788
1705
  constructor(continuation) {
1789
1706
  super();
1790
- this.d2a_1 = continuation;
1707
+ this.w14_1 = continuation;
1791
1708
  }
1792
- d24() {
1709
+ h10() {
1793
1710
  return false;
1794
1711
  }
1795
- t21(cause) {
1796
- var state = this.i24().n1y();
1712
+ vx(cause) {
1713
+ var state = this.m10().kv();
1797
1714
  // Inline function 'kotlinx.coroutines.assert' call
1798
1715
  if (state instanceof CompletedExceptionally()) {
1799
- var tmp0 = this.d2a_1;
1716
+ var tmp0 = this.w14_1;
1800
1717
  // Inline function 'kotlin.coroutines.resumeWithException' call
1801
1718
  // Inline function 'kotlin.Companion.failure' call
1802
- var exception = state.y1x_1;
1719
+ var exception = state.vu_1;
1803
1720
  var tmp$ret$1 = _Result___init__impl__xyqfz8(createFailure(exception));
1804
- tmp0.lc(tmp$ret$1);
1721
+ tmp0.bc(tmp$ret$1);
1805
1722
  } else {
1806
- var tmp0_0 = this.d2a_1;
1723
+ var tmp0_0 = this.w14_1;
1807
1724
  var tmp = unboxState(state);
1808
1725
  // Inline function 'kotlin.coroutines.resume' call
1809
1726
  // Inline function 'kotlin.Companion.success' call
1810
1727
  var value = (tmp == null ? true : !(tmp == null)) ? tmp : THROW_CCE();
1811
1728
  var tmp$ret$3 = _Result___init__impl__xyqfz8(value);
1812
- tmp0_0.lc(tmp$ret$3);
1729
+ tmp0_0.bc(tmp$ret$3);
1813
1730
  }
1814
1731
  }
1815
1732
  }
@@ -1818,72 +1735,6 @@ function ResumeAwaitOnCompletion() {
1818
1735
  }
1819
1736
  return ResumeAwaitOnCompletionClass;
1820
1737
  }
1821
- var IncompleteStateBoxClass;
1822
- function IncompleteStateBox() {
1823
- if (IncompleteStateBoxClass === VOID) {
1824
- class $ {
1825
- constructor(state) {
1826
- this.y29_1 = state;
1827
- }
1828
- }
1829
- initMetadataForClass($, 'IncompleteStateBox');
1830
- IncompleteStateBoxClass = $;
1831
- }
1832
- return IncompleteStateBoxClass;
1833
- }
1834
- function handlesExceptionF($this) {
1835
- var tmp = $this.l1y();
1836
- var tmp0_safe_receiver = tmp instanceof ChildHandleNode() ? tmp : null;
1837
- var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.i24();
1838
- var tmp_0;
1839
- if (tmp1_elvis_lhs == null) {
1840
- return false;
1841
- } else {
1842
- tmp_0 = tmp1_elvis_lhs;
1843
- }
1844
- var parentJob = tmp_0;
1845
- while (true) {
1846
- if (parentJob.p1z())
1847
- return true;
1848
- var tmp_1 = parentJob.l1y();
1849
- var tmp2_safe_receiver = tmp_1 instanceof ChildHandleNode() ? tmp_1 : null;
1850
- var tmp3_elvis_lhs = tmp2_safe_receiver == null ? null : tmp2_safe_receiver.i24();
1851
- var tmp_2;
1852
- if (tmp3_elvis_lhs == null) {
1853
- return false;
1854
- } else {
1855
- tmp_2 = tmp3_elvis_lhs;
1856
- }
1857
- parentJob = tmp_2;
1858
- }
1859
- }
1860
- var JobImplClass;
1861
- function JobImpl() {
1862
- if (JobImplClass === VOID) {
1863
- class $ extends JobSupport() {
1864
- constructor(parent) {
1865
- super(true);
1866
- this.o1x(parent);
1867
- this.g2a_1 = handlesExceptionF(this);
1868
- }
1869
- b1z() {
1870
- return true;
1871
- }
1872
- p1z() {
1873
- return this.g2a_1;
1874
- }
1875
- d25() {
1876
- return this.k1z(Unit_instance);
1877
- }
1878
- c25(exception) {
1879
- return this.k1z(new (CompletedExceptionally())(exception));
1880
- }
1881
- }
1882
- initMetadataForClass($, 'JobImpl', VOID, VOID, [JobSupport(), CompletableJob()], [0]);
1883
- JobImplClass = $;
1884
- }
1885
- return JobImplClass;
1886
- }
1887
1738
  var properties_initialized_JobSupport_kt_5iq8a4;
1888
1739
  function _init_properties_JobSupport_kt__68f172() {
1889
1740
  if (!properties_initialized_JobSupport_kt_5iq8a4) {