@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,2483 @@
1
+ import { collectionSizeOrDefault36dulx8yinfqm as collectionSizeOrDefault } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs';
2
+ import { mapCapacity1h45rc3eh9p2l as mapCapacity } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs';
3
+ import { coerceAtLeast2bkz8m9ik7hep as coerceAtLeast } from '../../../../kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs';
4
+ import { LinkedHashMap1zhqxkxv3xnkl as LinkedHashMap } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs';
5
+ import {
6
+ UBytep4j7r1t64gz1 as UByte,
7
+ _UByte___init__impl__g9hnc43ude1dscg1q30 as _UByte___init__impl__g9hnc4,
8
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/UByte.mjs';
9
+ import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
10
+ import {
11
+ initMetadataForCompanion1wyw17z38v6ac as initMetadataForCompanion,
12
+ initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
13
+ initMetadataForInterface1egvbzx539z91 as initMetadataForInterface,
14
+ initMetadataForObject1cxne3s9w65el as initMetadataForObject,
15
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
16
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
17
+ import {
18
+ THROW_IAE23kobfj9wdoxr as THROW_IAE,
19
+ noWhenBranchMatchedException2a6r7ubxgky5j as noWhenBranchMatchedException,
20
+ THROW_CCE2g6jy02ryeudk as THROW_CCE,
21
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
22
+ import { enumEntries20mr21zbe3az4 as enumEntries } from '../../../../kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs';
23
+ import { Enum3alwj03lh1n41 as Enum } from '../../../../kotlin-kotlin-stdlib/kotlin/Enum.mjs';
24
+ import { Buffergs925ekssbch as Buffer } from '../../../../kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs';
25
+ import { Long2qws0ah9gnpki as Long } from '../../../../kotlin-kotlin-stdlib/kotlin/Primitives.mjs';
26
+ import {
27
+ readAttoBlockType2dwlrmdhyg48p as readAttoBlockType,
28
+ readAttoNetwork1knl8nqvjlp4t as readAttoNetwork,
29
+ readAttoVersion2tblb19soew1a as readAttoVersion,
30
+ readAttoAlgorithm2fpoyxlo6m22r as readAttoAlgorithm,
31
+ readAttoPublicKey17rfqt5eeh8ry as readAttoPublicKey,
32
+ readAttoHeight34jcamiyd43a6 as readAttoHeight,
33
+ readAttoAmount157l4r14f1y8p as readAttoAmount,
34
+ readInstant123oo9arkobie as readInstant,
35
+ readAttoHash1jj5f8h5zm9gz as readAttoHash,
36
+ hashp2uamll9q67e as hash,
37
+ writeAttoBlockType3chft5h9f8c2 as writeAttoBlockType,
38
+ writeAttoNetwork3p10lda0ixojo as writeAttoNetwork,
39
+ writeAttoVersion2r5ti8he5h7b8 as writeAttoVersion,
40
+ writeAttoAlgorithm2hcmexbbporb5 as writeAttoAlgorithm,
41
+ writeAttoPublicKey1trmkfrbx6n44 as writeAttoPublicKey,
42
+ writeAttoHeight2lxvq4mztktmg as writeAttoHeight,
43
+ writeAttoAmount2hhzaor5f9e2u as writeAttoAmount,
44
+ writeInstant3u6p01dcjd90s as writeInstant,
45
+ writeAttoHash2bu4sgme3cpn as writeAttoHash,
46
+ } from './AttoBufferExtensions.mjs';
47
+ import { getKClass1s3j9wy1cofik as getKClass } from '../../../../kotlin-kotlin-stdlib/reflection.mjs';
48
+ import { SealedClassSerializeriwipiibk55zc as SealedClassSerializer } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs';
49
+ import {
50
+ SerializerFactory1qv9hivitncuv as SerializerFactory,
51
+ typeParametersSerializers2likxjr48tr7y as typeParametersSerializers,
52
+ GeneratedSerializer1f7t7hssdd2ws as GeneratedSerializer,
53
+ } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs';
54
+ import { System_instance3dr57gee6r420 as System_instance } from '../../../../Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs';
55
+ import {
56
+ Companion_getInstance3vz87v4c01z2t as Companion_getInstance,
57
+ toDuration7gy6v749ektt as toDuration,
58
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/time/Duration.mjs';
59
+ import { DurationUnit_MINUTES_getInstancejlptjvjgjkm8 as DurationUnit_MINUTES_getInstance } from '../../../../kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs';
60
+ import {
61
+ AttoHashableglgxag9qublj as AttoHashable,
62
+ AttoHashSerializer_getInstanceyjhdtkeglit2 as AttoHashSerializer_getInstance,
63
+ } from './AttoHash.mjs';
64
+ import { values1ix93lj72gxe9 as values } from './AttoNetwork.mjs';
65
+ import { createSimpleEnumSerializer2guioz11kk1m0 as createSimpleEnumSerializer } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs';
66
+ import { Companion_getInstance19ckbg90y6ov9 as Companion_getInstance_0 } from './AttoAlgorithm.mjs';
67
+ import { LazyThreadSafetyMode_PUBLICATION_getInstance3hlj875zwihx0 as LazyThreadSafetyMode_PUBLICATION_getInstance } from '../../../../kotlin-kotlin-stdlib/kotlin/Lazy.mjs';
68
+ import {
69
+ lazy1261dae0bgscp as lazy,
70
+ lazy2hsh8ze7j6ikd as lazy_0,
71
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/kotlin.mjs';
72
+ import { toLongw1zpgk99d84b as toLong } from '../../../../kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs';
73
+ import { IllegalArgumentException2asla15b5jaob as IllegalArgumentException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
74
+ import { PluginGeneratedSerialDescriptorqdzeg5asqhfg as PluginGeneratedSerialDescriptor } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs';
75
+ import {
76
+ AttoVersionSerializer_getInstance3dtcmmiz89i68 as AttoVersionSerializer_getInstance,
77
+ AttoVersion16od9j7ykpw2t as AttoVersion,
78
+ } from './AttoVersion.mjs';
79
+ import { AttoPublicKeySerializer_getInstance148kpa77zxk91 as AttoPublicKeySerializer_getInstance } from './AttoPublicKey.mjs';
80
+ import {
81
+ AttoHeightSerializer_getInstance3gs6ucbpk3jcu as AttoHeightSerializer_getInstance,
82
+ AttoHeight1604ccqlfsk68 as AttoHeight,
83
+ } from './AttoHeight.mjs';
84
+ import {
85
+ AttoAmountSerializer_getInstance2dl5qvcd2xkk5 as AttoAmountSerializer_getInstance,
86
+ Companion_getInstancezafbg69jdanb as Companion_getInstance_1,
87
+ } from './AttoAmount.mjs';
88
+ import { InstantMillisSerializer_getInstance119d7idybowz2 as InstantMillisSerializer_getInstance } from './serialiazer/InstantMillisSerializer.mjs';
89
+ import { UnknownFieldExceptiona60e3a6v1xqo as UnknownFieldException } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs';
90
+ import {
91
+ protoOf180f3jzyo7rfj as protoOf,
92
+ createThis2j2avj17cvnv2 as createThis,
93
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
94
+ import { AttoAddressi1gjrmqbg81z as AttoAddress } from './AttoAddress.mjs';
95
+ import { KProperty1ca4yb4wlo496 as KProperty1 } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs';
96
+ import { getPropertyCallableRef1ajb9in178r5r as getPropertyCallableRef } from '../../../../kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs';
97
+ import {
98
+ _UInt___init__impl__l7qpdltd1eeof8nsuj as _UInt___init__impl__l7qpdl,
99
+ _UInt___get_data__impl__f0vqqw13y1a2xkii3dn as _UInt___get_data__impl__f0vqqw,
100
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/UInt.mjs';
101
+ import {
102
+ _ULong___init__impl__c78o9k1p6qzv0dh0bvg as _ULong___init__impl__c78o9k,
103
+ _ULong___get_data__impl__fggpzb2qlkrfp9zs48z as _ULong___get_data__impl__fggpzb,
104
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/ULong.mjs';
105
+ import { ulongCompare29yg6v52hxi4l as ulongCompare } from '../../../../kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs';
106
+ import { throwMissingFieldException2cmke0v3ynf14 as throwMissingFieldException } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs';
107
+ import { _UShort___init__impl__jigrne2jag2u7194ozm as _UShort___init__impl__jigrne } from '../../../../kotlin-kotlin-stdlib/kotlin/UShort.mjs';
108
+ //region block: imports
109
+ var imul = Math.imul;
110
+ //endregion
111
+ //region block: pre-declaration
112
+ //endregion
113
+ function get_maxVersion() {
114
+ _init_properties_AttoBlock_kt__sp9j9p();
115
+ return maxVersion;
116
+ }
117
+ var maxVersion;
118
+ var AttoBlockType_UNKNOWN_instance;
119
+ var AttoBlockType_OPEN_instance;
120
+ var AttoBlockType_RECEIVE_instance;
121
+ var AttoBlockType_SEND_instance;
122
+ var AttoBlockType_CHANGE_instance;
123
+ var CompanionClass;
124
+ function Companion() {
125
+ if (CompanionClass === VOID) {
126
+ class $ {
127
+ constructor() {
128
+ Companion_instance = this;
129
+ var tmp = this;
130
+ // Inline function 'kotlin.collections.associateBy' call
131
+ var this_0 = get_entries();
132
+ var capacity = coerceAtLeast(mapCapacity(collectionSizeOrDefault(this_0, 10)), 16);
133
+ // Inline function 'kotlin.collections.associateByTo' call
134
+ var destination = LinkedHashMap().vb(capacity);
135
+ var _iterator__ex2g4s = this_0.d1();
136
+ while (_iterator__ex2g4s.e1()) {
137
+ var element = _iterator__ex2g4s.f1();
138
+ var tmp$ret$0 = new (UByte())(element.code);
139
+ destination.d3(tmp$ret$0, element);
140
+ }
141
+ tmp.k2y_1 = destination;
142
+ }
143
+ from(code) {
144
+ var tmp0_elvis_lhs = this.k2y_1.w2(new (UByte())(code));
145
+ return tmp0_elvis_lhs == null ? AttoBlockType_UNKNOWN_getInstance() : tmp0_elvis_lhs;
146
+ }
147
+ }
148
+ initMetadataForCompanion($);
149
+ CompanionClass = $;
150
+ }
151
+ return CompanionClass;
152
+ }
153
+ var Companion_instance;
154
+ function Companion_getInstance_2() {
155
+ AttoBlockType_initEntries();
156
+ if (Companion_instance === VOID)
157
+ new (Companion())();
158
+ return Companion_instance;
159
+ }
160
+ function values_0() {
161
+ return [AttoBlockType_UNKNOWN_getInstance(), AttoBlockType_OPEN_getInstance(), AttoBlockType_RECEIVE_getInstance(), AttoBlockType_SEND_getInstance(), AttoBlockType_CHANGE_getInstance()];
162
+ }
163
+ function valueOf(value) {
164
+ switch (value) {
165
+ case 'UNKNOWN':
166
+ return AttoBlockType_UNKNOWN_getInstance();
167
+ case 'OPEN':
168
+ return AttoBlockType_OPEN_getInstance();
169
+ case 'RECEIVE':
170
+ return AttoBlockType_RECEIVE_getInstance();
171
+ case 'SEND':
172
+ return AttoBlockType_SEND_getInstance();
173
+ case 'CHANGE':
174
+ return AttoBlockType_CHANGE_getInstance();
175
+ default:
176
+ AttoBlockType_initEntries();
177
+ THROW_IAE('No enum constant value.');
178
+ break;
179
+ }
180
+ }
181
+ function get_entries() {
182
+ if ($ENTRIES == null)
183
+ $ENTRIES = enumEntries(values_0());
184
+ return $ENTRIES;
185
+ }
186
+ var AttoBlockType_entriesInitialized;
187
+ function AttoBlockType_initEntries() {
188
+ if (AttoBlockType_entriesInitialized)
189
+ return Unit_instance;
190
+ AttoBlockType_entriesInitialized = true;
191
+ AttoBlockType_UNKNOWN_instance = new (AttoBlockType())('UNKNOWN', 0, _UByte___init__impl__g9hnc4(-1), 0);
192
+ AttoBlockType_OPEN_instance = new (AttoBlockType())('OPEN', 1, _UByte___init__impl__g9hnc4(0), 119);
193
+ AttoBlockType_RECEIVE_instance = new (AttoBlockType())('RECEIVE', 2, _UByte___init__impl__g9hnc4(1), 126);
194
+ AttoBlockType_SEND_instance = new (AttoBlockType())('SEND', 3, _UByte___init__impl__g9hnc4(2), 134);
195
+ AttoBlockType_CHANGE_instance = new (AttoBlockType())('CHANGE', 4, _UByte___init__impl__g9hnc4(3), 126);
196
+ Companion_getInstance_2();
197
+ }
198
+ var $ENTRIES;
199
+ var AttoBlockTypeClass;
200
+ function AttoBlockType() {
201
+ if (AttoBlockTypeClass === VOID) {
202
+ class $ extends Enum() {
203
+ constructor(name, ordinal, code, size) {
204
+ super(name, ordinal);
205
+ this.code = code;
206
+ this.size = size;
207
+ }
208
+ p2x() {
209
+ return this.code;
210
+ }
211
+ i1() {
212
+ return this.size;
213
+ }
214
+ get name() {
215
+ return this.i3();
216
+ }
217
+ get ordinal() {
218
+ return this.j3();
219
+ }
220
+ }
221
+ initMetadataForClass($, 'AttoBlockType');
222
+ AttoBlockTypeClass = $;
223
+ }
224
+ return AttoBlockTypeClass;
225
+ }
226
+ var HeightSupportClass;
227
+ function HeightSupport() {
228
+ if (HeightSupportClass === VOID) {
229
+ class $ {}
230
+ initMetadataForInterface($, 'HeightSupport');
231
+ HeightSupportClass = $;
232
+ }
233
+ return HeightSupportClass;
234
+ }
235
+ var CompanionClass_0;
236
+ function Companion_0() {
237
+ if (CompanionClass_0 === VOID) {
238
+ class $ {
239
+ fromBuffer(serializedBlock) {
240
+ // Inline function 'kotlin.let' call
241
+ var it = new (Buffer())();
242
+ serializedBlock.u2r(it, new (Long())(0, 0), new (Long())(1, 0));
243
+ var type = readAttoBlockType(it);
244
+ var tmp;
245
+ switch (type.h3_1) {
246
+ case 3:
247
+ tmp = Companion_getInstance_4().m2y(serializedBlock);
248
+ break;
249
+ case 2:
250
+ tmp = Companion_getInstance_5().m2y(serializedBlock);
251
+ break;
252
+ case 1:
253
+ tmp = Companion_getInstance_6().m2y(serializedBlock);
254
+ break;
255
+ case 4:
256
+ tmp = Companion_getInstance_7().m2y(serializedBlock);
257
+ break;
258
+ case 0:
259
+ return null;
260
+ default:
261
+ noWhenBranchMatchedException();
262
+ break;
263
+ }
264
+ return tmp;
265
+ }
266
+ q2u() {
267
+ var tmp = getKClass(AttoBlock());
268
+ // Inline function 'kotlin.arrayOf' call
269
+ // Inline function 'kotlin.js.unsafeCast' call
270
+ // Inline function 'kotlin.js.asDynamic' call
271
+ var tmp_0 = [getKClass(AttoChangeBlock()), getKClass(AttoOpenBlock()), getKClass(AttoReceiveBlock()), getKClass(AttoSendBlock())];
272
+ // Inline function 'kotlin.arrayOf' call
273
+ // Inline function 'kotlin.js.unsafeCast' call
274
+ // Inline function 'kotlin.js.asDynamic' call
275
+ var tmp_1 = [$serializer_getInstance_2(), $serializer_getInstance_1(), $serializer_getInstance_0(), $serializer_getInstance()];
276
+ // Inline function 'kotlin.arrayOf' call
277
+ // Inline function 'kotlin.js.unsafeCast' call
278
+ // Inline function 'kotlin.js.asDynamic' call
279
+ var tmp$ret$8 = [];
280
+ return SealedClassSerializer().du('cash.atto.commons.AttoBlock', tmp, tmp_0, tmp_1, tmp$ret$8);
281
+ }
282
+ x15(typeParamsSerializers) {
283
+ return this.q2u();
284
+ }
285
+ }
286
+ initMetadataForCompanion($, VOID, [SerializerFactory()]);
287
+ CompanionClass_0 = $;
288
+ }
289
+ return CompanionClass_0;
290
+ }
291
+ var Companion_instance_0;
292
+ function Companion_getInstance_3() {
293
+ return Companion_instance_0;
294
+ }
295
+ function isValid() {
296
+ var tmp;
297
+ if (this.version.s2y(get_maxVersion()) <= 0) {
298
+ var tmp_0 = this.timestamp;
299
+ var tmp_1 = System_instance.i1e();
300
+ // Inline function 'kotlin.time.Companion.minutes' call
301
+ Companion_getInstance();
302
+ var tmp$ret$0 = toDuration(1, DurationUnit_MINUTES_getInstance());
303
+ tmp = tmp_0.r1w(tmp_1.p1w(tmp$ret$0)) <= 0;
304
+ } else {
305
+ tmp = false;
306
+ }
307
+ return tmp;
308
+ }
309
+ var AttoBlockClass;
310
+ function AttoBlock() {
311
+ if (AttoBlockClass === VOID) {
312
+ class $ {}
313
+ initMetadataForInterface($, 'AttoBlock', VOID, VOID, [HeightSupport(), AttoHashable()], VOID, VOID, {0: Companion_getInstance_3});
314
+ AttoBlockClass = $;
315
+ }
316
+ return AttoBlockClass;
317
+ }
318
+ var PreviousSupportClass;
319
+ function PreviousSupport() {
320
+ if (PreviousSupportClass === VOID) {
321
+ class $ {}
322
+ initMetadataForInterface($, 'PreviousSupport');
323
+ PreviousSupportClass = $;
324
+ }
325
+ return PreviousSupportClass;
326
+ }
327
+ var ReceiveSupportClass;
328
+ function ReceiveSupport() {
329
+ if (ReceiveSupportClass === VOID) {
330
+ class $ {}
331
+ initMetadataForInterface($, 'ReceiveSupport');
332
+ ReceiveSupportClass = $;
333
+ }
334
+ return ReceiveSupportClass;
335
+ }
336
+ var RepresentativeSupportClass;
337
+ function RepresentativeSupport() {
338
+ if (RepresentativeSupportClass === VOID) {
339
+ class $ {}
340
+ initMetadataForInterface($, 'RepresentativeSupport');
341
+ RepresentativeSupportClass = $;
342
+ }
343
+ return RepresentativeSupportClass;
344
+ }
345
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99() {
346
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
347
+ }
348
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_0() {
349
+ return Companion_getInstance_0().q2u();
350
+ }
351
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_1() {
352
+ return Companion_getInstance_0().q2u();
353
+ }
354
+ var CompanionClass_1;
355
+ function Companion_1() {
356
+ if (CompanionClass_1 === VOID) {
357
+ class $ {
358
+ constructor() {
359
+ Companion_instance_1 = this;
360
+ var tmp = this;
361
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
362
+ var tmp_1 = lazy(tmp_0, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99);
363
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
364
+ var tmp_3 = lazy(tmp_2, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_0);
365
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
366
+ // Inline function 'kotlin.arrayOf' call
367
+ // Inline function 'kotlin.js.unsafeCast' call
368
+ // Inline function 'kotlin.js.asDynamic' call
369
+ tmp.l2y_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_1), null, null];
370
+ }
371
+ m2y(serializedBlock) {
372
+ if (toLong(AttoBlockType_SEND_getInstance().size).a2(serializedBlock.i1()) > 0) {
373
+ return null;
374
+ }
375
+ var blockType = readAttoBlockType(serializedBlock);
376
+ if (!blockType.equals(AttoBlockType_SEND_getInstance())) {
377
+ throw IllegalArgumentException().u('Invalid block type: ' + blockType.toString());
378
+ }
379
+ return new (AttoSendBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoHeight(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoAmount(serializedBlock));
380
+ }
381
+ q2u() {
382
+ return $serializer_getInstance();
383
+ }
384
+ }
385
+ initMetadataForCompanion($);
386
+ CompanionClass_1 = $;
387
+ }
388
+ return CompanionClass_1;
389
+ }
390
+ var Companion_instance_1;
391
+ function Companion_getInstance_4() {
392
+ if (Companion_instance_1 === VOID)
393
+ new (Companion_1())();
394
+ return Companion_instance_1;
395
+ }
396
+ var $serializerClass;
397
+ function $serializer() {
398
+ if ($serializerClass === VOID) {
399
+ class $ {
400
+ constructor() {
401
+ $serializer_instance = this;
402
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('SEND', this, 11);
403
+ tmp0_serialDesc.w14('network', false);
404
+ tmp0_serialDesc.w14('version', false);
405
+ tmp0_serialDesc.w14('algorithm', false);
406
+ tmp0_serialDesc.w14('publicKey', false);
407
+ tmp0_serialDesc.w14('height', false);
408
+ tmp0_serialDesc.w14('balance', false);
409
+ tmp0_serialDesc.w14('timestamp', false);
410
+ tmp0_serialDesc.w14('previous', false);
411
+ tmp0_serialDesc.w14('receiverAlgorithm', false);
412
+ tmp0_serialDesc.w14('receiverPublicKey', false);
413
+ tmp0_serialDesc.w14('amount', false);
414
+ this.w2y_1 = tmp0_serialDesc;
415
+ }
416
+ x2y(encoder, value) {
417
+ var tmp0_desc = this.w2y_1;
418
+ var tmp1_output = encoder.kx(tmp0_desc);
419
+ var tmp2_cached = Companion_getInstance_4().l2y_1;
420
+ tmp1_output.bz(tmp0_desc, 0, tmp2_cached[0].s1(), value.y2y_1);
421
+ tmp1_output.bz(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.z2y_1);
422
+ tmp1_output.bz(tmp0_desc, 2, tmp2_cached[2].s1(), value.a2z_1);
423
+ tmp1_output.bz(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), value.b2z_1);
424
+ tmp1_output.bz(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.c2z_1);
425
+ tmp1_output.bz(tmp0_desc, 5, AttoAmountSerializer_getInstance(), value.d2z_1);
426
+ tmp1_output.bz(tmp0_desc, 6, InstantMillisSerializer_getInstance(), value.e2z_1);
427
+ tmp1_output.bz(tmp0_desc, 7, AttoHashSerializer_getInstance(), value.f2z_1);
428
+ tmp1_output.bz(tmp0_desc, 8, tmp2_cached[8].s1(), value.receiverAlgorithm);
429
+ tmp1_output.bz(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), value.receiverPublicKey);
430
+ tmp1_output.bz(tmp0_desc, 10, AttoAmountSerializer_getInstance(), value.amount);
431
+ tmp1_output.lx(tmp0_desc);
432
+ }
433
+ ys(encoder, value) {
434
+ return this.x2y(encoder, value instanceof AttoSendBlock() ? value : THROW_CCE());
435
+ }
436
+ zs(decoder) {
437
+ var tmp0_desc = this.w2y_1;
438
+ var tmp1_flag = true;
439
+ var tmp2_index = 0;
440
+ var tmp3_bitMask0 = 0;
441
+ var tmp4_local0 = null;
442
+ var tmp5_local1 = null;
443
+ var tmp6_local2 = null;
444
+ var tmp7_local3 = null;
445
+ var tmp8_local4 = null;
446
+ var tmp9_local5 = null;
447
+ var tmp10_local6 = null;
448
+ var tmp11_local7 = null;
449
+ var tmp12_local8 = null;
450
+ var tmp13_local9 = null;
451
+ var tmp14_local10 = null;
452
+ var tmp19_input = decoder.kx(tmp0_desc);
453
+ var tmp20_cached = Companion_getInstance_4().l2y_1;
454
+ if (tmp19_input.zx()) {
455
+ tmp4_local0 = tmp19_input.wx(tmp0_desc, 0, tmp20_cached[0].s1(), tmp4_local0);
456
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
457
+ tmp5_local1 = tmp19_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
458
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
459
+ tmp6_local2 = tmp19_input.wx(tmp0_desc, 2, tmp20_cached[2].s1(), tmp6_local2);
460
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
461
+ tmp7_local3 = tmp19_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
462
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
463
+ tmp8_local4 = tmp19_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
464
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
465
+ tmp9_local5 = tmp19_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
466
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
467
+ tmp10_local6 = tmp19_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
468
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
469
+ tmp11_local7 = tmp19_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
470
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
471
+ tmp12_local8 = tmp19_input.wx(tmp0_desc, 8, tmp20_cached[8].s1(), tmp12_local8);
472
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
473
+ tmp13_local9 = tmp19_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
474
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
475
+ tmp14_local10 = tmp19_input.wx(tmp0_desc, 10, AttoAmountSerializer_getInstance(), tmp14_local10);
476
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
477
+ } else
478
+ while (tmp1_flag) {
479
+ tmp2_index = tmp19_input.ay(tmp0_desc);
480
+ switch (tmp2_index) {
481
+ case -1:
482
+ tmp1_flag = false;
483
+ break;
484
+ case 0:
485
+ tmp4_local0 = tmp19_input.wx(tmp0_desc, 0, tmp20_cached[0].s1(), tmp4_local0);
486
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
487
+ break;
488
+ case 1:
489
+ tmp5_local1 = tmp19_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
490
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
491
+ break;
492
+ case 2:
493
+ tmp6_local2 = tmp19_input.wx(tmp0_desc, 2, tmp20_cached[2].s1(), tmp6_local2);
494
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
495
+ break;
496
+ case 3:
497
+ tmp7_local3 = tmp19_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
498
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
499
+ break;
500
+ case 4:
501
+ tmp8_local4 = tmp19_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
502
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
503
+ break;
504
+ case 5:
505
+ tmp9_local5 = tmp19_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
506
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
507
+ break;
508
+ case 6:
509
+ tmp10_local6 = tmp19_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
510
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
511
+ break;
512
+ case 7:
513
+ tmp11_local7 = tmp19_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
514
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
515
+ break;
516
+ case 8:
517
+ tmp12_local8 = tmp19_input.wx(tmp0_desc, 8, tmp20_cached[8].s1(), tmp12_local8);
518
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
519
+ break;
520
+ case 9:
521
+ tmp13_local9 = tmp19_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
522
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
523
+ break;
524
+ case 10:
525
+ tmp14_local10 = tmp19_input.wx(tmp0_desc, 10, AttoAmountSerializer_getInstance(), tmp14_local10);
526
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
527
+ break;
528
+ default:
529
+ throw UnknownFieldException().ev(tmp2_index);
530
+ }
531
+ }
532
+ tmp19_input.lx(tmp0_desc);
533
+ return AttoSendBlock().k2z(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, null);
534
+ }
535
+ xs() {
536
+ return this.w2y_1;
537
+ }
538
+ l15() {
539
+ var tmp0_cached = Companion_getInstance_4().l2y_1;
540
+ // Inline function 'kotlin.arrayOf' call
541
+ // Inline function 'kotlin.js.unsafeCast' call
542
+ // Inline function 'kotlin.js.asDynamic' call
543
+ return [tmp0_cached[0].s1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].s1(), AttoPublicKeySerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountSerializer_getInstance(), InstantMillisSerializer_getInstance(), AttoHashSerializer_getInstance(), tmp0_cached[8].s1(), AttoPublicKeySerializer_getInstance(), AttoAmountSerializer_getInstance()];
544
+ }
545
+ }
546
+ protoOf($).m15 = typeParametersSerializers;
547
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
548
+ $serializerClass = $;
549
+ }
550
+ return $serializerClass;
551
+ }
552
+ var $serializer_instance;
553
+ function $serializer_getInstance() {
554
+ if ($serializer_instance === VOID)
555
+ new ($serializer())();
556
+ return $serializer_instance;
557
+ }
558
+ function AttoSendBlock$hash$delegate$lambda(this$0) {
559
+ return function () {
560
+ return hash(this$0.r2y());
561
+ };
562
+ }
563
+ function AttoSendBlock$_get_hash_$ref_emfoe1() {
564
+ return function (p0) {
565
+ return p0.hash;
566
+ };
567
+ }
568
+ function AttoSendBlock$address$delegate$lambda(this$0) {
569
+ return function () {
570
+ return new (AttoAddress())(this$0.a2z_1, this$0.b2z_1);
571
+ };
572
+ }
573
+ function AttoSendBlock$_get_address_$ref_it8owv() {
574
+ return function (p0) {
575
+ return p0.address;
576
+ };
577
+ }
578
+ function AttoSendBlock$receiverAddress$delegate$lambda(this$0) {
579
+ return function () {
580
+ return new (AttoAddress())(this$0.receiverAlgorithm, this$0.receiverPublicKey);
581
+ };
582
+ }
583
+ function AttoSendBlock$_get_receiverAddress_$ref_t8r8a6() {
584
+ return function (p0) {
585
+ return p0.receiverAddress;
586
+ };
587
+ }
588
+ function AttoSendBlock$_init_$lambda_dfxw6s(this$0) {
589
+ return function () {
590
+ return hash(this$0.r2y());
591
+ };
592
+ }
593
+ function AttoSendBlock$_init_$lambda_dfxw6s_0(this$0) {
594
+ return function () {
595
+ return new (AttoAddress())(this$0.a2z_1, this$0.b2z_1);
596
+ };
597
+ }
598
+ function AttoSendBlock$_init_$lambda_dfxw6s_1(this$0) {
599
+ return function () {
600
+ return new (AttoAddress())(this$0.receiverAlgorithm, this$0.receiverPublicKey);
601
+ };
602
+ }
603
+ var AttoSendBlockClass;
604
+ function AttoSendBlock() {
605
+ if (AttoSendBlockClass === VOID) {
606
+ class $ {
607
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) {
608
+ Companion_getInstance_4();
609
+ this.y2y_1 = network;
610
+ this.z2y_1 = version;
611
+ this.a2z_1 = algorithm;
612
+ this.b2z_1 = publicKey;
613
+ this.c2z_1 = height;
614
+ this.d2z_1 = balance;
615
+ this.e2z_1 = timestamp;
616
+ this.f2z_1 = previous;
617
+ this.receiverAlgorithm = receiverAlgorithm;
618
+ this.receiverPublicKey = receiverPublicKey;
619
+ this.amount = amount;
620
+ this.g2z_1 = AttoBlockType_SEND_getInstance();
621
+ var tmp = this;
622
+ tmp.h2z_1 = lazy_0(AttoSendBlock$hash$delegate$lambda(this));
623
+ var tmp_0 = this;
624
+ tmp_0.i2z_1 = lazy_0(AttoSendBlock$address$delegate$lambda(this));
625
+ var tmp_1 = this;
626
+ tmp_1.j2z_1 = lazy_0(AttoSendBlock$receiverAddress$delegate$lambda(this));
627
+ }
628
+ r2v() {
629
+ return this.y2y_1;
630
+ }
631
+ s2v() {
632
+ return this.z2y_1;
633
+ }
634
+ t2v() {
635
+ return this.a2z_1;
636
+ }
637
+ q2v() {
638
+ return this.b2z_1;
639
+ }
640
+ u2v() {
641
+ return this.c2z_1;
642
+ }
643
+ v2v() {
644
+ return this.d2z_1;
645
+ }
646
+ a2x() {
647
+ return this.e2z_1;
648
+ }
649
+ t2y() {
650
+ return this.f2z_1;
651
+ }
652
+ l2z() {
653
+ return this.receiverAlgorithm;
654
+ }
655
+ m2z() {
656
+ return this.receiverPublicKey;
657
+ }
658
+ n2z() {
659
+ return this.amount;
660
+ }
661
+ q2y() {
662
+ return this.g2z_1;
663
+ }
664
+ v2w() {
665
+ var tmp0 = this.h2z_1;
666
+ var tmp = KProperty1();
667
+ // Inline function 'kotlin.getValue' call
668
+ getPropertyCallableRef('hash', 1, tmp, AttoSendBlock$_get_hash_$ref_emfoe1(), null);
669
+ return tmp0.s1();
670
+ }
671
+ a2w() {
672
+ var tmp0 = this.i2z_1;
673
+ var tmp = KProperty1();
674
+ // Inline function 'kotlin.getValue' call
675
+ getPropertyCallableRef('address', 1, tmp, AttoSendBlock$_get_address_$ref_it8owv(), null);
676
+ return tmp0.s1();
677
+ }
678
+ o2z() {
679
+ var tmp0 = this.j2z_1;
680
+ var tmp = KProperty1();
681
+ // Inline function 'kotlin.getValue' call
682
+ getPropertyCallableRef('receiverAddress', 1, tmp, AttoSendBlock$_get_receiverAddress_$ref_t8r8a6(), null);
683
+ return tmp0.s1();
684
+ }
685
+ r2y() {
686
+ // Inline function 'kotlin.apply' call
687
+ var this_0 = new (Buffer())();
688
+ writeAttoBlockType(this_0, this.g2z_1);
689
+ writeAttoNetwork(this_0, this.y2y_1);
690
+ writeAttoVersion(this_0, this.z2y_1);
691
+ writeAttoAlgorithm(this_0, this.a2z_1);
692
+ writeAttoPublicKey(this_0, this.b2z_1);
693
+ writeAttoHeight(this_0, this.c2z_1);
694
+ writeAttoAmount(this_0, this.d2z_1);
695
+ writeInstant(this_0, this.e2z_1);
696
+ writeAttoHash(this_0, this.f2z_1);
697
+ writeAttoAlgorithm(this_0, this.receiverAlgorithm);
698
+ writeAttoPublicKey(this_0, this.receiverPublicKey);
699
+ writeAttoAmount(this_0, this.amount);
700
+ return this_0;
701
+ }
702
+ isValid() {
703
+ var tmp;
704
+ var tmp_0;
705
+ var tmp_1;
706
+ if (isValid.call(this) && this.c2z_1.p2z(new (AttoHeight())(_ULong___init__impl__c78o9k(new (Long())(1, 0)))) > 0) {
707
+ var tmp0 = this.amount.raw;
708
+ // Inline function 'kotlin.ULong.compareTo' call
709
+ // Inline function 'kotlin.UInt.toULong' call
710
+ var this_0 = _UInt___init__impl__l7qpdl(0);
711
+ // Inline function 'kotlin.uintToULong' call
712
+ // Inline function 'kotlin.uintToLong' call
713
+ var value = _UInt___get_data__impl__f0vqqw(this_0);
714
+ var tmp$ret$0 = toLong(value).c4(new (Long())(-1, 0));
715
+ // Inline function 'kotlin.ULong.compareTo' call
716
+ var other = _ULong___init__impl__c78o9k(tmp$ret$0);
717
+ tmp_1 = ulongCompare(_ULong___get_data__impl__fggpzb(tmp0), _ULong___get_data__impl__fggpzb(other)) > 0;
718
+ } else {
719
+ tmp_1 = false;
720
+ }
721
+ if (tmp_1) {
722
+ tmp_0 = !this.receiverPublicKey.equals(this.b2z_1);
723
+ } else {
724
+ tmp_0 = false;
725
+ }
726
+ if (tmp_0) {
727
+ tmp = this.receiverAlgorithm.publicKeySize === this.receiverPublicKey.value.length;
728
+ } else {
729
+ tmp = false;
730
+ }
731
+ return tmp;
732
+ }
733
+ gl() {
734
+ return this.y2y_1;
735
+ }
736
+ hl() {
737
+ return this.z2y_1;
738
+ }
739
+ f2w() {
740
+ return this.a2z_1;
741
+ }
742
+ g2w() {
743
+ return this.b2z_1;
744
+ }
745
+ h2w() {
746
+ return this.c2z_1;
747
+ }
748
+ i2w() {
749
+ return this.d2z_1;
750
+ }
751
+ j2w() {
752
+ return this.e2z_1;
753
+ }
754
+ k2w() {
755
+ return this.f2z_1;
756
+ }
757
+ l2w() {
758
+ return this.receiverAlgorithm;
759
+ }
760
+ m2w() {
761
+ return this.receiverPublicKey;
762
+ }
763
+ q2z() {
764
+ return this.amount;
765
+ }
766
+ r2z(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) {
767
+ return new (AttoSendBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount);
768
+ }
769
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount, $super) {
770
+ network = network === VOID ? this.y2y_1 : network;
771
+ version = version === VOID ? this.z2y_1 : version;
772
+ algorithm = algorithm === VOID ? this.a2z_1 : algorithm;
773
+ publicKey = publicKey === VOID ? this.b2z_1 : publicKey;
774
+ height = height === VOID ? this.c2z_1 : height;
775
+ balance = balance === VOID ? this.d2z_1 : balance;
776
+ timestamp = timestamp === VOID ? this.e2z_1 : timestamp;
777
+ previous = previous === VOID ? this.f2z_1 : previous;
778
+ receiverAlgorithm = receiverAlgorithm === VOID ? this.receiverAlgorithm : receiverAlgorithm;
779
+ receiverPublicKey = receiverPublicKey === VOID ? this.receiverPublicKey : receiverPublicKey;
780
+ amount = amount === VOID ? this.amount : amount;
781
+ return $super === VOID ? this.r2z(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) : $super.r2z.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount);
782
+ }
783
+ toString() {
784
+ return 'AttoSendBlock(network=' + this.y2y_1.toString() + ', version=' + this.z2y_1.toString() + ', algorithm=' + this.a2z_1.toString() + ', publicKey=' + this.b2z_1.toString() + ', height=' + this.c2z_1.toString() + ', balance=' + this.d2z_1.toString() + ', timestamp=' + this.e2z_1.toString() + ', previous=' + this.f2z_1.toString() + ', receiverAlgorithm=' + this.receiverAlgorithm.toString() + ', receiverPublicKey=' + this.receiverPublicKey.toString() + ', amount=' + this.amount.toString() + ')';
785
+ }
786
+ hashCode() {
787
+ var result = this.y2y_1.hashCode();
788
+ result = imul(result, 31) + this.z2y_1.hashCode() | 0;
789
+ result = imul(result, 31) + this.a2z_1.hashCode() | 0;
790
+ result = imul(result, 31) + this.b2z_1.hashCode() | 0;
791
+ result = imul(result, 31) + this.c2z_1.hashCode() | 0;
792
+ result = imul(result, 31) + this.d2z_1.hashCode() | 0;
793
+ result = imul(result, 31) + this.e2z_1.hashCode() | 0;
794
+ result = imul(result, 31) + this.f2z_1.hashCode() | 0;
795
+ result = imul(result, 31) + this.receiverAlgorithm.hashCode() | 0;
796
+ result = imul(result, 31) + this.receiverPublicKey.hashCode() | 0;
797
+ result = imul(result, 31) + this.amount.hashCode() | 0;
798
+ return result;
799
+ }
800
+ equals(other) {
801
+ if (this === other)
802
+ return true;
803
+ if (!(other instanceof AttoSendBlock()))
804
+ return false;
805
+ var tmp0_other_with_cast = other instanceof AttoSendBlock() ? other : THROW_CCE();
806
+ if (!this.y2y_1.equals(tmp0_other_with_cast.y2y_1))
807
+ return false;
808
+ if (!this.z2y_1.equals(tmp0_other_with_cast.z2y_1))
809
+ return false;
810
+ if (!this.a2z_1.equals(tmp0_other_with_cast.a2z_1))
811
+ return false;
812
+ if (!this.b2z_1.equals(tmp0_other_with_cast.b2z_1))
813
+ return false;
814
+ if (!this.c2z_1.equals(tmp0_other_with_cast.c2z_1))
815
+ return false;
816
+ if (!this.d2z_1.equals(tmp0_other_with_cast.d2z_1))
817
+ return false;
818
+ if (!this.e2z_1.equals(tmp0_other_with_cast.e2z_1))
819
+ return false;
820
+ if (!this.f2z_1.equals(tmp0_other_with_cast.f2z_1))
821
+ return false;
822
+ if (!this.receiverAlgorithm.equals(tmp0_other_with_cast.receiverAlgorithm))
823
+ return false;
824
+ if (!this.receiverPublicKey.equals(tmp0_other_with_cast.receiverPublicKey))
825
+ return false;
826
+ if (!this.amount.equals(tmp0_other_with_cast.amount))
827
+ return false;
828
+ return true;
829
+ }
830
+ static k2z(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount, serializationConstructorMarker) {
831
+ Companion_getInstance_4();
832
+ if (!(2047 === (2047 & seen0))) {
833
+ throwMissingFieldException(seen0, 2047, $serializer_getInstance().w2y_1);
834
+ }
835
+ var $this = createThis(this);
836
+ $this.y2y_1 = network;
837
+ $this.z2y_1 = version;
838
+ $this.a2z_1 = algorithm;
839
+ $this.b2z_1 = publicKey;
840
+ $this.c2z_1 = height;
841
+ $this.d2z_1 = balance;
842
+ $this.e2z_1 = timestamp;
843
+ $this.f2z_1 = previous;
844
+ $this.receiverAlgorithm = receiverAlgorithm;
845
+ $this.receiverPublicKey = receiverPublicKey;
846
+ $this.amount = amount;
847
+ $this.g2z_1 = AttoBlockType_SEND_getInstance();
848
+ var tmp = $this;
849
+ tmp.h2z_1 = lazy_0(AttoSendBlock$_init_$lambda_dfxw6s($this));
850
+ var tmp_0 = $this;
851
+ tmp_0.i2z_1 = lazy_0(AttoSendBlock$_init_$lambda_dfxw6s_0($this));
852
+ var tmp_1 = $this;
853
+ tmp_1.j2z_1 = lazy_0(AttoSendBlock$_init_$lambda_dfxw6s_1($this));
854
+ return $this;
855
+ }
856
+ get network() {
857
+ return this.r2v();
858
+ }
859
+ get version() {
860
+ return this.s2v();
861
+ }
862
+ get algorithm() {
863
+ return this.t2v();
864
+ }
865
+ get publicKey() {
866
+ return this.q2v();
867
+ }
868
+ get height() {
869
+ return this.u2v();
870
+ }
871
+ get balance() {
872
+ return this.v2v();
873
+ }
874
+ get timestamp() {
875
+ return this.a2x();
876
+ }
877
+ get previous() {
878
+ return this.t2y();
879
+ }
880
+ get type() {
881
+ return this.q2y();
882
+ }
883
+ get hash() {
884
+ return this.v2w();
885
+ }
886
+ get address() {
887
+ return this.a2w();
888
+ }
889
+ get receiverAddress() {
890
+ return this.o2z();
891
+ }
892
+ }
893
+ initMetadataForClass($, 'AttoSendBlock', VOID, VOID, [AttoBlock(), PreviousSupport()], VOID, VOID, {0: $serializer_getInstance});
894
+ AttoSendBlockClass = $;
895
+ }
896
+ return AttoSendBlockClass;
897
+ }
898
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u() {
899
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
900
+ }
901
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_0() {
902
+ return Companion_getInstance_0().q2u();
903
+ }
904
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_1() {
905
+ return Companion_getInstance_0().q2u();
906
+ }
907
+ var CompanionClass_2;
908
+ function Companion_2() {
909
+ if (CompanionClass_2 === VOID) {
910
+ class $ {
911
+ constructor() {
912
+ Companion_instance_2 = this;
913
+ var tmp = this;
914
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
915
+ var tmp_1 = lazy(tmp_0, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u);
916
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
917
+ var tmp_3 = lazy(tmp_2, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_0);
918
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
919
+ // Inline function 'kotlin.arrayOf' call
920
+ // Inline function 'kotlin.js.unsafeCast' call
921
+ // Inline function 'kotlin.js.asDynamic' call
922
+ tmp.n2y_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_1), null];
923
+ }
924
+ m2y(serializedBlock) {
925
+ if (toLong(AttoBlockType_RECEIVE_getInstance().size).a2(serializedBlock.i1()) > 0) {
926
+ return null;
927
+ }
928
+ var blockType = readAttoBlockType(serializedBlock);
929
+ if (!blockType.equals(AttoBlockType_RECEIVE_getInstance())) {
930
+ throw IllegalArgumentException().u('Invalid block type: ' + blockType.toString());
931
+ }
932
+ return new (AttoReceiveBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoHeight(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoHash(serializedBlock));
933
+ }
934
+ q2u() {
935
+ return $serializer_getInstance_0();
936
+ }
937
+ }
938
+ initMetadataForCompanion($);
939
+ CompanionClass_2 = $;
940
+ }
941
+ return CompanionClass_2;
942
+ }
943
+ var Companion_instance_2;
944
+ function Companion_getInstance_5() {
945
+ if (Companion_instance_2 === VOID)
946
+ new (Companion_2())();
947
+ return Companion_instance_2;
948
+ }
949
+ var $serializerClass_0;
950
+ function $serializer_0() {
951
+ if ($serializerClass_0 === VOID) {
952
+ class $ {
953
+ constructor() {
954
+ $serializer_instance_0 = this;
955
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('RECEIVE', this, 10);
956
+ tmp0_serialDesc.w14('network', false);
957
+ tmp0_serialDesc.w14('version', false);
958
+ tmp0_serialDesc.w14('algorithm', false);
959
+ tmp0_serialDesc.w14('publicKey', false);
960
+ tmp0_serialDesc.w14('height', false);
961
+ tmp0_serialDesc.w14('balance', false);
962
+ tmp0_serialDesc.w14('timestamp', false);
963
+ tmp0_serialDesc.w14('previous', false);
964
+ tmp0_serialDesc.w14('sendHashAlgorithm', false);
965
+ tmp0_serialDesc.w14('sendHash', false);
966
+ this.s2z_1 = tmp0_serialDesc;
967
+ }
968
+ t2z(encoder, value) {
969
+ var tmp0_desc = this.s2z_1;
970
+ var tmp1_output = encoder.kx(tmp0_desc);
971
+ var tmp2_cached = Companion_getInstance_5().n2y_1;
972
+ tmp1_output.bz(tmp0_desc, 0, tmp2_cached[0].s1(), value.u2z_1);
973
+ tmp1_output.bz(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.v2z_1);
974
+ tmp1_output.bz(tmp0_desc, 2, tmp2_cached[2].s1(), value.w2z_1);
975
+ tmp1_output.bz(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), value.x2z_1);
976
+ tmp1_output.bz(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.y2z_1);
977
+ tmp1_output.bz(tmp0_desc, 5, AttoAmountSerializer_getInstance(), value.z2z_1);
978
+ tmp1_output.bz(tmp0_desc, 6, InstantMillisSerializer_getInstance(), value.a30_1);
979
+ tmp1_output.bz(tmp0_desc, 7, AttoHashSerializer_getInstance(), value.b30_1);
980
+ tmp1_output.bz(tmp0_desc, 8, tmp2_cached[8].s1(), value.c30_1);
981
+ tmp1_output.bz(tmp0_desc, 9, AttoHashSerializer_getInstance(), value.d30_1);
982
+ tmp1_output.lx(tmp0_desc);
983
+ }
984
+ ys(encoder, value) {
985
+ return this.t2z(encoder, value instanceof AttoReceiveBlock() ? value : THROW_CCE());
986
+ }
987
+ zs(decoder) {
988
+ var tmp0_desc = this.s2z_1;
989
+ var tmp1_flag = true;
990
+ var tmp2_index = 0;
991
+ var tmp3_bitMask0 = 0;
992
+ var tmp4_local0 = null;
993
+ var tmp5_local1 = null;
994
+ var tmp6_local2 = null;
995
+ var tmp7_local3 = null;
996
+ var tmp8_local4 = null;
997
+ var tmp9_local5 = null;
998
+ var tmp10_local6 = null;
999
+ var tmp11_local7 = null;
1000
+ var tmp12_local8 = null;
1001
+ var tmp13_local9 = null;
1002
+ var tmp17_input = decoder.kx(tmp0_desc);
1003
+ var tmp18_cached = Companion_getInstance_5().n2y_1;
1004
+ if (tmp17_input.zx()) {
1005
+ tmp4_local0 = tmp17_input.wx(tmp0_desc, 0, tmp18_cached[0].s1(), tmp4_local0);
1006
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1007
+ tmp5_local1 = tmp17_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1008
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1009
+ tmp6_local2 = tmp17_input.wx(tmp0_desc, 2, tmp18_cached[2].s1(), tmp6_local2);
1010
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1011
+ tmp7_local3 = tmp17_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
1012
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1013
+ tmp8_local4 = tmp17_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
1014
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1015
+ tmp9_local5 = tmp17_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
1016
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1017
+ tmp10_local6 = tmp17_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
1018
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1019
+ tmp11_local7 = tmp17_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
1020
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1021
+ tmp12_local8 = tmp17_input.wx(tmp0_desc, 8, tmp18_cached[8].s1(), tmp12_local8);
1022
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1023
+ tmp13_local9 = tmp17_input.wx(tmp0_desc, 9, AttoHashSerializer_getInstance(), tmp13_local9);
1024
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1025
+ } else
1026
+ while (tmp1_flag) {
1027
+ tmp2_index = tmp17_input.ay(tmp0_desc);
1028
+ switch (tmp2_index) {
1029
+ case -1:
1030
+ tmp1_flag = false;
1031
+ break;
1032
+ case 0:
1033
+ tmp4_local0 = tmp17_input.wx(tmp0_desc, 0, tmp18_cached[0].s1(), tmp4_local0);
1034
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1035
+ break;
1036
+ case 1:
1037
+ tmp5_local1 = tmp17_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1038
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1039
+ break;
1040
+ case 2:
1041
+ tmp6_local2 = tmp17_input.wx(tmp0_desc, 2, tmp18_cached[2].s1(), tmp6_local2);
1042
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1043
+ break;
1044
+ case 3:
1045
+ tmp7_local3 = tmp17_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
1046
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1047
+ break;
1048
+ case 4:
1049
+ tmp8_local4 = tmp17_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
1050
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1051
+ break;
1052
+ case 5:
1053
+ tmp9_local5 = tmp17_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
1054
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1055
+ break;
1056
+ case 6:
1057
+ tmp10_local6 = tmp17_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
1058
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1059
+ break;
1060
+ case 7:
1061
+ tmp11_local7 = tmp17_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
1062
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1063
+ break;
1064
+ case 8:
1065
+ tmp12_local8 = tmp17_input.wx(tmp0_desc, 8, tmp18_cached[8].s1(), tmp12_local8);
1066
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1067
+ break;
1068
+ case 9:
1069
+ tmp13_local9 = tmp17_input.wx(tmp0_desc, 9, AttoHashSerializer_getInstance(), tmp13_local9);
1070
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1071
+ break;
1072
+ default:
1073
+ throw UnknownFieldException().ev(tmp2_index);
1074
+ }
1075
+ }
1076
+ tmp17_input.lx(tmp0_desc);
1077
+ return AttoReceiveBlock().h30(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, null);
1078
+ }
1079
+ xs() {
1080
+ return this.s2z_1;
1081
+ }
1082
+ l15() {
1083
+ var tmp0_cached = Companion_getInstance_5().n2y_1;
1084
+ // Inline function 'kotlin.arrayOf' call
1085
+ // Inline function 'kotlin.js.unsafeCast' call
1086
+ // Inline function 'kotlin.js.asDynamic' call
1087
+ return [tmp0_cached[0].s1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].s1(), AttoPublicKeySerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountSerializer_getInstance(), InstantMillisSerializer_getInstance(), AttoHashSerializer_getInstance(), tmp0_cached[8].s1(), AttoHashSerializer_getInstance()];
1088
+ }
1089
+ }
1090
+ protoOf($).m15 = typeParametersSerializers;
1091
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
1092
+ $serializerClass_0 = $;
1093
+ }
1094
+ return $serializerClass_0;
1095
+ }
1096
+ var $serializer_instance_0;
1097
+ function $serializer_getInstance_0() {
1098
+ if ($serializer_instance_0 === VOID)
1099
+ new ($serializer_0())();
1100
+ return $serializer_instance_0;
1101
+ }
1102
+ function AttoReceiveBlock$hash$delegate$lambda(this$0) {
1103
+ return function () {
1104
+ return hash(this$0.r2y());
1105
+ };
1106
+ }
1107
+ function AttoReceiveBlock$_get_hash_$ref_1uzri0() {
1108
+ return function (p0) {
1109
+ return p0.hash;
1110
+ };
1111
+ }
1112
+ function AttoReceiveBlock$address$delegate$lambda(this$0) {
1113
+ return function () {
1114
+ return new (AttoAddress())(this$0.w2z_1, this$0.x2z_1);
1115
+ };
1116
+ }
1117
+ function AttoReceiveBlock$_get_address_$ref_otvr40() {
1118
+ return function (p0) {
1119
+ return p0.address;
1120
+ };
1121
+ }
1122
+ function AttoReceiveBlock$_init_$lambda_4ot8lv(this$0) {
1123
+ return function () {
1124
+ return hash(this$0.r2y());
1125
+ };
1126
+ }
1127
+ function AttoReceiveBlock$_init_$lambda_4ot8lv_0(this$0) {
1128
+ return function () {
1129
+ return new (AttoAddress())(this$0.w2z_1, this$0.x2z_1);
1130
+ };
1131
+ }
1132
+ var AttoReceiveBlockClass;
1133
+ function AttoReceiveBlock() {
1134
+ if (AttoReceiveBlockClass === VOID) {
1135
+ class $ {
1136
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) {
1137
+ Companion_getInstance_5();
1138
+ this.u2z_1 = network;
1139
+ this.v2z_1 = version;
1140
+ this.w2z_1 = algorithm;
1141
+ this.x2z_1 = publicKey;
1142
+ this.y2z_1 = height;
1143
+ this.z2z_1 = balance;
1144
+ this.a30_1 = timestamp;
1145
+ this.b30_1 = previous;
1146
+ this.c30_1 = sendHashAlgorithm;
1147
+ this.d30_1 = sendHash;
1148
+ this.e30_1 = AttoBlockType_RECEIVE_getInstance();
1149
+ var tmp = this;
1150
+ tmp.f30_1 = lazy_0(AttoReceiveBlock$hash$delegate$lambda(this));
1151
+ var tmp_0 = this;
1152
+ tmp_0.g30_1 = lazy_0(AttoReceiveBlock$address$delegate$lambda(this));
1153
+ }
1154
+ r2v() {
1155
+ return this.u2z_1;
1156
+ }
1157
+ s2v() {
1158
+ return this.v2z_1;
1159
+ }
1160
+ t2v() {
1161
+ return this.w2z_1;
1162
+ }
1163
+ q2v() {
1164
+ return this.x2z_1;
1165
+ }
1166
+ u2v() {
1167
+ return this.y2z_1;
1168
+ }
1169
+ v2v() {
1170
+ return this.z2z_1;
1171
+ }
1172
+ a2x() {
1173
+ return this.a30_1;
1174
+ }
1175
+ t2y() {
1176
+ return this.b30_1;
1177
+ }
1178
+ u2y() {
1179
+ return this.c30_1;
1180
+ }
1181
+ v2y() {
1182
+ return this.d30_1;
1183
+ }
1184
+ q2y() {
1185
+ return this.e30_1;
1186
+ }
1187
+ v2w() {
1188
+ var tmp0 = this.f30_1;
1189
+ var tmp = KProperty1();
1190
+ // Inline function 'kotlin.getValue' call
1191
+ getPropertyCallableRef('hash', 1, tmp, AttoReceiveBlock$_get_hash_$ref_1uzri0(), null);
1192
+ return tmp0.s1();
1193
+ }
1194
+ a2w() {
1195
+ var tmp0 = this.g30_1;
1196
+ var tmp = KProperty1();
1197
+ // Inline function 'kotlin.getValue' call
1198
+ getPropertyCallableRef('address', 1, tmp, AttoReceiveBlock$_get_address_$ref_otvr40(), null);
1199
+ return tmp0.s1();
1200
+ }
1201
+ r2y() {
1202
+ // Inline function 'kotlin.apply' call
1203
+ var this_0 = new (Buffer())();
1204
+ writeAttoBlockType(this_0, this.e30_1);
1205
+ writeAttoNetwork(this_0, this.u2z_1);
1206
+ writeAttoVersion(this_0, this.v2z_1);
1207
+ writeAttoAlgorithm(this_0, this.w2z_1);
1208
+ writeAttoPublicKey(this_0, this.x2z_1);
1209
+ writeAttoHeight(this_0, this.y2z_1);
1210
+ writeAttoAmount(this_0, this.z2z_1);
1211
+ writeInstant(this_0, this.a30_1);
1212
+ writeAttoHash(this_0, this.b30_1);
1213
+ writeAttoAlgorithm(this_0, this.c30_1);
1214
+ writeAttoHash(this_0, this.d30_1);
1215
+ return this_0;
1216
+ }
1217
+ isValid() {
1218
+ return isValid.call(this) && this.y2z_1.p2z(new (AttoHeight())(_ULong___init__impl__c78o9k(new (Long())(1, 0)))) > 0 && this.z2z_1.d2y(Companion_getInstance_1().MIN) > 0 && this.d30_1.value.length === this.c30_1.hashSize;
1219
+ }
1220
+ gl() {
1221
+ return this.u2z_1;
1222
+ }
1223
+ hl() {
1224
+ return this.v2z_1;
1225
+ }
1226
+ f2w() {
1227
+ return this.w2z_1;
1228
+ }
1229
+ g2w() {
1230
+ return this.x2z_1;
1231
+ }
1232
+ h2w() {
1233
+ return this.y2z_1;
1234
+ }
1235
+ i2w() {
1236
+ return this.z2z_1;
1237
+ }
1238
+ j2w() {
1239
+ return this.a30_1;
1240
+ }
1241
+ k2w() {
1242
+ return this.b30_1;
1243
+ }
1244
+ l2w() {
1245
+ return this.c30_1;
1246
+ }
1247
+ m2w() {
1248
+ return this.d30_1;
1249
+ }
1250
+ i30(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) {
1251
+ return new (AttoReceiveBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash);
1252
+ }
1253
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash, $super) {
1254
+ network = network === VOID ? this.u2z_1 : network;
1255
+ version = version === VOID ? this.v2z_1 : version;
1256
+ algorithm = algorithm === VOID ? this.w2z_1 : algorithm;
1257
+ publicKey = publicKey === VOID ? this.x2z_1 : publicKey;
1258
+ height = height === VOID ? this.y2z_1 : height;
1259
+ balance = balance === VOID ? this.z2z_1 : balance;
1260
+ timestamp = timestamp === VOID ? this.a30_1 : timestamp;
1261
+ previous = previous === VOID ? this.b30_1 : previous;
1262
+ sendHashAlgorithm = sendHashAlgorithm === VOID ? this.c30_1 : sendHashAlgorithm;
1263
+ sendHash = sendHash === VOID ? this.d30_1 : sendHash;
1264
+ return $super === VOID ? this.i30(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) : $super.i30.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash);
1265
+ }
1266
+ toString() {
1267
+ return 'AttoReceiveBlock(network=' + this.u2z_1.toString() + ', version=' + this.v2z_1.toString() + ', algorithm=' + this.w2z_1.toString() + ', publicKey=' + this.x2z_1.toString() + ', height=' + this.y2z_1.toString() + ', balance=' + this.z2z_1.toString() + ', timestamp=' + this.a30_1.toString() + ', previous=' + this.b30_1.toString() + ', sendHashAlgorithm=' + this.c30_1.toString() + ', sendHash=' + this.d30_1.toString() + ')';
1268
+ }
1269
+ hashCode() {
1270
+ var result = this.u2z_1.hashCode();
1271
+ result = imul(result, 31) + this.v2z_1.hashCode() | 0;
1272
+ result = imul(result, 31) + this.w2z_1.hashCode() | 0;
1273
+ result = imul(result, 31) + this.x2z_1.hashCode() | 0;
1274
+ result = imul(result, 31) + this.y2z_1.hashCode() | 0;
1275
+ result = imul(result, 31) + this.z2z_1.hashCode() | 0;
1276
+ result = imul(result, 31) + this.a30_1.hashCode() | 0;
1277
+ result = imul(result, 31) + this.b30_1.hashCode() | 0;
1278
+ result = imul(result, 31) + this.c30_1.hashCode() | 0;
1279
+ result = imul(result, 31) + this.d30_1.hashCode() | 0;
1280
+ return result;
1281
+ }
1282
+ equals(other) {
1283
+ if (this === other)
1284
+ return true;
1285
+ if (!(other instanceof AttoReceiveBlock()))
1286
+ return false;
1287
+ var tmp0_other_with_cast = other instanceof AttoReceiveBlock() ? other : THROW_CCE();
1288
+ if (!this.u2z_1.equals(tmp0_other_with_cast.u2z_1))
1289
+ return false;
1290
+ if (!this.v2z_1.equals(tmp0_other_with_cast.v2z_1))
1291
+ return false;
1292
+ if (!this.w2z_1.equals(tmp0_other_with_cast.w2z_1))
1293
+ return false;
1294
+ if (!this.x2z_1.equals(tmp0_other_with_cast.x2z_1))
1295
+ return false;
1296
+ if (!this.y2z_1.equals(tmp0_other_with_cast.y2z_1))
1297
+ return false;
1298
+ if (!this.z2z_1.equals(tmp0_other_with_cast.z2z_1))
1299
+ return false;
1300
+ if (!this.a30_1.equals(tmp0_other_with_cast.a30_1))
1301
+ return false;
1302
+ if (!this.b30_1.equals(tmp0_other_with_cast.b30_1))
1303
+ return false;
1304
+ if (!this.c30_1.equals(tmp0_other_with_cast.c30_1))
1305
+ return false;
1306
+ if (!this.d30_1.equals(tmp0_other_with_cast.d30_1))
1307
+ return false;
1308
+ return true;
1309
+ }
1310
+ static h30(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash, serializationConstructorMarker) {
1311
+ Companion_getInstance_5();
1312
+ if (!(1023 === (1023 & seen0))) {
1313
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_0().s2z_1);
1314
+ }
1315
+ var $this = createThis(this);
1316
+ $this.u2z_1 = network;
1317
+ $this.v2z_1 = version;
1318
+ $this.w2z_1 = algorithm;
1319
+ $this.x2z_1 = publicKey;
1320
+ $this.y2z_1 = height;
1321
+ $this.z2z_1 = balance;
1322
+ $this.a30_1 = timestamp;
1323
+ $this.b30_1 = previous;
1324
+ $this.c30_1 = sendHashAlgorithm;
1325
+ $this.d30_1 = sendHash;
1326
+ $this.e30_1 = AttoBlockType_RECEIVE_getInstance();
1327
+ var tmp = $this;
1328
+ tmp.f30_1 = lazy_0(AttoReceiveBlock$_init_$lambda_4ot8lv($this));
1329
+ var tmp_0 = $this;
1330
+ tmp_0.g30_1 = lazy_0(AttoReceiveBlock$_init_$lambda_4ot8lv_0($this));
1331
+ return $this;
1332
+ }
1333
+ get network() {
1334
+ return this.r2v();
1335
+ }
1336
+ get version() {
1337
+ return this.s2v();
1338
+ }
1339
+ get algorithm() {
1340
+ return this.t2v();
1341
+ }
1342
+ get publicKey() {
1343
+ return this.q2v();
1344
+ }
1345
+ get height() {
1346
+ return this.u2v();
1347
+ }
1348
+ get balance() {
1349
+ return this.v2v();
1350
+ }
1351
+ get timestamp() {
1352
+ return this.a2x();
1353
+ }
1354
+ get previous() {
1355
+ return this.t2y();
1356
+ }
1357
+ get sendHashAlgorithm() {
1358
+ return this.u2y();
1359
+ }
1360
+ get sendHash() {
1361
+ return this.v2y();
1362
+ }
1363
+ get type() {
1364
+ return this.q2y();
1365
+ }
1366
+ get hash() {
1367
+ return this.v2w();
1368
+ }
1369
+ get address() {
1370
+ return this.a2w();
1371
+ }
1372
+ }
1373
+ initMetadataForClass($, 'AttoReceiveBlock', VOID, VOID, [AttoBlock(), PreviousSupport(), ReceiveSupport()], VOID, VOID, {0: $serializer_getInstance_0});
1374
+ AttoReceiveBlockClass = $;
1375
+ }
1376
+ return AttoReceiveBlockClass;
1377
+ }
1378
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3() {
1379
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
1380
+ }
1381
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_0() {
1382
+ return Companion_getInstance_0().q2u();
1383
+ }
1384
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_1() {
1385
+ return Companion_getInstance_0().q2u();
1386
+ }
1387
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_2() {
1388
+ return Companion_getInstance_0().q2u();
1389
+ }
1390
+ var CompanionClass_3;
1391
+ function Companion_3() {
1392
+ if (CompanionClass_3 === VOID) {
1393
+ class $ {
1394
+ constructor() {
1395
+ Companion_instance_3 = this;
1396
+ var tmp = this;
1397
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1398
+ var tmp_1 = lazy(tmp_0, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3);
1399
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1400
+ var tmp_3 = lazy(tmp_2, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_0);
1401
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1402
+ var tmp_5 = lazy(tmp_4, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_1);
1403
+ var tmp_6 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1404
+ // Inline function 'kotlin.arrayOf' call
1405
+ // Inline function 'kotlin.js.unsafeCast' call
1406
+ // Inline function 'kotlin.js.asDynamic' call
1407
+ tmp.o2y_1 = [tmp_1, null, tmp_3, null, null, null, tmp_5, null, lazy(tmp_6, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_2), null, null];
1408
+ }
1409
+ m2y(serializedBlock) {
1410
+ if (toLong(AttoBlockType_OPEN_getInstance().size).a2(serializedBlock.i1()) > 0) {
1411
+ return null;
1412
+ }
1413
+ var blockType = readAttoBlockType(serializedBlock);
1414
+ if (!blockType.equals(AttoBlockType_OPEN_getInstance())) {
1415
+ throw IllegalArgumentException().u('Invalid block type: ' + blockType.toString());
1416
+ }
1417
+ return new (AttoOpenBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock));
1418
+ }
1419
+ q2u() {
1420
+ return $serializer_getInstance_1();
1421
+ }
1422
+ }
1423
+ initMetadataForCompanion($);
1424
+ CompanionClass_3 = $;
1425
+ }
1426
+ return CompanionClass_3;
1427
+ }
1428
+ var Companion_instance_3;
1429
+ function Companion_getInstance_6() {
1430
+ if (Companion_instance_3 === VOID)
1431
+ new (Companion_3())();
1432
+ return Companion_instance_3;
1433
+ }
1434
+ var $serializerClass_1;
1435
+ function $serializer_1() {
1436
+ if ($serializerClass_1 === VOID) {
1437
+ class $ {
1438
+ constructor() {
1439
+ $serializer_instance_1 = this;
1440
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('OPEN', this, 11);
1441
+ tmp0_serialDesc.w14('network', false);
1442
+ tmp0_serialDesc.w14('version', false);
1443
+ tmp0_serialDesc.w14('algorithm', false);
1444
+ tmp0_serialDesc.w14('publicKey', false);
1445
+ tmp0_serialDesc.w14('balance', false);
1446
+ tmp0_serialDesc.w14('timestamp', false);
1447
+ tmp0_serialDesc.w14('sendHashAlgorithm', false);
1448
+ tmp0_serialDesc.w14('sendHash', false);
1449
+ tmp0_serialDesc.w14('representativeAlgorithm', false);
1450
+ tmp0_serialDesc.w14('representativePublicKey', false);
1451
+ tmp0_serialDesc.w14('height', true);
1452
+ this.j30_1 = tmp0_serialDesc;
1453
+ }
1454
+ k30(encoder, value) {
1455
+ var tmp0_desc = this.j30_1;
1456
+ var tmp1_output = encoder.kx(tmp0_desc);
1457
+ var tmp2_cached = Companion_getInstance_6().o2y_1;
1458
+ tmp1_output.bz(tmp0_desc, 0, tmp2_cached[0].s1(), value.v2u_1);
1459
+ tmp1_output.bz(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.w2u_1);
1460
+ tmp1_output.bz(tmp0_desc, 2, tmp2_cached[2].s1(), value.x2u_1);
1461
+ tmp1_output.bz(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), value.y2u_1);
1462
+ tmp1_output.bz(tmp0_desc, 4, AttoAmountSerializer_getInstance(), value.z2u_1);
1463
+ tmp1_output.bz(tmp0_desc, 5, InstantMillisSerializer_getInstance(), value.a2v_1);
1464
+ tmp1_output.bz(tmp0_desc, 6, tmp2_cached[6].s1(), value.b2v_1);
1465
+ tmp1_output.bz(tmp0_desc, 7, AttoHashSerializer_getInstance(), value.c2v_1);
1466
+ tmp1_output.bz(tmp0_desc, 8, tmp2_cached[8].s1(), value.d2v_1);
1467
+ tmp1_output.bz(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), value.e2v_1);
1468
+ tmp1_output.bz(tmp0_desc, 10, AttoHeightSerializer_getInstance(), value.h2v_1);
1469
+ tmp1_output.lx(tmp0_desc);
1470
+ }
1471
+ ys(encoder, value) {
1472
+ return this.k30(encoder, value instanceof AttoOpenBlock() ? value : THROW_CCE());
1473
+ }
1474
+ zs(decoder) {
1475
+ var tmp0_desc = this.j30_1;
1476
+ var tmp1_flag = true;
1477
+ var tmp2_index = 0;
1478
+ var tmp3_bitMask0 = 0;
1479
+ var tmp4_local0 = null;
1480
+ var tmp5_local1 = null;
1481
+ var tmp6_local2 = null;
1482
+ var tmp7_local3 = null;
1483
+ var tmp8_local4 = null;
1484
+ var tmp9_local5 = null;
1485
+ var tmp10_local6 = null;
1486
+ var tmp11_local7 = null;
1487
+ var tmp12_local8 = null;
1488
+ var tmp13_local9 = null;
1489
+ var tmp14_local10 = null;
1490
+ var tmp19_input = decoder.kx(tmp0_desc);
1491
+ var tmp20_cached = Companion_getInstance_6().o2y_1;
1492
+ if (tmp19_input.zx()) {
1493
+ tmp4_local0 = tmp19_input.wx(tmp0_desc, 0, tmp20_cached[0].s1(), tmp4_local0);
1494
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1495
+ tmp5_local1 = tmp19_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1496
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1497
+ tmp6_local2 = tmp19_input.wx(tmp0_desc, 2, tmp20_cached[2].s1(), tmp6_local2);
1498
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1499
+ tmp7_local3 = tmp19_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
1500
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1501
+ tmp8_local4 = tmp19_input.wx(tmp0_desc, 4, AttoAmountSerializer_getInstance(), tmp8_local4);
1502
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1503
+ tmp9_local5 = tmp19_input.wx(tmp0_desc, 5, InstantMillisSerializer_getInstance(), tmp9_local5);
1504
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1505
+ tmp10_local6 = tmp19_input.wx(tmp0_desc, 6, tmp20_cached[6].s1(), tmp10_local6);
1506
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1507
+ tmp11_local7 = tmp19_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
1508
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1509
+ tmp12_local8 = tmp19_input.wx(tmp0_desc, 8, tmp20_cached[8].s1(), tmp12_local8);
1510
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1511
+ tmp13_local9 = tmp19_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
1512
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1513
+ tmp14_local10 = tmp19_input.wx(tmp0_desc, 10, AttoHeightSerializer_getInstance(), tmp14_local10);
1514
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1515
+ } else
1516
+ while (tmp1_flag) {
1517
+ tmp2_index = tmp19_input.ay(tmp0_desc);
1518
+ switch (tmp2_index) {
1519
+ case -1:
1520
+ tmp1_flag = false;
1521
+ break;
1522
+ case 0:
1523
+ tmp4_local0 = tmp19_input.wx(tmp0_desc, 0, tmp20_cached[0].s1(), tmp4_local0);
1524
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1525
+ break;
1526
+ case 1:
1527
+ tmp5_local1 = tmp19_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1528
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1529
+ break;
1530
+ case 2:
1531
+ tmp6_local2 = tmp19_input.wx(tmp0_desc, 2, tmp20_cached[2].s1(), tmp6_local2);
1532
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1533
+ break;
1534
+ case 3:
1535
+ tmp7_local3 = tmp19_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
1536
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1537
+ break;
1538
+ case 4:
1539
+ tmp8_local4 = tmp19_input.wx(tmp0_desc, 4, AttoAmountSerializer_getInstance(), tmp8_local4);
1540
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1541
+ break;
1542
+ case 5:
1543
+ tmp9_local5 = tmp19_input.wx(tmp0_desc, 5, InstantMillisSerializer_getInstance(), tmp9_local5);
1544
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1545
+ break;
1546
+ case 6:
1547
+ tmp10_local6 = tmp19_input.wx(tmp0_desc, 6, tmp20_cached[6].s1(), tmp10_local6);
1548
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1549
+ break;
1550
+ case 7:
1551
+ tmp11_local7 = tmp19_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
1552
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1553
+ break;
1554
+ case 8:
1555
+ tmp12_local8 = tmp19_input.wx(tmp0_desc, 8, tmp20_cached[8].s1(), tmp12_local8);
1556
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1557
+ break;
1558
+ case 9:
1559
+ tmp13_local9 = tmp19_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
1560
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1561
+ break;
1562
+ case 10:
1563
+ tmp14_local10 = tmp19_input.wx(tmp0_desc, 10, AttoHeightSerializer_getInstance(), tmp14_local10);
1564
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1565
+ break;
1566
+ default:
1567
+ throw UnknownFieldException().ev(tmp2_index);
1568
+ }
1569
+ }
1570
+ tmp19_input.lx(tmp0_desc);
1571
+ return AttoOpenBlock().l30(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, null);
1572
+ }
1573
+ xs() {
1574
+ return this.j30_1;
1575
+ }
1576
+ l15() {
1577
+ var tmp0_cached = Companion_getInstance_6().o2y_1;
1578
+ // Inline function 'kotlin.arrayOf' call
1579
+ // Inline function 'kotlin.js.unsafeCast' call
1580
+ // Inline function 'kotlin.js.asDynamic' call
1581
+ return [tmp0_cached[0].s1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].s1(), AttoPublicKeySerializer_getInstance(), AttoAmountSerializer_getInstance(), InstantMillisSerializer_getInstance(), tmp0_cached[6].s1(), AttoHashSerializer_getInstance(), tmp0_cached[8].s1(), AttoPublicKeySerializer_getInstance(), AttoHeightSerializer_getInstance()];
1582
+ }
1583
+ }
1584
+ protoOf($).m15 = typeParametersSerializers;
1585
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
1586
+ $serializerClass_1 = $;
1587
+ }
1588
+ return $serializerClass_1;
1589
+ }
1590
+ var $serializer_instance_1;
1591
+ function $serializer_getInstance_1() {
1592
+ if ($serializer_instance_1 === VOID)
1593
+ new ($serializer_1())();
1594
+ return $serializer_instance_1;
1595
+ }
1596
+ function AttoOpenBlock$hash$delegate$lambda(this$0) {
1597
+ return function () {
1598
+ return hash(this$0.r2y());
1599
+ };
1600
+ }
1601
+ function AttoOpenBlock$_get_hash_$ref_fk78xn() {
1602
+ return function (p0) {
1603
+ return p0.hash;
1604
+ };
1605
+ }
1606
+ function AttoOpenBlock$address$delegate$lambda(this$0) {
1607
+ return function () {
1608
+ return new (AttoAddress())(this$0.x2u_1, this$0.y2u_1);
1609
+ };
1610
+ }
1611
+ function AttoOpenBlock$_get_address_$ref_p6mkmb() {
1612
+ return function (p0) {
1613
+ return p0.address;
1614
+ };
1615
+ }
1616
+ function AttoOpenBlock$representativeAddress$delegate$lambda(this$0) {
1617
+ return function () {
1618
+ return new (AttoAddress())(this$0.d2v_1, this$0.e2v_1);
1619
+ };
1620
+ }
1621
+ function AttoOpenBlock$_get_representativeAddress_$ref_cjvoh2() {
1622
+ return function (p0) {
1623
+ return p0.representativeAddress;
1624
+ };
1625
+ }
1626
+ function AttoOpenBlock$_init_$lambda_2mk62y(this$0) {
1627
+ return function () {
1628
+ return hash(this$0.r2y());
1629
+ };
1630
+ }
1631
+ function AttoOpenBlock$_init_$lambda_2mk62y_0(this$0) {
1632
+ return function () {
1633
+ return new (AttoAddress())(this$0.x2u_1, this$0.y2u_1);
1634
+ };
1635
+ }
1636
+ function AttoOpenBlock$_init_$lambda_2mk62y_1(this$0) {
1637
+ return function () {
1638
+ return new (AttoAddress())(this$0.d2v_1, this$0.e2v_1);
1639
+ };
1640
+ }
1641
+ var AttoOpenBlockClass;
1642
+ function AttoOpenBlock() {
1643
+ if (AttoOpenBlockClass === VOID) {
1644
+ class $ {
1645
+ constructor(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) {
1646
+ Companion_getInstance_6();
1647
+ this.v2u_1 = network;
1648
+ this.w2u_1 = version;
1649
+ this.x2u_1 = algorithm;
1650
+ this.y2u_1 = publicKey;
1651
+ this.z2u_1 = balance;
1652
+ this.a2v_1 = timestamp;
1653
+ this.b2v_1 = sendHashAlgorithm;
1654
+ this.c2v_1 = sendHash;
1655
+ this.d2v_1 = representativeAlgorithm;
1656
+ this.e2v_1 = representativePublicKey;
1657
+ this.f2v_1 = AttoBlockType_OPEN_getInstance();
1658
+ var tmp = this;
1659
+ tmp.g2v_1 = lazy_0(AttoOpenBlock$hash$delegate$lambda(this));
1660
+ this.h2v_1 = new (AttoHeight())(_ULong___init__impl__c78o9k(new (Long())(1, 0)));
1661
+ var tmp_0 = this;
1662
+ tmp_0.i2v_1 = lazy_0(AttoOpenBlock$address$delegate$lambda(this));
1663
+ var tmp_1 = this;
1664
+ tmp_1.j2v_1 = lazy_0(AttoOpenBlock$representativeAddress$delegate$lambda(this));
1665
+ }
1666
+ r2v() {
1667
+ return this.v2u_1;
1668
+ }
1669
+ s2v() {
1670
+ return this.w2u_1;
1671
+ }
1672
+ t2v() {
1673
+ return this.x2u_1;
1674
+ }
1675
+ q2v() {
1676
+ return this.y2u_1;
1677
+ }
1678
+ v2v() {
1679
+ return this.z2u_1;
1680
+ }
1681
+ a2x() {
1682
+ return this.a2v_1;
1683
+ }
1684
+ u2y() {
1685
+ return this.b2v_1;
1686
+ }
1687
+ v2y() {
1688
+ return this.c2v_1;
1689
+ }
1690
+ y2v() {
1691
+ return this.d2v_1;
1692
+ }
1693
+ z2v() {
1694
+ return this.e2v_1;
1695
+ }
1696
+ q2y() {
1697
+ return this.f2v_1;
1698
+ }
1699
+ v2w() {
1700
+ var tmp0 = this.g2v_1;
1701
+ var tmp = KProperty1();
1702
+ // Inline function 'kotlin.getValue' call
1703
+ getPropertyCallableRef('hash', 1, tmp, AttoOpenBlock$_get_hash_$ref_fk78xn(), null);
1704
+ return tmp0.s1();
1705
+ }
1706
+ u2v() {
1707
+ return this.h2v_1;
1708
+ }
1709
+ a2w() {
1710
+ var tmp0 = this.i2v_1;
1711
+ var tmp = KProperty1();
1712
+ // Inline function 'kotlin.getValue' call
1713
+ getPropertyCallableRef('address', 1, tmp, AttoOpenBlock$_get_address_$ref_p6mkmb(), null);
1714
+ return tmp0.s1();
1715
+ }
1716
+ b2w() {
1717
+ var tmp0 = this.j2v_1;
1718
+ var tmp = KProperty1();
1719
+ // Inline function 'kotlin.getValue' call
1720
+ getPropertyCallableRef('representativeAddress', 1, tmp, AttoOpenBlock$_get_representativeAddress_$ref_cjvoh2(), null);
1721
+ return tmp0.s1();
1722
+ }
1723
+ r2y() {
1724
+ // Inline function 'kotlin.apply' call
1725
+ var this_0 = new (Buffer())();
1726
+ writeAttoBlockType(this_0, this.f2v_1);
1727
+ writeAttoNetwork(this_0, this.v2u_1);
1728
+ writeAttoVersion(this_0, this.w2u_1);
1729
+ writeAttoAlgorithm(this_0, this.x2u_1);
1730
+ writeAttoPublicKey(this_0, this.y2u_1);
1731
+ writeAttoAmount(this_0, this.z2u_1);
1732
+ writeInstant(this_0, this.a2v_1);
1733
+ writeAttoAlgorithm(this_0, this.b2v_1);
1734
+ writeAttoHash(this_0, this.c2v_1);
1735
+ writeAttoAlgorithm(this_0, this.d2v_1);
1736
+ writeAttoPublicKey(this_0, this.e2v_1);
1737
+ return this_0;
1738
+ }
1739
+ isValid() {
1740
+ return isValid.call(this) && this.z2u_1.d2y(Companion_getInstance_1().MIN) > 0 && this.c2v_1.value.length === this.b2v_1.hashSize;
1741
+ }
1742
+ gl() {
1743
+ return this.v2u_1;
1744
+ }
1745
+ hl() {
1746
+ return this.w2u_1;
1747
+ }
1748
+ f2w() {
1749
+ return this.x2u_1;
1750
+ }
1751
+ g2w() {
1752
+ return this.y2u_1;
1753
+ }
1754
+ h2w() {
1755
+ return this.z2u_1;
1756
+ }
1757
+ i2w() {
1758
+ return this.a2v_1;
1759
+ }
1760
+ j2w() {
1761
+ return this.b2v_1;
1762
+ }
1763
+ k2w() {
1764
+ return this.c2v_1;
1765
+ }
1766
+ l2w() {
1767
+ return this.d2v_1;
1768
+ }
1769
+ m2w() {
1770
+ return this.e2v_1;
1771
+ }
1772
+ m30(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) {
1773
+ return new (AttoOpenBlock())(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey);
1774
+ }
1775
+ copy(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey, $super) {
1776
+ network = network === VOID ? this.v2u_1 : network;
1777
+ version = version === VOID ? this.w2u_1 : version;
1778
+ algorithm = algorithm === VOID ? this.x2u_1 : algorithm;
1779
+ publicKey = publicKey === VOID ? this.y2u_1 : publicKey;
1780
+ balance = balance === VOID ? this.z2u_1 : balance;
1781
+ timestamp = timestamp === VOID ? this.a2v_1 : timestamp;
1782
+ sendHashAlgorithm = sendHashAlgorithm === VOID ? this.b2v_1 : sendHashAlgorithm;
1783
+ sendHash = sendHash === VOID ? this.c2v_1 : sendHash;
1784
+ representativeAlgorithm = representativeAlgorithm === VOID ? this.d2v_1 : representativeAlgorithm;
1785
+ representativePublicKey = representativePublicKey === VOID ? this.e2v_1 : representativePublicKey;
1786
+ return $super === VOID ? this.m30(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) : $super.m30.call(this, network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey);
1787
+ }
1788
+ toString() {
1789
+ return 'AttoOpenBlock(network=' + this.v2u_1.toString() + ', version=' + this.w2u_1.toString() + ', algorithm=' + this.x2u_1.toString() + ', publicKey=' + this.y2u_1.toString() + ', balance=' + this.z2u_1.toString() + ', timestamp=' + this.a2v_1.toString() + ', sendHashAlgorithm=' + this.b2v_1.toString() + ', sendHash=' + this.c2v_1.toString() + ', representativeAlgorithm=' + this.d2v_1.toString() + ', representativePublicKey=' + this.e2v_1.toString() + ')';
1790
+ }
1791
+ hashCode() {
1792
+ var result = this.v2u_1.hashCode();
1793
+ result = imul(result, 31) + this.w2u_1.hashCode() | 0;
1794
+ result = imul(result, 31) + this.x2u_1.hashCode() | 0;
1795
+ result = imul(result, 31) + this.y2u_1.hashCode() | 0;
1796
+ result = imul(result, 31) + this.z2u_1.hashCode() | 0;
1797
+ result = imul(result, 31) + this.a2v_1.hashCode() | 0;
1798
+ result = imul(result, 31) + this.b2v_1.hashCode() | 0;
1799
+ result = imul(result, 31) + this.c2v_1.hashCode() | 0;
1800
+ result = imul(result, 31) + this.d2v_1.hashCode() | 0;
1801
+ result = imul(result, 31) + this.e2v_1.hashCode() | 0;
1802
+ return result;
1803
+ }
1804
+ equals(other) {
1805
+ if (this === other)
1806
+ return true;
1807
+ if (!(other instanceof AttoOpenBlock()))
1808
+ return false;
1809
+ var tmp0_other_with_cast = other instanceof AttoOpenBlock() ? other : THROW_CCE();
1810
+ if (!this.v2u_1.equals(tmp0_other_with_cast.v2u_1))
1811
+ return false;
1812
+ if (!this.w2u_1.equals(tmp0_other_with_cast.w2u_1))
1813
+ return false;
1814
+ if (!this.x2u_1.equals(tmp0_other_with_cast.x2u_1))
1815
+ return false;
1816
+ if (!this.y2u_1.equals(tmp0_other_with_cast.y2u_1))
1817
+ return false;
1818
+ if (!this.z2u_1.equals(tmp0_other_with_cast.z2u_1))
1819
+ return false;
1820
+ if (!this.a2v_1.equals(tmp0_other_with_cast.a2v_1))
1821
+ return false;
1822
+ if (!this.b2v_1.equals(tmp0_other_with_cast.b2v_1))
1823
+ return false;
1824
+ if (!this.c2v_1.equals(tmp0_other_with_cast.c2v_1))
1825
+ return false;
1826
+ if (!this.d2v_1.equals(tmp0_other_with_cast.d2v_1))
1827
+ return false;
1828
+ if (!this.e2v_1.equals(tmp0_other_with_cast.e2v_1))
1829
+ return false;
1830
+ return true;
1831
+ }
1832
+ static l30(seen0, network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey, height, serializationConstructorMarker) {
1833
+ Companion_getInstance_6();
1834
+ if (!(1023 === (1023 & seen0))) {
1835
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_1().j30_1);
1836
+ }
1837
+ var $this = createThis(this);
1838
+ $this.v2u_1 = network;
1839
+ $this.w2u_1 = version;
1840
+ $this.x2u_1 = algorithm;
1841
+ $this.y2u_1 = publicKey;
1842
+ $this.z2u_1 = balance;
1843
+ $this.a2v_1 = timestamp;
1844
+ $this.b2v_1 = sendHashAlgorithm;
1845
+ $this.c2v_1 = sendHash;
1846
+ $this.d2v_1 = representativeAlgorithm;
1847
+ $this.e2v_1 = representativePublicKey;
1848
+ $this.f2v_1 = AttoBlockType_OPEN_getInstance();
1849
+ var tmp = $this;
1850
+ tmp.g2v_1 = lazy_0(AttoOpenBlock$_init_$lambda_2mk62y($this));
1851
+ if (0 === (seen0 & 1024))
1852
+ $this.h2v_1 = new (AttoHeight())(_ULong___init__impl__c78o9k(new (Long())(1, 0)));
1853
+ else
1854
+ $this.h2v_1 = height;
1855
+ var tmp_0 = $this;
1856
+ tmp_0.i2v_1 = lazy_0(AttoOpenBlock$_init_$lambda_2mk62y_0($this));
1857
+ var tmp_1 = $this;
1858
+ tmp_1.j2v_1 = lazy_0(AttoOpenBlock$_init_$lambda_2mk62y_1($this));
1859
+ return $this;
1860
+ }
1861
+ get network() {
1862
+ return this.r2v();
1863
+ }
1864
+ get version() {
1865
+ return this.s2v();
1866
+ }
1867
+ get algorithm() {
1868
+ return this.t2v();
1869
+ }
1870
+ get publicKey() {
1871
+ return this.q2v();
1872
+ }
1873
+ get balance() {
1874
+ return this.v2v();
1875
+ }
1876
+ get timestamp() {
1877
+ return this.a2x();
1878
+ }
1879
+ get sendHashAlgorithm() {
1880
+ return this.u2y();
1881
+ }
1882
+ get sendHash() {
1883
+ return this.v2y();
1884
+ }
1885
+ get representativeAlgorithm() {
1886
+ return this.y2v();
1887
+ }
1888
+ get representativePublicKey() {
1889
+ return this.z2v();
1890
+ }
1891
+ get type() {
1892
+ return this.q2y();
1893
+ }
1894
+ get hash() {
1895
+ return this.v2w();
1896
+ }
1897
+ get height() {
1898
+ return this.u2v();
1899
+ }
1900
+ get address() {
1901
+ return this.a2w();
1902
+ }
1903
+ get representativeAddress() {
1904
+ return this.b2w();
1905
+ }
1906
+ }
1907
+ initMetadataForClass($, 'AttoOpenBlock', VOID, VOID, [AttoBlock(), ReceiveSupport(), RepresentativeSupport()], VOID, VOID, {0: $serializer_getInstance_1});
1908
+ AttoOpenBlockClass = $;
1909
+ }
1910
+ return AttoOpenBlockClass;
1911
+ }
1912
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff() {
1913
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
1914
+ }
1915
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_0() {
1916
+ return Companion_getInstance_0().q2u();
1917
+ }
1918
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_1() {
1919
+ return Companion_getInstance_0().q2u();
1920
+ }
1921
+ var CompanionClass_4;
1922
+ function Companion_4() {
1923
+ if (CompanionClass_4 === VOID) {
1924
+ class $ {
1925
+ constructor() {
1926
+ Companion_instance_4 = this;
1927
+ var tmp = this;
1928
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1929
+ var tmp_1 = lazy(tmp_0, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff);
1930
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1931
+ var tmp_3 = lazy(tmp_2, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_0);
1932
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1933
+ // Inline function 'kotlin.arrayOf' call
1934
+ // Inline function 'kotlin.js.unsafeCast' call
1935
+ // Inline function 'kotlin.js.asDynamic' call
1936
+ tmp.p2y_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_1), null];
1937
+ }
1938
+ m2y(serializedBlock) {
1939
+ if (toLong(AttoBlockType_CHANGE_getInstance().size).a2(serializedBlock.i1()) > 0) {
1940
+ return null;
1941
+ }
1942
+ var blockType = readAttoBlockType(serializedBlock);
1943
+ if (!blockType.equals(AttoBlockType_CHANGE_getInstance())) {
1944
+ throw IllegalArgumentException().u('Invalid block type: ' + blockType.toString());
1945
+ }
1946
+ return new (AttoChangeBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoHeight(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock));
1947
+ }
1948
+ q2u() {
1949
+ return $serializer_getInstance_2();
1950
+ }
1951
+ }
1952
+ initMetadataForCompanion($);
1953
+ CompanionClass_4 = $;
1954
+ }
1955
+ return CompanionClass_4;
1956
+ }
1957
+ var Companion_instance_4;
1958
+ function Companion_getInstance_7() {
1959
+ if (Companion_instance_4 === VOID)
1960
+ new (Companion_4())();
1961
+ return Companion_instance_4;
1962
+ }
1963
+ var $serializerClass_2;
1964
+ function $serializer_2() {
1965
+ if ($serializerClass_2 === VOID) {
1966
+ class $ {
1967
+ constructor() {
1968
+ $serializer_instance_2 = this;
1969
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('CHANGE', this, 10);
1970
+ tmp0_serialDesc.w14('network', false);
1971
+ tmp0_serialDesc.w14('version', false);
1972
+ tmp0_serialDesc.w14('algorithm', false);
1973
+ tmp0_serialDesc.w14('publicKey', false);
1974
+ tmp0_serialDesc.w14('height', false);
1975
+ tmp0_serialDesc.w14('balance', false);
1976
+ tmp0_serialDesc.w14('timestamp', false);
1977
+ tmp0_serialDesc.w14('previous', false);
1978
+ tmp0_serialDesc.w14('representativeAlgorithm', false);
1979
+ tmp0_serialDesc.w14('representativePublicKey', false);
1980
+ this.n30_1 = tmp0_serialDesc;
1981
+ }
1982
+ o30(encoder, value) {
1983
+ var tmp0_desc = this.n30_1;
1984
+ var tmp1_output = encoder.kx(tmp0_desc);
1985
+ var tmp2_cached = Companion_getInstance_7().p2y_1;
1986
+ tmp1_output.bz(tmp0_desc, 0, tmp2_cached[0].s1(), value.p30_1);
1987
+ tmp1_output.bz(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.q30_1);
1988
+ tmp1_output.bz(tmp0_desc, 2, tmp2_cached[2].s1(), value.r30_1);
1989
+ tmp1_output.bz(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), value.s30_1);
1990
+ tmp1_output.bz(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.t30_1);
1991
+ tmp1_output.bz(tmp0_desc, 5, AttoAmountSerializer_getInstance(), value.u30_1);
1992
+ tmp1_output.bz(tmp0_desc, 6, InstantMillisSerializer_getInstance(), value.v30_1);
1993
+ tmp1_output.bz(tmp0_desc, 7, AttoHashSerializer_getInstance(), value.w30_1);
1994
+ tmp1_output.bz(tmp0_desc, 8, tmp2_cached[8].s1(), value.x30_1);
1995
+ tmp1_output.bz(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), value.y30_1);
1996
+ tmp1_output.lx(tmp0_desc);
1997
+ }
1998
+ ys(encoder, value) {
1999
+ return this.o30(encoder, value instanceof AttoChangeBlock() ? value : THROW_CCE());
2000
+ }
2001
+ zs(decoder) {
2002
+ var tmp0_desc = this.n30_1;
2003
+ var tmp1_flag = true;
2004
+ var tmp2_index = 0;
2005
+ var tmp3_bitMask0 = 0;
2006
+ var tmp4_local0 = null;
2007
+ var tmp5_local1 = null;
2008
+ var tmp6_local2 = null;
2009
+ var tmp7_local3 = null;
2010
+ var tmp8_local4 = null;
2011
+ var tmp9_local5 = null;
2012
+ var tmp10_local6 = null;
2013
+ var tmp11_local7 = null;
2014
+ var tmp12_local8 = null;
2015
+ var tmp13_local9 = null;
2016
+ var tmp18_input = decoder.kx(tmp0_desc);
2017
+ var tmp19_cached = Companion_getInstance_7().p2y_1;
2018
+ if (tmp18_input.zx()) {
2019
+ tmp4_local0 = tmp18_input.wx(tmp0_desc, 0, tmp19_cached[0].s1(), tmp4_local0);
2020
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
2021
+ tmp5_local1 = tmp18_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
2022
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
2023
+ tmp6_local2 = tmp18_input.wx(tmp0_desc, 2, tmp19_cached[2].s1(), tmp6_local2);
2024
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
2025
+ tmp7_local3 = tmp18_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
2026
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
2027
+ tmp8_local4 = tmp18_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
2028
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
2029
+ tmp9_local5 = tmp18_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
2030
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2031
+ tmp10_local6 = tmp18_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
2032
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2033
+ tmp11_local7 = tmp18_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
2034
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2035
+ tmp12_local8 = tmp18_input.wx(tmp0_desc, 8, tmp19_cached[8].s1(), tmp12_local8);
2036
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
2037
+ tmp13_local9 = tmp18_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
2038
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
2039
+ } else
2040
+ while (tmp1_flag) {
2041
+ tmp2_index = tmp18_input.ay(tmp0_desc);
2042
+ switch (tmp2_index) {
2043
+ case -1:
2044
+ tmp1_flag = false;
2045
+ break;
2046
+ case 0:
2047
+ tmp4_local0 = tmp18_input.wx(tmp0_desc, 0, tmp19_cached[0].s1(), tmp4_local0);
2048
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
2049
+ break;
2050
+ case 1:
2051
+ tmp5_local1 = tmp18_input.wx(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
2052
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
2053
+ break;
2054
+ case 2:
2055
+ tmp6_local2 = tmp18_input.wx(tmp0_desc, 2, tmp19_cached[2].s1(), tmp6_local2);
2056
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
2057
+ break;
2058
+ case 3:
2059
+ tmp7_local3 = tmp18_input.wx(tmp0_desc, 3, AttoPublicKeySerializer_getInstance(), tmp7_local3);
2060
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
2061
+ break;
2062
+ case 4:
2063
+ tmp8_local4 = tmp18_input.wx(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
2064
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
2065
+ break;
2066
+ case 5:
2067
+ tmp9_local5 = tmp18_input.wx(tmp0_desc, 5, AttoAmountSerializer_getInstance(), tmp9_local5);
2068
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2069
+ break;
2070
+ case 6:
2071
+ tmp10_local6 = tmp18_input.wx(tmp0_desc, 6, InstantMillisSerializer_getInstance(), tmp10_local6);
2072
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2073
+ break;
2074
+ case 7:
2075
+ tmp11_local7 = tmp18_input.wx(tmp0_desc, 7, AttoHashSerializer_getInstance(), tmp11_local7);
2076
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2077
+ break;
2078
+ case 8:
2079
+ tmp12_local8 = tmp18_input.wx(tmp0_desc, 8, tmp19_cached[8].s1(), tmp12_local8);
2080
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
2081
+ break;
2082
+ case 9:
2083
+ tmp13_local9 = tmp18_input.wx(tmp0_desc, 9, AttoPublicKeySerializer_getInstance(), tmp13_local9);
2084
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
2085
+ break;
2086
+ default:
2087
+ throw UnknownFieldException().ev(tmp2_index);
2088
+ }
2089
+ }
2090
+ tmp18_input.lx(tmp0_desc);
2091
+ return AttoChangeBlock().d31(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, null);
2092
+ }
2093
+ xs() {
2094
+ return this.n30_1;
2095
+ }
2096
+ l15() {
2097
+ var tmp0_cached = Companion_getInstance_7().p2y_1;
2098
+ // Inline function 'kotlin.arrayOf' call
2099
+ // Inline function 'kotlin.js.unsafeCast' call
2100
+ // Inline function 'kotlin.js.asDynamic' call
2101
+ return [tmp0_cached[0].s1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].s1(), AttoPublicKeySerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountSerializer_getInstance(), InstantMillisSerializer_getInstance(), AttoHashSerializer_getInstance(), tmp0_cached[8].s1(), AttoPublicKeySerializer_getInstance()];
2102
+ }
2103
+ }
2104
+ protoOf($).m15 = typeParametersSerializers;
2105
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
2106
+ $serializerClass_2 = $;
2107
+ }
2108
+ return $serializerClass_2;
2109
+ }
2110
+ var $serializer_instance_2;
2111
+ function $serializer_getInstance_2() {
2112
+ if ($serializer_instance_2 === VOID)
2113
+ new ($serializer_2())();
2114
+ return $serializer_instance_2;
2115
+ }
2116
+ function AttoChangeBlock$hash$delegate$lambda(this$0) {
2117
+ return function () {
2118
+ return hash(this$0.r2y());
2119
+ };
2120
+ }
2121
+ function AttoChangeBlock$_get_hash_$ref_i4oufz() {
2122
+ return function (p0) {
2123
+ return p0.hash;
2124
+ };
2125
+ }
2126
+ function AttoChangeBlock$address$delegate$lambda(this$0) {
2127
+ return function () {
2128
+ return new (AttoAddress())(this$0.r30_1, this$0.s30_1);
2129
+ };
2130
+ }
2131
+ function AttoChangeBlock$_get_address_$ref_b5hbw7() {
2132
+ return function (p0) {
2133
+ return p0.address;
2134
+ };
2135
+ }
2136
+ function AttoChangeBlock$representativeAddress$delegate$lambda(this$0) {
2137
+ return function () {
2138
+ return new (AttoAddress())(this$0.x30_1, this$0.y30_1);
2139
+ };
2140
+ }
2141
+ function AttoChangeBlock$_get_representativeAddress_$ref_2pxa6k() {
2142
+ return function (p0) {
2143
+ return p0.representativeAddress;
2144
+ };
2145
+ }
2146
+ function AttoChangeBlock$_init_$lambda_31jg7w(this$0) {
2147
+ return function () {
2148
+ return hash(this$0.r2y());
2149
+ };
2150
+ }
2151
+ function AttoChangeBlock$_init_$lambda_31jg7w_0(this$0) {
2152
+ return function () {
2153
+ return new (AttoAddress())(this$0.r30_1, this$0.s30_1);
2154
+ };
2155
+ }
2156
+ function AttoChangeBlock$_init_$lambda_31jg7w_1(this$0) {
2157
+ return function () {
2158
+ return new (AttoAddress())(this$0.x30_1, this$0.y30_1);
2159
+ };
2160
+ }
2161
+ var AttoChangeBlockClass;
2162
+ function AttoChangeBlock() {
2163
+ if (AttoChangeBlockClass === VOID) {
2164
+ class $ {
2165
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) {
2166
+ Companion_getInstance_7();
2167
+ this.p30_1 = network;
2168
+ this.q30_1 = version;
2169
+ this.r30_1 = algorithm;
2170
+ this.s30_1 = publicKey;
2171
+ this.t30_1 = height;
2172
+ this.u30_1 = balance;
2173
+ this.v30_1 = timestamp;
2174
+ this.w30_1 = previous;
2175
+ this.x30_1 = representativeAlgorithm;
2176
+ this.y30_1 = representativePublicKey;
2177
+ this.z30_1 = AttoBlockType_CHANGE_getInstance();
2178
+ var tmp = this;
2179
+ tmp.a31_1 = lazy_0(AttoChangeBlock$hash$delegate$lambda(this));
2180
+ var tmp_0 = this;
2181
+ tmp_0.b31_1 = lazy_0(AttoChangeBlock$address$delegate$lambda(this));
2182
+ var tmp_1 = this;
2183
+ tmp_1.c31_1 = lazy_0(AttoChangeBlock$representativeAddress$delegate$lambda(this));
2184
+ }
2185
+ r2v() {
2186
+ return this.p30_1;
2187
+ }
2188
+ s2v() {
2189
+ return this.q30_1;
2190
+ }
2191
+ t2v() {
2192
+ return this.r30_1;
2193
+ }
2194
+ q2v() {
2195
+ return this.s30_1;
2196
+ }
2197
+ u2v() {
2198
+ return this.t30_1;
2199
+ }
2200
+ v2v() {
2201
+ return this.u30_1;
2202
+ }
2203
+ a2x() {
2204
+ return this.v30_1;
2205
+ }
2206
+ t2y() {
2207
+ return this.w30_1;
2208
+ }
2209
+ y2v() {
2210
+ return this.x30_1;
2211
+ }
2212
+ z2v() {
2213
+ return this.y30_1;
2214
+ }
2215
+ q2y() {
2216
+ return this.z30_1;
2217
+ }
2218
+ v2w() {
2219
+ var tmp0 = this.a31_1;
2220
+ var tmp = KProperty1();
2221
+ // Inline function 'kotlin.getValue' call
2222
+ getPropertyCallableRef('hash', 1, tmp, AttoChangeBlock$_get_hash_$ref_i4oufz(), null);
2223
+ return tmp0.s1();
2224
+ }
2225
+ a2w() {
2226
+ var tmp0 = this.b31_1;
2227
+ var tmp = KProperty1();
2228
+ // Inline function 'kotlin.getValue' call
2229
+ getPropertyCallableRef('address', 1, tmp, AttoChangeBlock$_get_address_$ref_b5hbw7(), null);
2230
+ return tmp0.s1();
2231
+ }
2232
+ b2w() {
2233
+ var tmp0 = this.c31_1;
2234
+ var tmp = KProperty1();
2235
+ // Inline function 'kotlin.getValue' call
2236
+ getPropertyCallableRef('representativeAddress', 1, tmp, AttoChangeBlock$_get_representativeAddress_$ref_2pxa6k(), null);
2237
+ return tmp0.s1();
2238
+ }
2239
+ r2y() {
2240
+ // Inline function 'kotlin.apply' call
2241
+ var this_0 = new (Buffer())();
2242
+ writeAttoBlockType(this_0, this.z30_1);
2243
+ writeAttoNetwork(this_0, this.p30_1);
2244
+ writeAttoVersion(this_0, this.q30_1);
2245
+ writeAttoAlgorithm(this_0, this.r30_1);
2246
+ writeAttoPublicKey(this_0, this.s30_1);
2247
+ writeAttoHeight(this_0, this.t30_1);
2248
+ writeAttoAmount(this_0, this.u30_1);
2249
+ writeInstant(this_0, this.v30_1);
2250
+ writeAttoHash(this_0, this.w30_1);
2251
+ writeAttoAlgorithm(this_0, this.x30_1);
2252
+ writeAttoPublicKey(this_0, this.y30_1);
2253
+ return this_0;
2254
+ }
2255
+ isValid() {
2256
+ return isValid.call(this) && this.t30_1.p2z(new (AttoHeight())(_ULong___init__impl__c78o9k(new (Long())(1, 0)))) > 0;
2257
+ }
2258
+ gl() {
2259
+ return this.p30_1;
2260
+ }
2261
+ hl() {
2262
+ return this.q30_1;
2263
+ }
2264
+ f2w() {
2265
+ return this.r30_1;
2266
+ }
2267
+ g2w() {
2268
+ return this.s30_1;
2269
+ }
2270
+ h2w() {
2271
+ return this.t30_1;
2272
+ }
2273
+ i2w() {
2274
+ return this.u30_1;
2275
+ }
2276
+ j2w() {
2277
+ return this.v30_1;
2278
+ }
2279
+ k2w() {
2280
+ return this.w30_1;
2281
+ }
2282
+ l2w() {
2283
+ return this.x30_1;
2284
+ }
2285
+ m2w() {
2286
+ return this.y30_1;
2287
+ }
2288
+ e31(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) {
2289
+ return new (AttoChangeBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey);
2290
+ }
2291
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey, $super) {
2292
+ network = network === VOID ? this.p30_1 : network;
2293
+ version = version === VOID ? this.q30_1 : version;
2294
+ algorithm = algorithm === VOID ? this.r30_1 : algorithm;
2295
+ publicKey = publicKey === VOID ? this.s30_1 : publicKey;
2296
+ height = height === VOID ? this.t30_1 : height;
2297
+ balance = balance === VOID ? this.u30_1 : balance;
2298
+ timestamp = timestamp === VOID ? this.v30_1 : timestamp;
2299
+ previous = previous === VOID ? this.w30_1 : previous;
2300
+ representativeAlgorithm = representativeAlgorithm === VOID ? this.x30_1 : representativeAlgorithm;
2301
+ representativePublicKey = representativePublicKey === VOID ? this.y30_1 : representativePublicKey;
2302
+ return $super === VOID ? this.e31(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) : $super.e31.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey);
2303
+ }
2304
+ toString() {
2305
+ return 'AttoChangeBlock(network=' + this.p30_1.toString() + ', version=' + this.q30_1.toString() + ', algorithm=' + this.r30_1.toString() + ', publicKey=' + this.s30_1.toString() + ', height=' + this.t30_1.toString() + ', balance=' + this.u30_1.toString() + ', timestamp=' + this.v30_1.toString() + ', previous=' + this.w30_1.toString() + ', representativeAlgorithm=' + this.x30_1.toString() + ', representativePublicKey=' + this.y30_1.toString() + ')';
2306
+ }
2307
+ hashCode() {
2308
+ var result = this.p30_1.hashCode();
2309
+ result = imul(result, 31) + this.q30_1.hashCode() | 0;
2310
+ result = imul(result, 31) + this.r30_1.hashCode() | 0;
2311
+ result = imul(result, 31) + this.s30_1.hashCode() | 0;
2312
+ result = imul(result, 31) + this.t30_1.hashCode() | 0;
2313
+ result = imul(result, 31) + this.u30_1.hashCode() | 0;
2314
+ result = imul(result, 31) + this.v30_1.hashCode() | 0;
2315
+ result = imul(result, 31) + this.w30_1.hashCode() | 0;
2316
+ result = imul(result, 31) + this.x30_1.hashCode() | 0;
2317
+ result = imul(result, 31) + this.y30_1.hashCode() | 0;
2318
+ return result;
2319
+ }
2320
+ equals(other) {
2321
+ if (this === other)
2322
+ return true;
2323
+ if (!(other instanceof AttoChangeBlock()))
2324
+ return false;
2325
+ var tmp0_other_with_cast = other instanceof AttoChangeBlock() ? other : THROW_CCE();
2326
+ if (!this.p30_1.equals(tmp0_other_with_cast.p30_1))
2327
+ return false;
2328
+ if (!this.q30_1.equals(tmp0_other_with_cast.q30_1))
2329
+ return false;
2330
+ if (!this.r30_1.equals(tmp0_other_with_cast.r30_1))
2331
+ return false;
2332
+ if (!this.s30_1.equals(tmp0_other_with_cast.s30_1))
2333
+ return false;
2334
+ if (!this.t30_1.equals(tmp0_other_with_cast.t30_1))
2335
+ return false;
2336
+ if (!this.u30_1.equals(tmp0_other_with_cast.u30_1))
2337
+ return false;
2338
+ if (!this.v30_1.equals(tmp0_other_with_cast.v30_1))
2339
+ return false;
2340
+ if (!this.w30_1.equals(tmp0_other_with_cast.w30_1))
2341
+ return false;
2342
+ if (!this.x30_1.equals(tmp0_other_with_cast.x30_1))
2343
+ return false;
2344
+ if (!this.y30_1.equals(tmp0_other_with_cast.y30_1))
2345
+ return false;
2346
+ return true;
2347
+ }
2348
+ static d31(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey, serializationConstructorMarker) {
2349
+ Companion_getInstance_7();
2350
+ if (!(1023 === (1023 & seen0))) {
2351
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_2().n30_1);
2352
+ }
2353
+ var $this = createThis(this);
2354
+ $this.p30_1 = network;
2355
+ $this.q30_1 = version;
2356
+ $this.r30_1 = algorithm;
2357
+ $this.s30_1 = publicKey;
2358
+ $this.t30_1 = height;
2359
+ $this.u30_1 = balance;
2360
+ $this.v30_1 = timestamp;
2361
+ $this.w30_1 = previous;
2362
+ $this.x30_1 = representativeAlgorithm;
2363
+ $this.y30_1 = representativePublicKey;
2364
+ $this.z30_1 = AttoBlockType_CHANGE_getInstance();
2365
+ var tmp = $this;
2366
+ tmp.a31_1 = lazy_0(AttoChangeBlock$_init_$lambda_31jg7w($this));
2367
+ var tmp_0 = $this;
2368
+ tmp_0.b31_1 = lazy_0(AttoChangeBlock$_init_$lambda_31jg7w_0($this));
2369
+ var tmp_1 = $this;
2370
+ tmp_1.c31_1 = lazy_0(AttoChangeBlock$_init_$lambda_31jg7w_1($this));
2371
+ return $this;
2372
+ }
2373
+ get network() {
2374
+ return this.r2v();
2375
+ }
2376
+ get version() {
2377
+ return this.s2v();
2378
+ }
2379
+ get algorithm() {
2380
+ return this.t2v();
2381
+ }
2382
+ get publicKey() {
2383
+ return this.q2v();
2384
+ }
2385
+ get height() {
2386
+ return this.u2v();
2387
+ }
2388
+ get balance() {
2389
+ return this.v2v();
2390
+ }
2391
+ get timestamp() {
2392
+ return this.a2x();
2393
+ }
2394
+ get previous() {
2395
+ return this.t2y();
2396
+ }
2397
+ get representativeAlgorithm() {
2398
+ return this.y2v();
2399
+ }
2400
+ get representativePublicKey() {
2401
+ return this.z2v();
2402
+ }
2403
+ get type() {
2404
+ return this.q2y();
2405
+ }
2406
+ get hash() {
2407
+ return this.v2w();
2408
+ }
2409
+ get address() {
2410
+ return this.a2w();
2411
+ }
2412
+ get representativeAddress() {
2413
+ return this.b2w();
2414
+ }
2415
+ }
2416
+ initMetadataForClass($, 'AttoChangeBlock', VOID, VOID, [AttoBlock(), PreviousSupport(), RepresentativeSupport()], VOID, VOID, {0: $serializer_getInstance_2});
2417
+ AttoChangeBlockClass = $;
2418
+ }
2419
+ return AttoChangeBlockClass;
2420
+ }
2421
+ function AttoBlockType_UNKNOWN_getInstance() {
2422
+ AttoBlockType_initEntries();
2423
+ return AttoBlockType_UNKNOWN_instance;
2424
+ }
2425
+ function AttoBlockType_OPEN_getInstance() {
2426
+ AttoBlockType_initEntries();
2427
+ return AttoBlockType_OPEN_instance;
2428
+ }
2429
+ function AttoBlockType_RECEIVE_getInstance() {
2430
+ AttoBlockType_initEntries();
2431
+ return AttoBlockType_RECEIVE_instance;
2432
+ }
2433
+ function AttoBlockType_SEND_getInstance() {
2434
+ AttoBlockType_initEntries();
2435
+ return AttoBlockType_SEND_instance;
2436
+ }
2437
+ function AttoBlockType_CHANGE_getInstance() {
2438
+ AttoBlockType_initEntries();
2439
+ return AttoBlockType_CHANGE_instance;
2440
+ }
2441
+ var properties_initialized_AttoBlock_kt_lkx0lr;
2442
+ function _init_properties_AttoBlock_kt__sp9j9p() {
2443
+ if (!properties_initialized_AttoBlock_kt_lkx0lr) {
2444
+ properties_initialized_AttoBlock_kt_lkx0lr = true;
2445
+ maxVersion = new (AttoVersion())(_UShort___init__impl__jigrne(0));
2446
+ }
2447
+ }
2448
+ //region block: init
2449
+ Companion_instance_0 = new (Companion_0())();
2450
+ //endregion
2451
+ //region block: exports
2452
+ export {
2453
+ Companion_0 as Companion1dgdscbdp629o,
2454
+ Companion as Companion3u1bosrh7rroz,
2455
+ valueOf as valueOfb8c3bsf1tbuo,
2456
+ values_0 as values1esofir5pvotm,
2457
+ AttoBlockType as AttoBlockType2o3t26mpp4g1m,
2458
+ Companion_4 as Companion3m333c3oak3ah,
2459
+ AttoChangeBlock as AttoChangeBlock2ght5eopbdd3a,
2460
+ Companion_3 as Companion22hic3dn5hjie,
2461
+ AttoOpenBlock as AttoOpenBlock12k0m6lgjqi4d,
2462
+ Companion_2 as Companion35frkk3dh8l5t,
2463
+ AttoReceiveBlock as AttoReceiveBlock1rskhrovahuhh,
2464
+ Companion_1 as Companion2stbuimptwsmu,
2465
+ AttoSendBlock as AttoSendBlock3okbwu66utugk,
2466
+ HeightSupport as HeightSupport3fvmuzuofr8h6,
2467
+ PreviousSupport as PreviousSupport1um4ogj9ve97w,
2468
+ AttoBlockType_CHANGE_getInstance as AttoBlockType_CHANGE_getInstance3orw5rx2tjqv2,
2469
+ AttoBlockType_OPEN_getInstance as AttoBlockType_OPEN_getInstance2qq2w4m4uqmq7,
2470
+ AttoBlockType_RECEIVE_getInstance as AttoBlockType_RECEIVE_getInstancemszz2w4jvf1a,
2471
+ AttoBlockType_SEND_getInstance as AttoBlockType_SEND_getInstance381mhjyjs1zzi,
2472
+ AttoBlockType_UNKNOWN_getInstance as AttoBlockType_UNKNOWN_getInstance3dnnplul63rg3,
2473
+ Companion_getInstance_3 as Companion_getInstance1l72fs50ibztr,
2474
+ Companion_instance_0 as Companion_instance387qsp52z8jyu,
2475
+ Companion_getInstance_2 as Companion_getInstance2phtijzt3ebp3,
2476
+ Companion_getInstance_7 as Companion_getInstance22d8d928ihuoo,
2477
+ Companion_getInstance_6 as Companion_getInstance30jgubha5f9hp,
2478
+ Companion_getInstance_5 as Companion_getInstance3uyok5rq53k69,
2479
+ Companion_getInstance_4 as Companion_getInstance1oozvss6gswmf,
2480
+ };
2481
+ //endregion
2482
+
2483
+ //# sourceMappingURL=AttoBlock.mjs.map