@attocash/commons-js 5.0.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 (1353) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs +34 -0
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +1 -0
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +323 -0
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +100 -0
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +258 -0
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +1 -0
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +24 -0
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +1 -0
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +247 -0
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +157 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +174 -0
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +126 -0
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +194 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +263 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +845 -0
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +1 -0
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +95 -0
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +243 -0
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +864 -0
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +317 -0
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +756 -0
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +682 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +52 -0
  40. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +240 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +175 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +698 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +71 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +124 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +683 -0
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +94 -0
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +46 -0
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +1 -0
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +57 -0
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +442 -0
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +53 -0
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +1 -0
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
  79. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.ts +19 -0
  80. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
  81. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
  82. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +109 -0
  83. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
  84. package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.ts +41 -0
  85. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +19 -0
  86. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
  87. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +534 -0
  88. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
  89. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.ts +37 -0
  90. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +19 -0
  91. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
  92. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +468 -0
  93. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
  94. package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.ts +36 -0
  95. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +19 -0
  96. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
  97. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +236 -0
  98. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
  99. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.ts +33 -0
  100. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +25 -0
  101. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
  102. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
  103. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
  104. package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.ts +51 -0
  105. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +30 -0
  106. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
  107. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +341 -0
  108. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
  109. package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.ts +252 -0
  110. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +61 -0
  111. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
  112. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2483 -0
  113. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
  114. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +141 -0
  115. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
  116. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.ts +25 -0
  117. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +19 -0
  118. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
  119. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
  120. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
  121. package/commons-commons-core/cash/atto/commons/AttoHash.export.d.ts +35 -0
  122. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +19 -0
  123. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
  124. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
  125. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
  126. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
  127. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
  128. package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.ts +30 -0
  129. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +19 -0
  130. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
  131. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +233 -0
  132. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
  133. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.ts +51 -0
  134. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +33 -0
  135. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
  136. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
  137. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.ts +25 -0
  139. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +19 -0
  140. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
  141. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
  142. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
  143. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +189 -0
  144. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
  145. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.ts +26 -0
  146. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +19 -0
  147. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
  148. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
  149. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
  150. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
  151. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
  152. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.ts +34 -0
  153. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +19 -0
  154. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +413 -0
  156. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.ts +14 -0
  158. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
  159. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
  160. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +61 -0
  161. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.ts +27 -0
  163. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +19 -0
  164. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
  165. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
  166. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
  167. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
  168. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
  169. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +14 -0
  170. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +12 -0
  171. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs.map +1 -0
  172. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +478 -0
  173. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
  174. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +169 -0
  175. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
  176. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.ts +15 -0
  177. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
  178. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
  179. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
  180. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
  181. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.ts +34 -0
  182. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +19 -0
  183. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
  184. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +338 -0
  185. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
  186. package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.ts +25 -0
  187. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +19 -0
  188. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
  189. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +156 -0
  190. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
  191. package/commons-commons-core/cash/atto/commons/AttoVote.export.d.ts +35 -0
  192. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +19 -0
  193. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
  194. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +387 -0
  195. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
  196. package/commons-commons-core/cash/atto/commons/AttoWork.export.d.ts +29 -0
  197. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +19 -0
  198. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
  199. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +250 -0
  200. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
  201. package/commons-commons-core/cash/atto/commons/Extensions.export.d.ts +4 -0
  202. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
  203. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
  204. package/commons-commons-core/cash/atto/commons/Extensions.mjs +99 -0
  205. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
  206. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +55 -0
  207. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +1 -0
  208. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +54 -0
  209. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +1 -0
  210. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
  211. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
  212. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
  213. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
  214. package/commons-commons-core.mjs +29 -0
  215. package/commons-commons-core.mjs.map +1 -0
  216. package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs +14 -0
  217. package/commons-commons-js/cash/atto/commons/js/Placeholder.mjs.map +1 -0
  218. package/commons-commons-js.mjs +10 -0
  219. package/commons-commons-js.mjs.map +1 -0
  220. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.ts +99 -0
  221. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +37 -0
  222. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
  223. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +21 -0
  224. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +4 -0
  225. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map +1 -0
  226. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +94 -0
  227. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +1 -0
  228. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +865 -0
  229. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
  230. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +1857 -0
  231. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
  232. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.d.ts +3 -0
  233. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs +12 -0
  234. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs.map +1 -0
  235. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs +577 -0
  236. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs.map +1 -0
  237. package/commons-commons-node-remote.mjs +7 -0
  238. package/commons-commons-node-remote.mjs.map +1 -0
  239. package/commons-commons-node.mjs +7 -0
  240. package/commons-commons-node.mjs.map +1 -0
  241. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +73 -0
  242. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
  243. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +10 -0
  244. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +4 -0
  245. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map +1 -0
  246. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs +22 -0
  247. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map +1 -0
  248. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +399 -0
  249. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
  250. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts +3 -0
  251. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +12 -0
  252. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map +1 -0
  253. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +272 -0
  254. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +1 -0
  255. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +402 -0
  256. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
  257. package/commons-commons-worker-remote.mjs +7 -0
  258. package/commons-commons-worker-remote.mjs.map +1 -0
  259. package/commons-commons-worker.mjs +4 -0
  260. package/commons-commons-worker.mjs.map +1 -0
  261. package/index.d.ts +6 -0
  262. package/index.mjs +5 -0
  263. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs +47 -0
  264. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +1 -0
  265. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
  266. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
  267. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
  268. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
  269. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
  270. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
  271. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
  272. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
  273. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
  274. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
  275. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
  276. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
  277. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
  278. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
  279. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
  280. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
  281. package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
  282. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
  283. package/kotlin-kotlin-stdlib/kotlin/Number.mjs +22 -0
  284. package/kotlin-kotlin-stdlib/kotlin/Number.mjs.map +1 -0
  285. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +53 -0
  286. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
  287. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +163 -0
  288. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
  289. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +143 -0
  290. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
  291. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
  292. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
  293. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +103 -0
  294. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
  295. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
  296. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
  297. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +186 -0
  298. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
  299. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
  300. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
  301. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +186 -0
  302. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
  303. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +108 -0
  304. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
  305. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +187 -0
  306. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
  307. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
  308. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
  309. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +186 -0
  310. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
  311. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
  312. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
  313. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +169 -0
  314. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
  315. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +101 -0
  316. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
  317. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +244 -0
  318. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
  319. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +311 -0
  320. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
  321. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +53 -0
  322. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
  323. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +224 -0
  324. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
  325. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
  326. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
  327. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
  328. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
  329. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
  330. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
  331. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +547 -0
  332. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
  333. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
  334. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
  335. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +214 -0
  336. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
  337. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +128 -0
  338. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
  339. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +92 -0
  340. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
  341. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +313 -0
  342. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
  343. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
  344. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
  345. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +174 -0
  346. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
  347. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
  348. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
  349. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
  350. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
  351. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +54 -0
  352. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
  353. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +726 -0
  354. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
  355. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
  356. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
  357. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
  358. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
  359. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
  360. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
  361. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +45 -0
  362. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
  363. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
  364. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
  365. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
  366. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
  367. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +210 -0
  368. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
  369. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +47 -0
  370. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
  371. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +58 -0
  372. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
  373. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
  374. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
  375. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +114 -0
  376. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
  377. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
  378. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
  379. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +318 -0
  380. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
  381. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +182 -0
  382. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
  383. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +501 -0
  384. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
  385. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
  386. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
  387. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
  388. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
  389. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +32 -0
  390. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
  391. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
  392. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
  393. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
  394. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
  395. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +23 -0
  396. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
  397. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
  398. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
  399. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
  400. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
  401. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
  402. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
  403. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +238 -0
  404. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
  405. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +150 -0
  406. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
  407. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +55 -0
  408. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
  409. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
  410. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
  411. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
  412. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
  413. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
  414. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
  415. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +139 -0
  416. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
  417. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +69 -0
  418. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
  419. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
  420. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
  421. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +46 -0
  422. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
  423. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +50 -0
  424. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
  425. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
  426. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
  427. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
  428. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
  429. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
  430. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
  431. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +95 -0
  432. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
  433. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
  434. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
  435. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
  436. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
  437. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +79 -0
  438. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
  439. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +285 -0
  440. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
  441. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
  442. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
  443. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
  444. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
  445. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +73 -0
  446. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
  447. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +75 -0
  448. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
  449. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
  450. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
  451. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +78 -0
  452. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
  453. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
  454. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
  455. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +174 -0
  456. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
  457. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
  458. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
  459. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
  460. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
  461. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +387 -0
  462. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +1 -0
  463. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
  464. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
  465. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
  466. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
  467. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +74 -0
  468. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
  469. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
  470. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
  471. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +246 -0
  472. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
  473. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +130 -0
  474. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +226 -0
  476. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
  477. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
  478. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
  479. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
  480. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
  481. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
  482. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
  483. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
  484. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
  485. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +52 -0
  486. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
  487. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
  488. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +115 -0
  490. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
  491. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
  492. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
  493. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +183 -0
  494. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
  495. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
  496. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
  497. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +64 -0
  498. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
  499. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +285 -0
  500. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
  501. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
  502. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
  503. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
  504. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
  505. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
  506. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
  507. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
  508. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
  509. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
  510. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
  511. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
  512. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
  513. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +520 -0
  514. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
  515. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
  516. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
  517. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +220 -0
  518. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
  519. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
  520. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
  521. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +154 -0
  522. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
  523. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +847 -0
  524. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
  525. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +291 -0
  526. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
  527. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
  528. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
  529. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
  530. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
  531. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
  532. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
  533. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
  534. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
  535. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
  536. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
  537. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
  538. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
  539. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
  540. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
  541. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
  542. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
  543. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
  544. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
  545. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
  546. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
  547. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
  548. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
  549. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
  550. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
  551. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +773 -0
  552. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
  553. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
  554. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
  555. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +111 -0
  556. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
  557. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +179 -0
  558. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
  559. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +84 -0
  560. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
  561. package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
  562. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
  563. package/kotlin-kotlin-stdlib/reflection.mjs +181 -0
  564. package/kotlin-kotlin-stdlib/reflection.mjs.map +1 -0
  565. package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
  566. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
  567. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +38 -0
  568. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -0
  569. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +26 -0
  570. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -0
  571. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +34 -0
  572. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -0
  573. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +53 -0
  574. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -0
  575. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
  576. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
  577. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +232 -0
  578. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
  579. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
  580. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
  581. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
  582. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
  583. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +285 -0
  584. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
  585. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
  586. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
  587. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +855 -0
  588. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
  589. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +105 -0
  590. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
  591. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
  592. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
  593. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
  594. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
  595. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +96 -0
  596. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
  597. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +87 -0
  598. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
  599. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
  600. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
  601. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
  602. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
  603. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +78 -0
  604. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
  605. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +83 -0
  606. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
  607. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
  608. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
  609. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
  610. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
  611. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +59 -0
  612. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
  613. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
  614. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
  615. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
  616. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
  617. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +134 -0
  618. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
  619. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
  620. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
  621. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
  622. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
  623. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
  624. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
  625. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
  626. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
  627. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +213 -0
  628. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
  629. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1910 -0
  630. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
  631. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +56 -0
  632. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
  633. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
  634. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
  635. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
  636. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
  637. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
  638. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
  639. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
  640. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
  641. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +175 -0
  642. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
  643. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +67 -0
  644. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
  645. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
  646. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
  647. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
  648. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
  649. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
  650. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
  651. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +3352 -0
  652. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
  653. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
  654. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
  655. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +76 -0
  656. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
  657. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
  658. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
  659. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +106 -0
  660. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
  661. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +93 -0
  662. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
  663. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +135 -0
  664. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
  665. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +100 -0
  666. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
  667. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
  668. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
  669. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +196 -0
  670. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
  671. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
  672. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
  673. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +31 -0
  674. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
  675. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
  676. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
  677. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +49 -0
  678. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
  679. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +15 -0
  680. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
  681. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +302 -0
  682. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
  683. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
  684. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
  685. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
  686. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
  687. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
  688. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
  689. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
  690. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
  691. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
  692. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
  693. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
  694. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
  695. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
  696. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
  697. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +23 -0
  698. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
  699. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
  700. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
  701. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
  702. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
  703. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +50 -0
  704. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
  705. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
  706. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
  707. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
  708. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
  709. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
  710. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
  711. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
  712. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
  713. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +133 -0
  714. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
  715. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
  716. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
  717. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +453 -0
  718. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
  719. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
  720. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
  721. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
  722. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
  723. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
  724. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
  725. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
  726. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
  727. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +599 -0
  728. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
  729. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +153 -0
  730. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
  731. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
  732. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
  733. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
  734. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
  735. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +81 -0
  736. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
  737. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
  738. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
  739. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +528 -0
  740. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
  741. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
  742. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
  743. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
  744. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
  745. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
  746. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
  747. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
  748. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
  749. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +148 -0
  750. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
  751. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +249 -0
  752. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
  753. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +24 -0
  754. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
  755. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
  756. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
  757. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
  758. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
  759. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
  760. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
  761. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +107 -0
  762. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
  763. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +193 -0
  764. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
  765. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
  766. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
  767. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
  768. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
  769. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +282 -0
  770. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
  771. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +153 -0
  772. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
  773. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
  774. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
  775. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +216 -0
  776. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
  777. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
  778. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
  779. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
  780. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
  781. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +304 -0
  782. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
  783. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
  784. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
  785. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +137 -0
  786. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
  787. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
  788. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
  789. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
  790. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
  791. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
  792. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
  793. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
  794. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
  795. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +135 -0
  796. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
  797. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
  798. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
  799. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
  800. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
  801. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
  802. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
  803. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
  804. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
  805. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +198 -0
  806. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
  807. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
  808. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
  809. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
  810. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
  811. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
  812. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
  813. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
  814. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
  815. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
  816. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
  817. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +92 -0
  818. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
  819. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
  820. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
  821. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +260 -0
  822. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
  823. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
  824. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
  825. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +333 -0
  826. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
  827. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
  828. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
  829. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
  830. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
  831. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +488 -0
  832. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
  833. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +260 -0
  834. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
  835. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
  836. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
  837. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
  838. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
  839. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
  840. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
  841. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
  842. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
  843. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +31 -0
  844. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
  845. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
  846. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
  847. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
  848. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
  849. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
  850. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
  851. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
  852. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
  853. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +431 -0
  854. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
  855. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +570 -0
  856. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
  857. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
  858. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
  859. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
  860. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
  861. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +756 -0
  862. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
  863. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
  864. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
  865. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
  866. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
  867. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
  868. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
  869. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
  870. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
  871. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +259 -0
  872. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
  873. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +155 -0
  874. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
  875. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
  876. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
  877. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
  878. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
  879. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
  880. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
  881. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +364 -0
  882. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
  883. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
  884. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
  885. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
  886. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
  887. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +699 -0
  888. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
  889. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
  890. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
  891. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
  892. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
  893. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
  894. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
  895. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +990 -0
  896. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
  897. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
  898. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
  899. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
  900. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
  901. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +56 -0
  902. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +1 -0
  903. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +381 -0
  904. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +1 -0
  905. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +52 -0
  906. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +1 -0
  907. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +161 -0
  908. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +1 -0
  909. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +39 -0
  910. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +1 -0
  911. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +1338 -0
  912. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +1 -0
  913. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +122 -0
  914. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +1 -0
  915. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +12 -0
  916. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +1 -0
  917. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts +4 -0
  918. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +13 -0
  919. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map +1 -0
  920. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +29 -0
  921. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +1 -0
  922. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +1339 -0
  923. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +1 -0
  924. package/ktor-ktor-client-cio.mjs +12 -0
  925. package/ktor-ktor-client-cio.mjs.map +1 -0
  926. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +816 -0
  927. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
  928. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
  929. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
  930. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
  931. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
  932. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +430 -0
  933. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
  934. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
  935. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
  936. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
  937. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
  938. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
  939. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
  940. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
  941. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
  942. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +311 -0
  943. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
  944. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +183 -0
  945. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
  946. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +47 -0
  947. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
  948. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +179 -0
  949. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
  950. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +476 -0
  951. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
  952. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs +15 -0
  953. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +1 -0
  954. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +128 -0
  955. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
  956. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
  957. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
  958. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
  959. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
  960. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
  961. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
  962. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +40 -0
  963. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +1 -0
  964. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +23 -0
  965. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +1 -0
  966. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
  967. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
  968. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.ts +4 -0
  969. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
  970. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
  971. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +92 -0
  972. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
  973. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +496 -0
  974. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
  975. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +330 -0
  976. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
  977. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
  978. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
  979. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +212 -0
  980. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
  981. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
  982. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
  983. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +31 -0
  984. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
  985. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +467 -0
  986. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
  987. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +288 -0
  988. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
  989. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +632 -0
  990. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
  991. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
  992. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
  993. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +916 -0
  994. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
  995. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
  996. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
  997. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +524 -0
  998. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
  999. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +288 -0
  1000. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
  1001. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +358 -0
  1002. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
  1003. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +420 -0
  1004. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
  1005. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +513 -0
  1006. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
  1007. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +333 -0
  1008. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
  1009. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
  1010. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
  1011. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +52 -0
  1012. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
  1013. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
  1014. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
  1015. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +245 -0
  1016. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
  1017. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
  1018. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
  1019. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +297 -0
  1020. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
  1021. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +46 -0
  1022. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
  1023. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
  1024. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
  1025. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +332 -0
  1026. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
  1027. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +100 -0
  1028. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
  1029. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
  1030. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
  1031. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
  1032. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
  1033. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +286 -0
  1034. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
  1035. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
  1036. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
  1037. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
  1038. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
  1039. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +46 -0
  1040. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +1 -0
  1041. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
  1042. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
  1043. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
  1044. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
  1045. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +197 -0
  1046. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
  1047. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +153 -0
  1048. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
  1049. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +417 -0
  1050. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
  1051. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +209 -0
  1052. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
  1053. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
  1054. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
  1055. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +55 -0
  1056. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
  1057. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
  1058. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
  1059. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
  1060. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
  1061. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
  1062. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
  1063. package/ktor-ktor-client-core.mjs +12 -0
  1064. package/ktor-ktor-client-core.mjs.map +1 -0
  1065. package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
  1066. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
  1067. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
  1068. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
  1069. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
  1070. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
  1071. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
  1072. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
  1073. package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
  1074. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
  1075. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +373 -0
  1076. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
  1077. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +244 -0
  1078. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
  1079. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
  1080. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
  1081. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +95 -0
  1082. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
  1083. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +108 -0
  1084. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
  1085. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
  1086. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
  1087. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +144 -0
  1088. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
  1089. package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
  1090. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
  1091. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
  1092. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
  1093. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
  1094. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
  1095. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
  1096. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
  1097. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +141 -0
  1098. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
  1099. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +187 -0
  1100. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
  1101. package/ktor-ktor-http/io/ktor/http/Url.mjs +384 -0
  1102. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
  1103. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +157 -0
  1104. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
  1105. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
  1106. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
  1107. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
  1108. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
  1109. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
  1110. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
  1111. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
  1112. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
  1113. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +36 -0
  1114. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
  1115. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +680 -0
  1116. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +1 -0
  1117. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +221 -0
  1118. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +1 -0
  1119. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +171 -0
  1120. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +1 -0
  1121. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +389 -0
  1122. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
  1123. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +468 -0
  1124. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
  1125. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +888 -0
  1126. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
  1127. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +51 -0
  1128. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +1 -0
  1129. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +58 -0
  1130. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +1 -0
  1131. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +314 -0
  1132. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
  1133. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
  1134. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
  1135. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
  1136. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
  1137. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
  1138. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
  1139. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +477 -0
  1140. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
  1141. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
  1142. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
  1143. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
  1144. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
  1145. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +61 -0
  1146. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
  1147. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
  1148. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
  1149. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +700 -0
  1150. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
  1151. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
  1152. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
  1153. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +414 -0
  1154. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
  1155. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +28 -0
  1156. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +1 -0
  1157. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
  1158. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
  1159. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +1825 -0
  1160. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
  1161. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +124 -0
  1162. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
  1163. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +509 -0
  1164. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
  1165. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +107 -0
  1166. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +1 -0
  1167. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +89 -0
  1168. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
  1169. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +139 -0
  1170. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
  1171. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
  1172. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
  1173. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
  1174. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
  1175. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +118 -0
  1176. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
  1177. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
  1178. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
  1179. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +406 -0
  1180. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
  1181. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
  1182. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
  1183. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +78 -0
  1184. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
  1185. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
  1186. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
  1187. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
  1188. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
  1189. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
  1190. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
  1191. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
  1192. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
  1193. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
  1194. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
  1195. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +17 -0
  1196. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
  1197. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +38 -0
  1198. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
  1199. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +54 -0
  1200. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
  1201. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
  1202. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
  1203. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +22 -0
  1204. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +1 -0
  1205. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
  1206. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
  1207. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
  1208. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
  1209. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
  1210. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
  1211. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
  1212. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
  1213. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +22 -0
  1214. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +1 -0
  1215. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +42 -0
  1216. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +1 -0
  1217. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +35 -0
  1218. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +1 -0
  1219. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +107 -0
  1220. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +1 -0
  1221. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +304 -0
  1222. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +1 -0
  1223. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +573 -0
  1224. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +1 -0
  1225. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +26 -0
  1226. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +1 -0
  1227. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +129 -0
  1228. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +1 -0
  1229. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +33 -0
  1230. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +1 -0
  1231. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +71 -0
  1232. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +1 -0
  1233. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +34 -0
  1234. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +1 -0
  1235. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +41 -0
  1236. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +1 -0
  1237. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +56 -0
  1238. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +1 -0
  1239. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +163 -0
  1240. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +1 -0
  1241. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +18 -0
  1242. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +1 -0
  1243. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +99 -0
  1244. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +1 -0
  1245. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +22 -0
  1246. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map +1 -0
  1247. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +33 -0
  1248. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +1 -0
  1249. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
  1250. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
  1251. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +419 -0
  1252. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
  1253. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
  1254. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
  1255. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
  1256. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
  1257. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +790 -0
  1258. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
  1259. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
  1260. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
  1261. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
  1262. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
  1263. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
  1264. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
  1265. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +127 -0
  1266. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
  1267. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
  1268. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
  1269. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +181 -0
  1270. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
  1271. package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
  1272. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
  1273. package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
  1274. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
  1275. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
  1276. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
  1277. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
  1278. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
  1279. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +152 -0
  1280. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
  1281. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +45 -0
  1282. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
  1283. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +225 -0
  1284. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
  1285. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
  1286. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
  1287. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +377 -0
  1288. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
  1289. package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
  1290. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
  1291. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +32 -0
  1292. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +1 -0
  1293. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +113 -0
  1294. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +1 -0
  1295. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
  1296. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
  1297. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
  1298. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
  1299. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +61 -0
  1300. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
  1301. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +11 -0
  1302. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +1 -0
  1303. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
  1304. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
  1305. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
  1306. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
  1307. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
  1308. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
  1309. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +16 -0
  1310. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +1 -0
  1311. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +145 -0
  1312. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
  1313. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
  1314. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
  1315. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +366 -0
  1316. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
  1317. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
  1318. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
  1319. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
  1320. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
  1321. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
  1322. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
  1323. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
  1324. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
  1325. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +91 -0
  1326. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
  1327. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
  1328. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
  1329. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
  1330. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
  1331. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
  1332. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
  1333. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
  1334. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
  1335. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
  1336. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
  1337. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +217 -0
  1338. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
  1339. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +49 -0
  1340. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
  1341. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +204 -0
  1342. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
  1343. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +47 -0
  1344. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +1 -0
  1345. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +173 -0
  1346. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
  1347. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +47 -0
  1348. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +1 -0
  1349. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +19 -0
  1350. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +1 -0
  1351. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +846 -0
  1352. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +1 -0
  1353. package/package.json +23 -0
@@ -0,0 +1,855 @@
1
+ import {
2
+ CancelledContinuation2f46cx697kdhx as CancelledContinuation,
3
+ CompletedExceptionally3itrk74dxkv9s as CompletedExceptionally,
4
+ toState1u6l586qexaz7 as toState,
5
+ } from './CompletionState.mjs';
6
+ import { isInterface3d6p8outrmvmk as isInterface } from '../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
7
+ import { THROW_CCE2g6jy02ryeudk as THROW_CCE } from '../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
8
+ import { DispatchedContinuation8kf77e5g2ha2 as DispatchedContinuation } from './internal/DispatchedContinuation.mjs';
9
+ import {
10
+ get_isReusableMode36u17a15bfmkj as get_isReusableMode,
11
+ dispatch2sf9j0r16c3zo as dispatch,
12
+ get_isCancellableMode2kisg4oawmpb2 as get_isCancellableMode,
13
+ DispatchedTask39ez3ayqqzt3m as DispatchedTask,
14
+ } from './DispatchedTask.mjs';
15
+ import { IllegalStateExceptionkoljg5n0nrlr as IllegalStateException } from '../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
16
+ import {
17
+ toString1pkumu07cwy4m as toString,
18
+ hashCodeq5arwsb9dgti as hashCode,
19
+ equals2au1ep9vhcato as equals,
20
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
21
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
22
+ import { CompletionHandlerException1h8udyjlr1wky as CompletionHandlerException } from './Exceptions.common.mjs';
23
+ import { handleCoroutineExceptionv1m1bdk4j2te as handleCoroutineException } from './CoroutineExceptionHandler.mjs';
24
+ import {
25
+ Key_instance2tirv2rj82ml4 as Key_instance,
26
+ invokeOnCompletion3npqdfp2wzhn6 as invokeOnCompletion,
27
+ NonDisposableHandle_instance3k5b81ogrgecy as NonDisposableHandle_instance,
28
+ } from './Job.mjs';
29
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
30
+ import { Segmentqmq1glevgieu as Segment } from './internal/ConcurrentLinkedList.mjs';
31
+ import { toString30pk9tzaqopn as toString_0 } from '../../../kotlin-kotlin-stdlib/kotlin/Library.mjs';
32
+ import {
33
+ atomic$int$11d5swdyn6j0pu as atomic$int$1,
34
+ atomic$ref$130aurmcwdfdf1 as atomic$ref$1,
35
+ } from '../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
36
+ import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
37
+ import { recoverStackTrace2i3si2i8nvw1k as recoverStackTrace } from './internal/StackTraceRecovery.mjs';
38
+ import {
39
+ invokeOnCancellationb68niwbjdmgy as invokeOnCancellation,
40
+ CancellableContinuationpb2x00mxmcbt as CancellableContinuation,
41
+ } from './CancellableContinuation.mjs';
42
+ import { toDebugString2sjrkc0z7k0mx as toDebugString } from './CoroutineContext.mjs';
43
+ import {
44
+ get_hexAddress1mxa7txdmiojm as get_hexAddress,
45
+ get_classSimpleName2jgk6lzg9ft1 as get_classSimpleName,
46
+ } from './Debug.mjs';
47
+ import { Waiter3lxa2a79zyo0g as Waiter } from './Waiter.mjs';
48
+ import {
49
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
50
+ initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
51
+ initMetadataForObject1cxne3s9w65el as initMetadataForObject,
52
+ } from '../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
53
+ import { JobNode2tu3g3s3xsko1 as JobNode } from './JobSupport.mjs';
54
+ import { Symbol17xuwzgi5g8ve as Symbol } from './internal/Symbol.mjs';
55
+ //region block: imports
56
+ var imul = Math.imul;
57
+ //endregion
58
+ //region block: pre-declaration
59
+ //endregion
60
+ function get_RESUME_TOKEN() {
61
+ _init_properties_CancellableContinuationImpl_kt__6rrtdd();
62
+ return RESUME_TOKEN;
63
+ }
64
+ var RESUME_TOKEN;
65
+ function _get_parentHandle__f8dcex($this) {
66
+ return $this.q21_1.kotlinx$atomicfu$value;
67
+ }
68
+ function _get_stateDebugRepresentation__bf18u4($this) {
69
+ var tmp0_subject = $this.n1y();
70
+ var tmp;
71
+ if (!(tmp0_subject == null) ? isInterface(tmp0_subject, NotCompleted()) : false) {
72
+ tmp = 'Active';
73
+ } else {
74
+ if (tmp0_subject instanceof CancelledContinuation()) {
75
+ tmp = 'Cancelled';
76
+ } else {
77
+ tmp = 'Completed';
78
+ }
79
+ }
80
+ return tmp;
81
+ }
82
+ function isReusable($this) {
83
+ var tmp;
84
+ if (get_isReusableMode($this.e22_1)) {
85
+ var tmp_0 = $this.m21_1;
86
+ tmp = (tmp_0 instanceof DispatchedContinuation() ? tmp_0 : THROW_CCE()).d22();
87
+ } else {
88
+ tmp = false;
89
+ }
90
+ return tmp;
91
+ }
92
+ function cancelLater($this, cause) {
93
+ if (!isReusable($this))
94
+ return false;
95
+ var tmp = $this.m21_1;
96
+ var dispatched = tmp instanceof DispatchedContinuation() ? tmp : THROW_CCE();
97
+ return dispatched.f22(cause);
98
+ }
99
+ function callSegmentOnCancellation($this, segment, cause) {
100
+ // Inline function 'kotlinx.coroutines.index' call
101
+ var index = $this.o21_1.kotlinx$atomicfu$value & 536870911;
102
+ // Inline function 'kotlin.check' call
103
+ if (!!(index === 536870911)) {
104
+ var message = 'The index for Segment.onCancellation(..) is broken';
105
+ throw IllegalStateException().o4(toString(message));
106
+ }
107
+ // Inline function 'kotlinx.coroutines.CancellableContinuationImpl.callCancelHandlerSafely' call
108
+ try {
109
+ segment.k22(index, cause, $this.gc());
110
+ } catch ($p) {
111
+ if ($p instanceof Error) {
112
+ var ex = $p;
113
+ handleCoroutineException($this.gc(), CompletionHandlerException().o22('Exception in invokeOnCancellation handler for ' + $this.toString(), ex));
114
+ } else {
115
+ throw $p;
116
+ }
117
+ }
118
+ }
119
+ function trySuspend($this) {
120
+ // Inline function 'kotlinx.atomicfu.loop' call
121
+ var this_0 = $this.o21_1;
122
+ while (true) {
123
+ var cur = this_0.kotlinx$atomicfu$value;
124
+ // Inline function 'kotlinx.coroutines.decision' call
125
+ switch (cur >> 29) {
126
+ case 0:
127
+ // Inline function 'kotlinx.coroutines.index' call
128
+
129
+ // Inline function 'kotlinx.coroutines.decisionAndIndex' call
130
+
131
+ var tmp$ret$2 = (1 << 29) + (cur & 536870911) | 0;
132
+ if ($this.o21_1.atomicfu$compareAndSet(cur, tmp$ret$2))
133
+ return true;
134
+ break;
135
+ case 2:
136
+ return false;
137
+ default:
138
+ // Inline function 'kotlin.error' call
139
+
140
+ var message = 'Already suspended';
141
+ throw IllegalStateException().o4(toString(message));
142
+ }
143
+ }
144
+ }
145
+ function tryResume($this) {
146
+ // Inline function 'kotlinx.atomicfu.loop' call
147
+ var this_0 = $this.o21_1;
148
+ while (true) {
149
+ var cur = this_0.kotlinx$atomicfu$value;
150
+ // Inline function 'kotlinx.coroutines.decision' call
151
+ switch (cur >> 29) {
152
+ case 0:
153
+ // Inline function 'kotlinx.coroutines.index' call
154
+
155
+ // Inline function 'kotlinx.coroutines.decisionAndIndex' call
156
+
157
+ var tmp$ret$2 = (2 << 29) + (cur & 536870911) | 0;
158
+ if ($this.o21_1.atomicfu$compareAndSet(cur, tmp$ret$2))
159
+ return true;
160
+ break;
161
+ case 1:
162
+ return false;
163
+ default:
164
+ // Inline function 'kotlin.error' call
165
+
166
+ var message = 'Already resumed';
167
+ throw IllegalStateException().o4(toString(message));
168
+ }
169
+ }
170
+ }
171
+ function installParentHandle($this) {
172
+ var tmp0_elvis_lhs = $this.gc().nc(Key_instance);
173
+ var tmp;
174
+ if (tmp0_elvis_lhs == null) {
175
+ return null;
176
+ } else {
177
+ tmp = tmp0_elvis_lhs;
178
+ }
179
+ var parent = tmp;
180
+ var handle = invokeOnCompletion(parent, VOID, new (ChildContinuation())($this));
181
+ $this.q21_1.atomicfu$compareAndSet(null, handle);
182
+ return handle;
183
+ }
184
+ function invokeOnCancellationImpl($this, handler) {
185
+ // Inline function 'kotlinx.coroutines.assert' call
186
+ // Inline function 'kotlinx.atomicfu.loop' call
187
+ var this_0 = $this.p21_1;
188
+ while (true) {
189
+ var state = this_0.kotlinx$atomicfu$value;
190
+ if (state instanceof Active()) {
191
+ if ($this.p21_1.atomicfu$compareAndSet(state, handler))
192
+ return Unit_instance;
193
+ } else {
194
+ var tmp;
195
+ if (!(state == null) ? isInterface(state, CancelHandler()) : false) {
196
+ tmp = true;
197
+ } else {
198
+ tmp = state instanceof Segment();
199
+ }
200
+ if (tmp) {
201
+ multipleHandlersError($this, handler, state);
202
+ } else {
203
+ if (state instanceof CompletedExceptionally()) {
204
+ if (!state.x22()) {
205
+ multipleHandlersError($this, handler, state);
206
+ }
207
+ if (state instanceof CancelledContinuation()) {
208
+ var tmp1_safe_receiver = state instanceof CompletedExceptionally() ? state : null;
209
+ var cause = tmp1_safe_receiver == null ? null : tmp1_safe_receiver.y1x_1;
210
+ if (isInterface(handler, CancelHandler())) {
211
+ $this.u22(handler, cause);
212
+ } else {
213
+ var segment = handler instanceof Segment() ? handler : THROW_CCE();
214
+ callSegmentOnCancellation($this, segment, cause);
215
+ }
216
+ }
217
+ return Unit_instance;
218
+ } else {
219
+ if (state instanceof CompletedContinuation()) {
220
+ if (!(state.q22_1 == null)) {
221
+ multipleHandlersError($this, handler, state);
222
+ }
223
+ if (handler instanceof Segment())
224
+ return Unit_instance;
225
+ if (!isInterface(handler, CancelHandler()))
226
+ THROW_CCE();
227
+ if (state.v22()) {
228
+ $this.u22(handler, state.t22_1);
229
+ return Unit_instance;
230
+ }
231
+ var update = state.w22(VOID, handler);
232
+ if ($this.p21_1.atomicfu$compareAndSet(state, update))
233
+ return Unit_instance;
234
+ } else {
235
+ if (handler instanceof Segment())
236
+ return Unit_instance;
237
+ if (!isInterface(handler, CancelHandler()))
238
+ THROW_CCE();
239
+ var update_0 = new (CompletedContinuation())(state, handler);
240
+ if ($this.p21_1.atomicfu$compareAndSet(state, update_0))
241
+ return Unit_instance;
242
+ }
243
+ }
244
+ }
245
+ }
246
+ }
247
+ }
248
+ function multipleHandlersError($this, handler, state) {
249
+ // Inline function 'kotlin.error' call
250
+ var message = "It's prohibited to register multiple handlers, tried to register " + toString(handler) + ', already has ' + toString_0(state);
251
+ throw IllegalStateException().o4(toString(message));
252
+ }
253
+ function dispatchResume($this, mode) {
254
+ if (tryResume($this))
255
+ return Unit_instance;
256
+ dispatch($this, mode);
257
+ }
258
+ function resumedState($this, state, proposedUpdate, resumeMode, onCancellation, idempotent) {
259
+ var tmp;
260
+ if (proposedUpdate instanceof CompletedExceptionally()) {
261
+ // Inline function 'kotlinx.coroutines.assert' call
262
+ // Inline function 'kotlinx.coroutines.assert' call
263
+ tmp = proposedUpdate;
264
+ } else {
265
+ if (!get_isCancellableMode(resumeMode) && idempotent == null) {
266
+ tmp = proposedUpdate;
267
+ } else {
268
+ var tmp_0;
269
+ var tmp_1;
270
+ if (!(onCancellation == null)) {
271
+ tmp_1 = true;
272
+ } else {
273
+ tmp_1 = isInterface(state, CancelHandler());
274
+ }
275
+ if (tmp_1) {
276
+ tmp_0 = true;
277
+ } else {
278
+ tmp_0 = !(idempotent == null);
279
+ }
280
+ if (tmp_0) {
281
+ tmp = new (CompletedContinuation())(proposedUpdate, isInterface(state, CancelHandler()) ? state : null, onCancellation, idempotent);
282
+ } else {
283
+ tmp = proposedUpdate;
284
+ }
285
+ }
286
+ }
287
+ return tmp;
288
+ }
289
+ function tryResumeImpl($this, proposedUpdate, idempotent, onCancellation) {
290
+ // Inline function 'kotlinx.atomicfu.loop' call
291
+ var this_0 = $this.p21_1;
292
+ while (true) {
293
+ var tmp0 = this_0.kotlinx$atomicfu$value;
294
+ $l$block: {
295
+ if (!(tmp0 == null) ? isInterface(tmp0, NotCompleted()) : false) {
296
+ var update = resumedState($this, tmp0, proposedUpdate, $this.e22_1, onCancellation, idempotent);
297
+ if (!$this.p21_1.atomicfu$compareAndSet(tmp0, update)) {
298
+ break $l$block;
299
+ }
300
+ detachChildIfNonReusable($this);
301
+ return get_RESUME_TOKEN();
302
+ } else {
303
+ if (tmp0 instanceof CompletedContinuation()) {
304
+ var tmp;
305
+ if (!(idempotent == null) && tmp0.s22_1 === idempotent) {
306
+ // Inline function 'kotlinx.coroutines.assert' call
307
+ tmp = get_RESUME_TOKEN();
308
+ } else {
309
+ tmp = null;
310
+ }
311
+ return tmp;
312
+ } else {
313
+ return null;
314
+ }
315
+ }
316
+ }
317
+ }
318
+ }
319
+ function alreadyResumedError($this, proposedUpdate) {
320
+ // Inline function 'kotlin.error' call
321
+ var message = 'Already resumed, but proposed with update ' + toString_0(proposedUpdate);
322
+ throw IllegalStateException().o4(toString(message));
323
+ }
324
+ function detachChildIfNonReusable($this) {
325
+ if (!isReusable($this)) {
326
+ $this.y22();
327
+ }
328
+ }
329
+ var CancellableContinuationImplClass;
330
+ function CancellableContinuationImpl() {
331
+ if (CancellableContinuationImplClass === VOID) {
332
+ class $ extends DispatchedTask() {
333
+ constructor(delegate, resumeMode) {
334
+ super(resumeMode);
335
+ this.m21_1 = delegate;
336
+ // Inline function 'kotlinx.coroutines.assert' call
337
+ this.n21_1 = this.m21_1.gc();
338
+ var tmp = this;
339
+ // Inline function 'kotlinx.coroutines.decisionAndIndex' call
340
+ var tmp$ret$1 = (0 << 29) + 536870911 | 0;
341
+ tmp.o21_1 = atomic$int$1(tmp$ret$1);
342
+ this.p21_1 = atomic$ref$1(Active_instance);
343
+ this.q21_1 = atomic$ref$1(null);
344
+ }
345
+ z22() {
346
+ return this.m21_1;
347
+ }
348
+ gc() {
349
+ return this.n21_1;
350
+ }
351
+ n1y() {
352
+ return this.p21_1.kotlinx$atomicfu$value;
353
+ }
354
+ t1x() {
355
+ var tmp = this.n1y();
356
+ return !(tmp == null) ? isInterface(tmp, NotCompleted()) : false;
357
+ }
358
+ o1y() {
359
+ var tmp = this.n1y();
360
+ return !(!(tmp == null) ? isInterface(tmp, NotCompleted()) : false);
361
+ }
362
+ p1y() {
363
+ var tmp = this.n1y();
364
+ return tmp instanceof CancelledContinuation();
365
+ }
366
+ a23() {
367
+ var tmp0_elvis_lhs = installParentHandle(this);
368
+ var tmp;
369
+ if (tmp0_elvis_lhs == null) {
370
+ return Unit_instance;
371
+ } else {
372
+ tmp = tmp0_elvis_lhs;
373
+ }
374
+ var handle = tmp;
375
+ if (this.o1y()) {
376
+ handle.u21();
377
+ this.q21_1.kotlinx$atomicfu$value = NonDisposableHandle_instance;
378
+ }
379
+ }
380
+ c22() {
381
+ // Inline function 'kotlinx.coroutines.assert' call
382
+ // Inline function 'kotlinx.coroutines.assert' call
383
+ var state = this.p21_1.kotlinx$atomicfu$value;
384
+ // Inline function 'kotlinx.coroutines.assert' call
385
+ var tmp;
386
+ if (state instanceof CompletedContinuation()) {
387
+ tmp = !(state.s22_1 == null);
388
+ } else {
389
+ tmp = false;
390
+ }
391
+ if (tmp) {
392
+ this.y22();
393
+ return false;
394
+ }
395
+ var tmp_0 = this.o21_1;
396
+ // Inline function 'kotlinx.coroutines.decisionAndIndex' call
397
+ tmp_0.kotlinx$atomicfu$value = (0 << 29) + 536870911 | 0;
398
+ this.p21_1.kotlinx$atomicfu$value = Active_instance;
399
+ return true;
400
+ }
401
+ b23() {
402
+ return this.n1y();
403
+ }
404
+ c23(takenState, cause) {
405
+ var this_0 = this.p21_1;
406
+ while (true) {
407
+ var state = this_0.kotlinx$atomicfu$value;
408
+ if (!(state == null) ? isInterface(state, NotCompleted()) : false) {
409
+ // Inline function 'kotlin.error' call
410
+ var message = 'Not completed';
411
+ throw IllegalStateException().o4(toString(message));
412
+ } else {
413
+ if (state instanceof CompletedExceptionally())
414
+ return Unit_instance;
415
+ else {
416
+ if (state instanceof CompletedContinuation()) {
417
+ // Inline function 'kotlin.check' call
418
+ if (!!state.v22()) {
419
+ var message_0 = 'Must be called at most once';
420
+ throw IllegalStateException().o4(toString(message_0));
421
+ }
422
+ var update = state.w22(VOID, VOID, VOID, VOID, cause);
423
+ if (this.p21_1.atomicfu$compareAndSet(state, update)) {
424
+ state.d23(this, cause);
425
+ return Unit_instance;
426
+ }
427
+ } else {
428
+ if (this.p21_1.atomicfu$compareAndSet(state, new (CompletedContinuation())(state, VOID, VOID, VOID, cause))) {
429
+ return Unit_instance;
430
+ }
431
+ }
432
+ }
433
+ }
434
+ }
435
+ return Unit_instance;
436
+ }
437
+ e23(cause) {
438
+ // Inline function 'kotlinx.atomicfu.loop' call
439
+ var this_0 = this.p21_1;
440
+ while (true) {
441
+ var tmp0 = this_0.kotlinx$atomicfu$value;
442
+ $l$block: {
443
+ if (!(!(tmp0 == null) ? isInterface(tmp0, NotCompleted()) : false))
444
+ return false;
445
+ var tmp;
446
+ if (isInterface(tmp0, CancelHandler())) {
447
+ tmp = true;
448
+ } else {
449
+ tmp = tmp0 instanceof Segment();
450
+ }
451
+ var update = new (CancelledContinuation())(this, cause, tmp);
452
+ if (!this.p21_1.atomicfu$compareAndSet(tmp0, update)) {
453
+ break $l$block;
454
+ }
455
+ if (isInterface(tmp0, CancelHandler())) {
456
+ this.u22(tmp0, cause);
457
+ } else {
458
+ if (tmp0 instanceof Segment()) {
459
+ callSegmentOnCancellation(this, tmp0, cause);
460
+ }
461
+ }
462
+ detachChildIfNonReusable(this);
463
+ dispatchResume(this, this.e22_1);
464
+ return true;
465
+ }
466
+ }
467
+ }
468
+ f23(cause) {
469
+ if (cancelLater(this, cause))
470
+ return Unit_instance;
471
+ this.e23(cause);
472
+ detachChildIfNonReusable(this);
473
+ }
474
+ u22(handler, cause) {
475
+ // Inline function 'kotlinx.coroutines.CancellableContinuationImpl.callCancelHandlerSafely' call
476
+ try {
477
+ handler.t21(cause);
478
+ } catch ($p) {
479
+ if ($p instanceof Error) {
480
+ var ex = $p;
481
+ handleCoroutineException(this.gc(), CompletionHandlerException().o22('Exception in invokeOnCancellation handler for ' + this.toString(), ex));
482
+ } else {
483
+ throw $p;
484
+ }
485
+ }
486
+ return Unit_instance;
487
+ }
488
+ g23(onCancellation, cause, value) {
489
+ try {
490
+ onCancellation(cause, value, this.gc());
491
+ } catch ($p) {
492
+ if ($p instanceof Error) {
493
+ var ex = $p;
494
+ handleCoroutineException(this.gc(), CompletionHandlerException().o22('Exception in resume onCancellation handler for ' + this.toString(), ex));
495
+ } else {
496
+ throw $p;
497
+ }
498
+ }
499
+ }
500
+ h23(parent) {
501
+ return parent.s1y();
502
+ }
503
+ b20() {
504
+ var isReusable_0 = isReusable(this);
505
+ if (trySuspend(this)) {
506
+ if (_get_parentHandle__f8dcex(this) == null) {
507
+ installParentHandle(this);
508
+ }
509
+ if (isReusable_0) {
510
+ this.i23();
511
+ }
512
+ return get_COROUTINE_SUSPENDED();
513
+ }
514
+ if (isReusable_0) {
515
+ this.i23();
516
+ }
517
+ var state = this.n1y();
518
+ if (state instanceof CompletedExceptionally())
519
+ throw recoverStackTrace(state.y1x_1, this);
520
+ if (get_isCancellableMode(this.e22_1)) {
521
+ var job = this.gc().nc(Key_instance);
522
+ if (!(job == null) && !job.t1x()) {
523
+ var cause = job.s1y();
524
+ this.c23(state, cause);
525
+ throw recoverStackTrace(cause, this);
526
+ }
527
+ }
528
+ return this.j23(state);
529
+ }
530
+ i23() {
531
+ var tmp = this.m21_1;
532
+ var tmp0_safe_receiver = tmp instanceof DispatchedContinuation() ? tmp : null;
533
+ var tmp1_elvis_lhs = tmp0_safe_receiver == null ? null : tmp0_safe_receiver.k23(this);
534
+ var tmp_0;
535
+ if (tmp1_elvis_lhs == null) {
536
+ return Unit_instance;
537
+ } else {
538
+ tmp_0 = tmp1_elvis_lhs;
539
+ }
540
+ var cancellationCause = tmp_0;
541
+ this.y22();
542
+ this.e23(cancellationCause);
543
+ }
544
+ lc(result) {
545
+ return this.l23(toState(result, this), this.e22_1);
546
+ }
547
+ k21(value, onCancellation) {
548
+ return this.m23(value, this.e22_1, onCancellation);
549
+ }
550
+ n23(segment, index) {
551
+ var tmp0 = this.o21_1;
552
+ $l$block: {
553
+ // Inline function 'kotlinx.atomicfu.update' call
554
+ while (true) {
555
+ var cur = tmp0.kotlinx$atomicfu$value;
556
+ // Inline function 'kotlinx.coroutines.index' call
557
+ // Inline function 'kotlin.check' call
558
+ if (!((cur & 536870911) === 536870911)) {
559
+ var message = 'invokeOnCancellation should be called at most once';
560
+ throw IllegalStateException().o4(toString(message));
561
+ }
562
+ // Inline function 'kotlinx.coroutines.decision' call
563
+ // Inline function 'kotlinx.coroutines.decisionAndIndex' call
564
+ var upd = (cur >> 29 << 29) + index | 0;
565
+ if (tmp0.atomicfu$compareAndSet(cur, upd)) {
566
+ break $l$block;
567
+ }
568
+ }
569
+ }
570
+ invokeOnCancellationImpl(this, segment);
571
+ }
572
+ i21(handler) {
573
+ return invokeOnCancellation(this, new (UserSupplied())(handler));
574
+ }
575
+ r21(handler) {
576
+ return invokeOnCancellationImpl(this, handler);
577
+ }
578
+ m23(proposedUpdate, resumeMode, onCancellation) {
579
+ // Inline function 'kotlinx.atomicfu.loop' call
580
+ var this_0 = this.p21_1;
581
+ while (true) {
582
+ var tmp0 = this_0.kotlinx$atomicfu$value;
583
+ $l$block: {
584
+ if (!(tmp0 == null) ? isInterface(tmp0, NotCompleted()) : false) {
585
+ var update = resumedState(this, tmp0, proposedUpdate, resumeMode, onCancellation, null);
586
+ if (!this.p21_1.atomicfu$compareAndSet(tmp0, update)) {
587
+ break $l$block;
588
+ }
589
+ detachChildIfNonReusable(this);
590
+ dispatchResume(this, resumeMode);
591
+ return Unit_instance;
592
+ } else {
593
+ if (tmp0 instanceof CancelledContinuation()) {
594
+ if (tmp0.r23()) {
595
+ if (onCancellation == null)
596
+ null;
597
+ else {
598
+ // Inline function 'kotlin.let' call
599
+ this.g23(onCancellation, tmp0.y1x_1, proposedUpdate);
600
+ }
601
+ return Unit_instance;
602
+ }
603
+ }
604
+ }
605
+ alreadyResumedError(this, proposedUpdate);
606
+ }
607
+ }
608
+ }
609
+ l23(proposedUpdate, resumeMode, onCancellation, $super) {
610
+ onCancellation = onCancellation === VOID ? null : onCancellation;
611
+ var tmp;
612
+ if ($super === VOID) {
613
+ this.m23(proposedUpdate, resumeMode, onCancellation);
614
+ tmp = Unit_instance;
615
+ } else {
616
+ tmp = $super.m23.call(this, proposedUpdate, resumeMode, onCancellation);
617
+ }
618
+ return tmp;
619
+ }
620
+ y22() {
621
+ var tmp0_elvis_lhs = _get_parentHandle__f8dcex(this);
622
+ var tmp;
623
+ if (tmp0_elvis_lhs == null) {
624
+ return Unit_instance;
625
+ } else {
626
+ tmp = tmp0_elvis_lhs;
627
+ }
628
+ var handle = tmp;
629
+ handle.u21();
630
+ this.q21_1.kotlinx$atomicfu$value = NonDisposableHandle_instance;
631
+ }
632
+ g21(value, idempotent, onCancellation) {
633
+ return tryResumeImpl(this, value, idempotent, onCancellation);
634
+ }
635
+ h21(token) {
636
+ // Inline function 'kotlinx.coroutines.assert' call
637
+ dispatchResume(this, this.e22_1);
638
+ }
639
+ j21(_this__u8e3s4, value) {
640
+ var tmp = this.m21_1;
641
+ var dc = tmp instanceof DispatchedContinuation() ? tmp : null;
642
+ var tmp_0;
643
+ if ((dc == null ? null : dc.w21_1) === _this__u8e3s4) {
644
+ tmp_0 = 4;
645
+ } else {
646
+ tmp_0 = this.e22_1;
647
+ }
648
+ this.l23(value, tmp_0);
649
+ }
650
+ j23(state) {
651
+ var tmp;
652
+ if (state instanceof CompletedContinuation()) {
653
+ var tmp_0 = state.p22_1;
654
+ tmp = (tmp_0 == null ? true : !(tmp_0 == null)) ? tmp_0 : THROW_CCE();
655
+ } else {
656
+ tmp = (state == null ? true : !(state == null)) ? state : THROW_CCE();
657
+ }
658
+ return tmp;
659
+ }
660
+ s23(state) {
661
+ var tmp0_safe_receiver = super.s23(state);
662
+ var tmp;
663
+ if (tmp0_safe_receiver == null) {
664
+ tmp = null;
665
+ } else {
666
+ // Inline function 'kotlin.let' call
667
+ tmp = recoverStackTrace(tmp0_safe_receiver, this.m21_1);
668
+ }
669
+ return tmp;
670
+ }
671
+ toString() {
672
+ return this.t23() + '(' + toDebugString(this.m21_1) + '){' + _get_stateDebugRepresentation__bf18u4(this) + '}@' + get_hexAddress(this);
673
+ }
674
+ t23() {
675
+ return 'CancellableContinuation';
676
+ }
677
+ }
678
+ initMetadataForClass($, 'CancellableContinuationImpl', VOID, VOID, [DispatchedTask(), CancellableContinuation(), Waiter()]);
679
+ CancellableContinuationImplClass = $;
680
+ }
681
+ return CancellableContinuationImplClass;
682
+ }
683
+ var NotCompletedClass;
684
+ function NotCompleted() {
685
+ if (NotCompletedClass === VOID) {
686
+ class $ {}
687
+ initMetadataForInterface($, 'NotCompleted');
688
+ NotCompletedClass = $;
689
+ }
690
+ return NotCompletedClass;
691
+ }
692
+ var UserSuppliedClass;
693
+ function UserSupplied() {
694
+ if (UserSuppliedClass === VOID) {
695
+ class $ {
696
+ constructor(handler) {
697
+ this.w23_1 = handler;
698
+ }
699
+ t21(cause) {
700
+ this.w23_1(cause);
701
+ }
702
+ toString() {
703
+ return 'CancelHandler.UserSupplied[' + get_classSimpleName(this.w23_1) + '@' + get_hexAddress(this) + ']';
704
+ }
705
+ }
706
+ initMetadataForClass($, 'UserSupplied', VOID, VOID, [CancelHandler()]);
707
+ UserSuppliedClass = $;
708
+ }
709
+ return UserSuppliedClass;
710
+ }
711
+ var CancelHandlerClass;
712
+ function CancelHandler() {
713
+ if (CancelHandlerClass === VOID) {
714
+ class $ {}
715
+ initMetadataForInterface($, 'CancelHandler', VOID, VOID, [NotCompleted()]);
716
+ CancelHandlerClass = $;
717
+ }
718
+ return CancelHandlerClass;
719
+ }
720
+ var ActiveClass;
721
+ function Active() {
722
+ if (ActiveClass === VOID) {
723
+ class $ {
724
+ toString() {
725
+ return 'Active';
726
+ }
727
+ }
728
+ initMetadataForObject($, 'Active', VOID, VOID, [NotCompleted()]);
729
+ ActiveClass = $;
730
+ }
731
+ return ActiveClass;
732
+ }
733
+ var Active_instance;
734
+ function Active_getInstance() {
735
+ return Active_instance;
736
+ }
737
+ var CompletedContinuationClass;
738
+ function CompletedContinuation() {
739
+ if (CompletedContinuationClass === VOID) {
740
+ class $ {
741
+ constructor(result, cancelHandler, onCancellation, idempotentResume, cancelCause) {
742
+ cancelHandler = cancelHandler === VOID ? null : cancelHandler;
743
+ onCancellation = onCancellation === VOID ? null : onCancellation;
744
+ idempotentResume = idempotentResume === VOID ? null : idempotentResume;
745
+ cancelCause = cancelCause === VOID ? null : cancelCause;
746
+ this.p22_1 = result;
747
+ this.q22_1 = cancelHandler;
748
+ this.r22_1 = onCancellation;
749
+ this.s22_1 = idempotentResume;
750
+ this.t22_1 = cancelCause;
751
+ }
752
+ v22() {
753
+ return !(this.t22_1 == null);
754
+ }
755
+ d23(cont, cause) {
756
+ var tmp0_safe_receiver = this.q22_1;
757
+ if (tmp0_safe_receiver == null)
758
+ null;
759
+ else {
760
+ // Inline function 'kotlin.let' call
761
+ cont.u22(tmp0_safe_receiver, cause);
762
+ }
763
+ var tmp1_safe_receiver = this.r22_1;
764
+ if (tmp1_safe_receiver == null)
765
+ null;
766
+ else {
767
+ // Inline function 'kotlin.let' call
768
+ cont.g23(tmp1_safe_receiver, cause, this.p22_1);
769
+ }
770
+ }
771
+ x23(result, cancelHandler, onCancellation, idempotentResume, cancelCause) {
772
+ return new (CompletedContinuation())(result, cancelHandler, onCancellation, idempotentResume, cancelCause);
773
+ }
774
+ w22(result, cancelHandler, onCancellation, idempotentResume, cancelCause, $super) {
775
+ result = result === VOID ? this.p22_1 : result;
776
+ cancelHandler = cancelHandler === VOID ? this.q22_1 : cancelHandler;
777
+ onCancellation = onCancellation === VOID ? this.r22_1 : onCancellation;
778
+ idempotentResume = idempotentResume === VOID ? this.s22_1 : idempotentResume;
779
+ cancelCause = cancelCause === VOID ? this.t22_1 : cancelCause;
780
+ return $super === VOID ? this.x23(result, cancelHandler, onCancellation, idempotentResume, cancelCause) : $super.x23.call(this, result, cancelHandler, onCancellation, idempotentResume, cancelCause);
781
+ }
782
+ toString() {
783
+ return 'CompletedContinuation(result=' + toString_0(this.p22_1) + ', cancelHandler=' + toString_0(this.q22_1) + ', onCancellation=' + toString_0(this.r22_1) + ', idempotentResume=' + toString_0(this.s22_1) + ', cancelCause=' + toString_0(this.t22_1) + ')';
784
+ }
785
+ hashCode() {
786
+ var result = this.p22_1 == null ? 0 : hashCode(this.p22_1);
787
+ result = imul(result, 31) + (this.q22_1 == null ? 0 : hashCode(this.q22_1)) | 0;
788
+ result = imul(result, 31) + (this.r22_1 == null ? 0 : hashCode(this.r22_1)) | 0;
789
+ result = imul(result, 31) + (this.s22_1 == null ? 0 : hashCode(this.s22_1)) | 0;
790
+ result = imul(result, 31) + (this.t22_1 == null ? 0 : hashCode(this.t22_1)) | 0;
791
+ return result;
792
+ }
793
+ equals(other) {
794
+ if (this === other)
795
+ return true;
796
+ if (!(other instanceof CompletedContinuation()))
797
+ return false;
798
+ var tmp0_other_with_cast = other instanceof CompletedContinuation() ? other : THROW_CCE();
799
+ if (!equals(this.p22_1, tmp0_other_with_cast.p22_1))
800
+ return false;
801
+ if (!equals(this.q22_1, tmp0_other_with_cast.q22_1))
802
+ return false;
803
+ if (!equals(this.r22_1, tmp0_other_with_cast.r22_1))
804
+ return false;
805
+ if (!equals(this.s22_1, tmp0_other_with_cast.s22_1))
806
+ return false;
807
+ if (!equals(this.t22_1, tmp0_other_with_cast.t22_1))
808
+ return false;
809
+ return true;
810
+ }
811
+ }
812
+ initMetadataForClass($, 'CompletedContinuation');
813
+ CompletedContinuationClass = $;
814
+ }
815
+ return CompletedContinuationClass;
816
+ }
817
+ var ChildContinuationClass;
818
+ function ChildContinuation() {
819
+ if (ChildContinuationClass === VOID) {
820
+ class $ extends JobNode() {
821
+ constructor(child) {
822
+ super();
823
+ this.c24_1 = child;
824
+ }
825
+ d24() {
826
+ return true;
827
+ }
828
+ t21(cause) {
829
+ this.c24_1.f23(this.c24_1.h23(this.i24()));
830
+ }
831
+ }
832
+ initMetadataForClass($, 'ChildContinuation');
833
+ ChildContinuationClass = $;
834
+ }
835
+ return ChildContinuationClass;
836
+ }
837
+ var properties_initialized_CancellableContinuationImpl_kt_xtzb03;
838
+ function _init_properties_CancellableContinuationImpl_kt__6rrtdd() {
839
+ if (!properties_initialized_CancellableContinuationImpl_kt_xtzb03) {
840
+ properties_initialized_CancellableContinuationImpl_kt_xtzb03 = true;
841
+ RESUME_TOKEN = new (Symbol())('RESUME_TOKEN');
842
+ }
843
+ }
844
+ //region block: init
845
+ Active_instance = new (Active())();
846
+ //endregion
847
+ //region block: exports
848
+ export {
849
+ CancelHandler as CancelHandler3ic7xysezxbm5,
850
+ CancellableContinuationImpl as CancellableContinuationImpl1cx201opicavg,
851
+ NotCompleted as NotCompleted1jonr7fgu2l3n,
852
+ };
853
+ //endregion
854
+
855
+ //# sourceMappingURL=CancellableContinuationImpl.mjs.map