@attocash/commons-test 6.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 (1442) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +332 -0
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -0
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +96 -0
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -0
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +104 -0
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -0
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +439 -0
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -0
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +238 -0
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -0
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +295 -0
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -0
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +175 -0
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -0
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +380 -0
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -0
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +202 -0
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -0
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +102 -0
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -0
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +264 -0
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -0
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +506 -0
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -0
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +330 -0
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -0
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +767 -0
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -0
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +769 -0
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -0
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
  40. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs.map +1 -0
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +55 -0
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -0
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +155 -0
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -0
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +177 -0
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -0
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +693 -0
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -0
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +107 -0
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -0
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +174 -0
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -0
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +178 -0
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -0
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +260 -0
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -0
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +61 -0
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -0
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +456 -0
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -0
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +440 -0
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -0
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +95 -0
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -0
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
  79. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +22 -0
  80. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -0
  81. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +431 -0
  82. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -0
  83. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +53 -0
  84. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -0
  85. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +53 -0
  86. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -0
  87. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +53 -0
  88. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -0
  89. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +130 -0
  90. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -0
  91. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
  92. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
  93. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.d.mts +19 -0
  94. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +23 -0
  95. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs.map +1 -0
  96. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +106 -0
  97. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -0
  98. package/commons-commons-core/cash/atto/commons/AttoAccount.export.d.mts +45 -0
  99. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +20 -0
  100. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -0
  101. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +524 -0
  102. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -0
  103. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.d.mts +41 -0
  104. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +20 -0
  105. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -0
  106. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +449 -0
  107. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -0
  108. package/commons-commons-core/cash/atto/commons/AttoAddress.export.d.mts +41 -0
  109. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +22 -0
  110. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -0
  111. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +278 -0
  112. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -0
  113. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.d.mts +36 -0
  114. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +26 -0
  115. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -0
  116. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +162 -0
  117. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -0
  118. package/commons-commons-core/cash/atto/commons/AttoAmount.export.d.mts +56 -0
  119. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +35 -0
  120. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -0
  121. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +351 -0
  122. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -0
  123. package/commons-commons-core/cash/atto/commons/AttoBlock.export.d.mts +287 -0
  124. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +62 -0
  125. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -0
  126. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +2452 -0
  127. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -0
  128. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +148 -0
  129. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -0
  130. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.d.mts +29 -0
  131. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +20 -0
  132. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -0
  133. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +133 -0
  134. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -0
  135. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
  136. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
  137. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
  139. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
  140. package/commons-commons-core/cash/atto/commons/AttoHash.export.d.mts +39 -0
  141. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +20 -0
  142. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -0
  143. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +182 -0
  144. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -0
  145. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +47 -0
  146. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -0
  147. package/commons-commons-core/cash/atto/commons/AttoHeight.export.d.mts +35 -0
  148. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +22 -0
  149. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -0
  150. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +240 -0
  151. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -0
  152. package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
  153. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
  154. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
  156. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
  158. package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
  159. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
  160. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
  161. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +74 -0
  163. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
  164. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
  165. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
  166. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map +1 -0
  167. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
  168. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
  169. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
  170. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
  171. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
  172. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
  173. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.d.mts +55 -0
  174. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +34 -0
  175. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -0
  176. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +189 -0
  177. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -0
  178. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.d.mts +29 -0
  179. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +22 -0
  180. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -0
  181. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +65 -0
  182. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -0
  183. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +196 -0
  184. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -0
  185. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.d.mts +30 -0
  186. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +20 -0
  187. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -0
  188. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.d.mts +3 -0
  189. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
  190. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs.map +1 -0
  191. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs +21 -0
  192. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -0
  193. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +129 -0
  194. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -0
  195. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.d.mts +39 -0
  196. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +20 -0
  197. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -0
  198. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +428 -0
  199. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -0
  200. package/commons-commons-core/cash/atto/commons/AttoSeed.export.d.mts +14 -0
  201. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs +13 -0
  202. package/commons-commons-core/cash/atto/commons/AttoSeed.export.mjs.map +1 -0
  203. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.d.mts +3 -0
  204. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
  205. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map +1 -0
  206. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
  207. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
  208. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +86 -0
  209. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -0
  210. package/commons-commons-core/cash/atto/commons/AttoSignature.export.d.mts +31 -0
  211. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +20 -0
  212. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -0
  213. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs +19 -0
  214. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -0
  215. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +135 -0
  216. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -0
  217. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +49 -0
  218. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -0
  219. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +15 -0
  220. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -0
  221. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.d.mts +15 -0
  222. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs +13 -0
  223. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.export.mjs.map +1 -0
  224. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +81 -0
  225. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -0
  226. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.d.mts +40 -0
  227. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +20 -0
  228. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -0
  229. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +351 -0
  230. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -0
  231. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
  232. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
  233. package/commons-commons-core/cash/atto/commons/AttoVersion.export.d.mts +29 -0
  234. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +20 -0
  235. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -0
  236. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +169 -0
  237. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -0
  238. package/commons-commons-core/cash/atto/commons/AttoVote.export.d.mts +39 -0
  239. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +20 -0
  240. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -0
  241. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +381 -0
  242. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -0
  243. package/commons-commons-core/cash/atto/commons/AttoWork.export.d.mts +32 -0
  244. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +20 -0
  245. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -0
  246. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +236 -0
  247. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -0
  248. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
  249. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
  250. package/commons-commons-core/cash/atto/commons/Extensions.export.d.mts +4 -0
  251. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs +16 -0
  252. package/commons-commons-core/cash/atto/commons/Extensions.export.mjs.map +1 -0
  253. package/commons-commons-core/cash/atto/commons/Extensions.mjs +147 -0
  254. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -0
  255. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +156 -0
  256. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -0
  257. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +40 -0
  258. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -0
  259. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
  260. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
  261. package/commons-commons-core.mjs +34 -0
  262. package/commons-commons-core.mjs.map +1 -0
  263. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
  264. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map +1 -0
  265. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
  266. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
  267. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
  268. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
  269. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
  270. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.d.mts +115 -0
  271. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +38 -0
  272. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -0
  273. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +768 -0
  274. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -0
  275. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.d.mts +10 -0
  276. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs +28 -0
  277. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.export.mjs.map +1 -0
  278. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +133 -0
  279. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -0
  280. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
  281. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
  282. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
  283. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
  284. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
  285. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
  286. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
  287. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
  288. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
  289. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
  290. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
  291. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
  292. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +195 -0
  293. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
  294. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
  295. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
  296. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
  297. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
  298. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
  299. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
  300. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
  301. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
  302. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
  303. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
  304. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
  305. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
  306. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
  307. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
  308. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
  309. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
  310. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
  311. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
  312. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
  313. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
  314. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
  315. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
  316. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
  317. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
  318. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
  319. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
  320. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs.map +1 -0
  321. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
  322. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
  323. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2292 -0
  324. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
  325. package/commons-commons-node-remote.mjs +7 -0
  326. package/commons-commons-node-remote.mjs.map +1 -0
  327. package/commons-commons-node.mjs +15 -0
  328. package/commons-commons-node.mjs.map +1 -0
  329. package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs +53 -0
  330. package/commons-commons-test/cash/atto/commons/node/AttoMockWorker.mjs.map +1 -0
  331. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.d.mts +21 -0
  332. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs +13 -0
  333. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.export.mjs.map +1 -0
  334. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs +163 -0
  335. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.js.mjs.map +1 -0
  336. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs +193 -0
  337. package/commons-commons-test/cash/atto/commons/node/AttoNodeMock.mjs.map +1 -0
  338. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.d.mts +13 -0
  339. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs +13 -0
  340. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.export.mjs.map +1 -0
  341. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs +84 -0
  342. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.js.mjs.map +1 -0
  343. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs +18 -0
  344. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsync.mjs.map +1 -0
  345. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.d.mts +17 -0
  346. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs +13 -0
  347. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.export.mjs.map +1 -0
  348. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs +138 -0
  349. package/commons-commons-test/cash/atto/commons/node/AttoNodeMockAsyncBuilder.js.mjs.map +1 -0
  350. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs +103 -0
  351. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMock.js.mjs.map +1 -0
  352. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.d.mts +12 -0
  353. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs +13 -0
  354. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.export.mjs.map +1 -0
  355. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs +78 -0
  356. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.js.mjs.map +1 -0
  357. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs +18 -0
  358. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsync.mjs.map +1 -0
  359. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.d.mts +12 -0
  360. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs +13 -0
  361. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.export.mjs.map +1 -0
  362. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs +78 -0
  363. package/commons-commons-test/cash/atto/commons/node/AttoWorkerMockAsyncBuilder.js.mjs.map +1 -0
  364. package/commons-commons-test.mjs +14 -0
  365. package/commons-commons-test.mjs.map +1 -0
  366. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +58 -0
  367. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -0
  368. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
  369. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
  370. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
  371. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
  372. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
  373. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
  374. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
  375. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs +16 -0
  376. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.js.mjs.map +1 -0
  377. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs +203 -0
  378. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCpu.mjs.map +1 -0
  379. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +351 -0
  380. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -0
  381. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
  382. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
  383. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
  384. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
  385. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
  386. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +291 -0
  387. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -0
  388. package/commons-commons-worker-remote.mjs +7 -0
  389. package/commons-commons-worker-remote.mjs.map +1 -0
  390. package/commons-commons-worker.mjs +7 -0
  391. package/commons-commons-worker.mjs.map +1 -0
  392. package/index.d.ts +1 -0
  393. package/index.mjs +1 -0
  394. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +52 -0
  395. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -0
  396. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +133 -0
  397. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -0
  398. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs +22 -0
  399. package/kotlin-kotlin-stdlib/kotlin/CharSequence.mjs.map +1 -0
  400. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs +22 -0
  401. package/kotlin-kotlin-stdlib/kotlin/Comparable.mjs.map +1 -0
  402. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs +22 -0
  403. package/kotlin-kotlin-stdlib/kotlin/ComparatorJs.mjs.map +1 -0
  404. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +158 -0
  405. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -0
  406. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +71 -0
  407. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -0
  408. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
  409. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
  410. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +98 -0
  411. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -0
  412. package/kotlin-kotlin-stdlib/kotlin/Library.mjs +29 -0
  413. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -0
  414. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +61 -0
  415. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -0
  416. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +36 -0
  417. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -0
  418. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +142 -0
  419. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -0
  420. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +31 -0
  421. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -0
  422. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +100 -0
  423. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -0
  424. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +105 -0
  425. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -0
  426. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +203 -0
  427. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -0
  428. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +105 -0
  429. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -0
  430. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +203 -0
  431. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -0
  432. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +107 -0
  433. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -0
  434. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +204 -0
  435. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -0
  436. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +106 -0
  437. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -0
  438. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +203 -0
  439. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -0
  440. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs +34 -0
  441. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -0
  442. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +182 -0
  443. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -0
  444. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +99 -0
  445. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -0
  446. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +271 -0
  447. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -0
  448. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +312 -0
  449. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -0
  450. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +75 -0
  451. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -0
  452. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +249 -0
  453. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -0
  454. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +101 -0
  455. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -0
  456. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +43 -0
  457. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -0
  458. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +77 -0
  459. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -0
  460. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +585 -0
  461. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -0
  462. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +44 -0
  463. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -0
  464. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +220 -0
  465. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -0
  466. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +126 -0
  467. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -0
  468. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
  469. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
  470. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
  471. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +161 -0
  472. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -0
  473. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +339 -0
  474. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +96 -0
  476. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -0
  477. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +175 -0
  478. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -0
  479. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +143 -0
  480. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -0
  481. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +71 -0
  482. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -0
  483. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +52 -0
  484. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -0
  485. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +730 -0
  486. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -0
  487. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +63 -0
  488. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +65 -0
  490. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -0
  491. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +37 -0
  492. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -0
  493. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +91 -0
  494. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -0
  495. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +48 -0
  496. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -0
  497. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +43 -0
  498. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -0
  499. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +239 -0
  500. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -0
  501. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +74 -0
  502. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -0
  503. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +44 -0
  504. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -0
  505. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs +22 -0
  506. package/kotlin-kotlin-stdlib/kotlin/collections/RandomAccess.mjs.map +1 -0
  507. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +113 -0
  508. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -0
  509. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +21 -0
  510. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -0
  511. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +343 -0
  512. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -0
  513. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +181 -0
  514. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -0
  515. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +502 -0
  516. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -0
  517. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +30 -0
  518. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -0
  519. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +41 -0
  520. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -0
  521. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +59 -0
  522. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -0
  523. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +137 -0
  524. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -0
  525. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +67 -0
  526. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -0
  527. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
  528. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
  529. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +50 -0
  530. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -0
  531. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +39 -0
  532. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -0
  533. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +78 -0
  534. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -0
  535. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +86 -0
  536. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -0
  537. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +237 -0
  538. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -0
  539. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +48 -0
  540. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -0
  541. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
  542. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
  543. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +53 -0
  544. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -0
  545. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +76 -0
  546. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -0
  547. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +43 -0
  548. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs.map +1 -0
  549. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs +53 -0
  550. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs.map +1 -0
  551. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +166 -0
  552. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -0
  553. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +77 -0
  554. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -0
  555. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +437 -0
  556. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -0
  557. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +51 -0
  558. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -0
  559. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
  560. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
  561. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
  562. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map +1 -0
  563. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +30 -0
  564. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -0
  565. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs +83 -0
  566. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -0
  567. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs +22 -0
  568. package/kotlin-kotlin-stdlib/kotlin/js/FunctionAdapter.mjs.map +1 -0
  569. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +16 -0
  570. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs.map +1 -0
  571. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +94 -0
  572. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -0
  573. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs +70 -0
  574. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -0
  575. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs +51 -0
  576. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -0
  577. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +80 -0
  578. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -0
  579. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +316 -0
  580. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -0
  581. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs +15 -0
  582. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -0
  583. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
  584. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
  585. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
  586. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
  587. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
  588. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
  589. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +238 -0
  590. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -0
  591. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
  592. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
  593. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +72 -0
  594. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -0
  595. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +52 -0
  596. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -0
  597. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs +15 -0
  598. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -0
  599. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +95 -0
  600. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -0
  601. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs +12 -0
  602. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -0
  603. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +173 -0
  604. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -0
  605. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs +21 -0
  606. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -0
  607. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +55 -0
  608. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -0
  609. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +49 -0
  610. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -0
  611. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs +30 -0
  612. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -0
  613. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +166 -0
  614. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -0
  615. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +99 -0
  616. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -0
  617. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +178 -0
  618. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -0
  619. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +96 -0
  620. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -0
  621. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +163 -0
  622. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -0
  623. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +26 -0
  624. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -0
  625. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +17 -0
  626. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -0
  627. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +68 -0
  628. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -0
  629. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs +22 -0
  630. package/kotlin-kotlin-stdlib/kotlin/reflect/KClassJs.mjs.map +1 -0
  631. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +42 -0
  632. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -0
  633. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs +22 -0
  634. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeParameter.mjs.map +1 -0
  635. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +111 -0
  636. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -0
  637. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs +50 -0
  638. package/kotlin-kotlin-stdlib/kotlin/reflect/KVariance.mjs.map +1 -0
  639. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +152 -0
  640. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -0
  641. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs +47 -0
  642. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
  643. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +80 -0
  644. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -0
  645. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +66 -0
  646. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -0
  647. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +296 -0
  648. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -0
  649. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs +141 -0
  650. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
  651. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +169 -0
  652. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -0
  653. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +117 -0
  654. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -0
  655. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +64 -0
  656. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -0
  657. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +30 -0
  658. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -0
  659. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +49 -0
  660. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -0
  661. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +33 -0
  662. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs.map +1 -0
  663. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +527 -0
  664. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -0
  665. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +271 -0
  666. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -0
  667. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +218 -0
  668. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -0
  669. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +146 -0
  670. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -0
  671. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +164 -0
  672. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -0
  673. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +820 -0
  674. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -0
  675. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +293 -0
  676. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -0
  677. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs +38 -0
  678. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -0
  679. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +61 -0
  680. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -0
  681. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +118 -0
  682. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -0
  683. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +128 -0
  684. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -0
  685. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs +17 -0
  686. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -0
  687. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs +40 -0
  688. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -0
  689. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +119 -0
  690. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -0
  691. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +100 -0
  692. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -0
  693. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +256 -0
  694. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -0
  695. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +139 -0
  696. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -0
  697. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +255 -0
  698. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -0
  699. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +225 -0
  700. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -0
  701. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs +34 -0
  702. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
  703. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +798 -0
  704. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -0
  705. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +80 -0
  706. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -0
  707. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +114 -0
  708. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -0
  709. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
  710. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
  711. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
  712. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
  713. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +181 -0
  714. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -0
  715. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +88 -0
  716. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -0
  717. package/kotlin-kotlin-stdlib/noPackageHacks.mjs +62 -0
  718. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -0
  719. package/kotlin-kotlin-stdlib/reflectionJs.mjs +67 -0
  720. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -0
  721. package/kotlin-kotlin-stdlib.mjs +7 -0
  722. package/kotlin-kotlin-stdlib.mjs.map +1 -0
  723. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +47 -0
  724. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -0
  725. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +237 -0
  726. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -0
  727. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs +55 -0
  728. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -0
  729. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +98 -0
  730. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -0
  731. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +121 -0
  732. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -0
  733. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +96 -0
  734. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -0
  735. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +868 -0
  736. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -0
  737. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +61 -0
  738. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -0
  739. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs +23 -0
  740. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableJob.mjs.map +1 -0
  741. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +108 -0
  742. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -0
  743. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +78 -0
  744. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -0
  745. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +99 -0
  746. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs.map +1 -0
  747. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +72 -0
  748. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -0
  749. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +65 -0
  750. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs.map +1 -0
  751. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +93 -0
  752. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -0
  753. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +88 -0
  754. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -0
  755. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs +22 -0
  756. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs.map +1 -0
  757. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +39 -0
  758. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs.map +1 -0
  759. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +44 -0
  760. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -0
  761. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +221 -0
  762. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -0
  763. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +75 -0
  764. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs.map +1 -0
  765. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +145 -0
  766. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -0
  767. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +34 -0
  768. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs.map +1 -0
  769. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +49 -0
  770. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -0
  771. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +79 -0
  772. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -0
  773. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +410 -0
  774. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -0
  775. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +172 -0
  776. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -0
  777. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +1761 -0
  778. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -0
  779. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +64 -0
  780. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs.map +1 -0
  781. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +83 -0
  782. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -0
  783. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs +22 -0
  784. package/kotlinx-coroutines-core/kotlinx/coroutines/Runnable.mjs.map +1 -0
  785. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs +23 -0
  786. package/kotlinx-coroutines-core/kotlinx/coroutines/SchedulerTask.mjs.map +1 -0
  787. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +31 -0
  788. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -0
  789. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +24 -0
  790. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -0
  791. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +70 -0
  792. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs.map +1 -0
  793. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs +22 -0
  794. package/kotlinx-coroutines-core/kotlinx/coroutines/Waiter.mjs.map +1 -0
  795. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs +28 -0
  796. package/kotlinx-coroutines-core/kotlinx/coroutines/Window.mjs.map +1 -0
  797. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs +50 -0
  798. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferOverflow.mjs.map +1 -0
  799. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2791 -0
  800. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -0
  801. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +320 -0
  802. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -0
  803. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +78 -0
  804. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -0
  805. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +24 -0
  806. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -0
  807. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +105 -0
  808. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -0
  809. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +94 -0
  810. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -0
  811. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +108 -0
  812. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -0
  813. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
  814. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
  815. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +26 -0
  816. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
  817. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +27 -0
  818. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
  819. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +43 -0
  820. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -0
  821. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs +22 -0
  822. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/FlowCollector.mjs.map +1 -0
  823. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
  824. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
  825. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +133 -0
  826. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -0
  827. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +79 -0
  828. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
  829. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +272 -0
  830. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
  831. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +283 -0
  832. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
  833. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
  834. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
  835. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +340 -0
  836. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
  837. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +13 -0
  838. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs.map +1 -0
  839. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +47 -0
  840. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -0
  841. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +214 -0
  842. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
  843. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +23 -0
  844. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
  845. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs +28 -0
  846. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NullSurrogate.mjs.map +1 -0
  847. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +69 -0
  848. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -0
  849. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +58 -0
  850. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -0
  851. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
  852. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
  853. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
  854. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
  855. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +49 -0
  856. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -0
  857. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +306 -0
  858. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -0
  859. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +62 -0
  860. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs.map +1 -0
  861. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +56 -0
  862. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs.map +1 -0
  863. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +335 -0
  864. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -0
  865. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +48 -0
  866. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -0
  867. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +199 -0
  868. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs.map +1 -0
  869. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +86 -0
  870. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -0
  871. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +335 -0
  872. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs.map +1 -0
  873. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +47 -0
  874. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs.map +1 -0
  875. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +62 -0
  876. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs.map +1 -0
  877. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +64 -0
  878. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -0
  879. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +20 -0
  880. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -0
  881. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +29 -0
  882. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs.map +1 -0
  883. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs +22 -0
  884. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Synchronized.mjs.map +1 -0
  885. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +52 -0
  886. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -0
  887. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs +12 -0
  888. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.mjs.map +1 -0
  889. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs +12 -0
  890. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadContext.mjs.map +1 -0
  891. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +37 -0
  892. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs.map +1 -0
  893. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +90 -0
  894. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -0
  895. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +129 -0
  896. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -0
  897. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +268 -0
  898. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -0
  899. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
  900. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
  901. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +429 -0
  902. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -0
  903. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +210 -0
  904. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -0
  905. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +34 -0
  906. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -0
  907. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +67 -0
  908. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -0
  909. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +48 -0
  910. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -0
  911. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +587 -0
  912. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -0
  913. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +156 -0
  914. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -0
  915. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +16 -0
  916. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -0
  917. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs +15 -0
  918. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -0
  919. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +85 -0
  920. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -0
  921. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +179 -0
  922. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -0
  923. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +524 -0
  924. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -0
  925. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +46 -0
  926. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -0
  927. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +37 -0
  928. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -0
  929. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +77 -0
  930. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -0
  931. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs +23 -0
  932. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Source.mjs.map +1 -0
  933. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +154 -0
  934. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -0
  935. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +258 -0
  936. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -0
  937. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +27 -0
  938. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -0
  939. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +361 -0
  940. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -0
  941. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +102 -0
  942. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -0
  943. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +42 -0
  944. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs.map +1 -0
  945. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +105 -0
  946. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -0
  947. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +191 -0
  948. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -0
  949. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs +32 -0
  950. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerialFormat.mjs.map +1 -0
  951. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +89 -0
  952. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -0
  953. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +280 -0
  954. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -0
  955. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +149 -0
  956. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -0
  957. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +46 -0
  958. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -0
  959. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +221 -0
  960. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -0
  961. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +117 -0
  962. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -0
  963. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +126 -0
  964. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -0
  965. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +300 -0
  966. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -0
  967. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +438 -0
  968. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -0
  969. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +136 -0
  970. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -0
  971. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +148 -0
  972. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -0
  973. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +49 -0
  974. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -0
  975. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +47 -0
  976. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -0
  977. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +141 -0
  978. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -0
  979. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +172 -0
  980. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -0
  981. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs +22 -0
  982. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CachedNames.mjs.map +1 -0
  983. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +313 -0
  984. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -0
  985. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +711 -0
  986. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -0
  987. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +130 -0
  988. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -0
  989. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +194 -0
  990. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -0
  991. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +127 -0
  992. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -0
  993. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +15 -0
  994. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -0
  995. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +78 -0
  996. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -0
  997. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +86 -0
  998. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -0
  999. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +138 -0
  1000. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -0
  1001. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +90 -0
  1002. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -0
  1003. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +127 -0
  1004. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -0
  1005. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +262 -0
  1006. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -0
  1007. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +33 -0
  1008. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -0
  1009. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +323 -0
  1010. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -0
  1011. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +53 -0
  1012. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -0
  1013. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +1317 -0
  1014. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -0
  1015. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +487 -0
  1016. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -0
  1017. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +257 -0
  1018. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -0
  1019. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +318 -0
  1020. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -0
  1021. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +211 -0
  1022. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -0
  1023. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +209 -0
  1024. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -0
  1025. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs +15 -0
  1026. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -0
  1027. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +29 -0
  1028. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -0
  1029. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +198 -0
  1030. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -0
  1031. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs +42 -0
  1032. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonAnnotations.mjs.map +1 -0
  1033. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +96 -0
  1034. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -0
  1035. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs +26 -0
  1036. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonDecoder.mjs.map +1 -0
  1037. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +456 -0
  1038. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -0
  1039. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +568 -0
  1040. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -0
  1041. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs +26 -0
  1042. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonEncoder.mjs.map +1 -0
  1043. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +12 -0
  1044. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -0
  1045. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +764 -0
  1046. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -0
  1047. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +107 -0
  1048. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -0
  1049. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +221 -0
  1050. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -0
  1051. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +48 -0
  1052. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -0
  1053. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +126 -0
  1054. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -0
  1055. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +257 -0
  1056. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -0
  1057. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +169 -0
  1058. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -0
  1059. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +107 -0
  1060. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -0
  1061. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +24 -0
  1062. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -0
  1063. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +47 -0
  1064. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -0
  1065. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +243 -0
  1066. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -0
  1067. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +64 -0
  1068. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -0
  1069. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +80 -0
  1070. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -0
  1071. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +704 -0
  1072. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -0
  1073. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +381 -0
  1074. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -0
  1075. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +170 -0
  1076. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -0
  1077. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +179 -0
  1078. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -0
  1079. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +995 -0
  1080. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -0
  1081. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +136 -0
  1082. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -0
  1083. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +15 -0
  1084. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -0
  1085. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +582 -0
  1086. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -0
  1087. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +25 -0
  1088. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -0
  1089. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +39 -0
  1090. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -0
  1091. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +294 -0
  1092. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -0
  1093. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +149 -0
  1094. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -0
  1095. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +59 -0
  1096. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -0
  1097. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +71 -0
  1098. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -0
  1099. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +112 -0
  1100. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -0
  1101. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +253 -0
  1102. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -0
  1103. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +136 -0
  1104. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -0
  1105. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +37 -0
  1106. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -0
  1107. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +140 -0
  1108. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -0
  1109. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +346 -0
  1110. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -0
  1111. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +122 -0
  1112. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -0
  1113. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +70 -0
  1114. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -0
  1115. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +29 -0
  1116. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs.map +1 -0
  1117. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +84 -0
  1118. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -0
  1119. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +158 -0
  1120. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -0
  1121. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.mts +4 -0
  1122. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs +13 -0
  1123. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.mjs.map +1 -0
  1124. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +90 -0
  1125. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -0
  1126. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +328 -0
  1127. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -0
  1128. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +172 -0
  1129. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -0
  1130. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs +13 -0
  1131. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -0
  1132. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +141 -0
  1133. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -0
  1134. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +77 -0
  1135. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -0
  1136. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +42 -0
  1137. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -0
  1138. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +312 -0
  1139. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -0
  1140. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +238 -0
  1141. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -0
  1142. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +403 -0
  1143. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -0
  1144. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs +15 -0
  1145. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -0
  1146. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +520 -0
  1147. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -0
  1148. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +70 -0
  1149. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -0
  1150. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +399 -0
  1151. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -0
  1152. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +178 -0
  1153. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -0
  1154. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +214 -0
  1155. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -0
  1156. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
  1157. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
  1158. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +342 -0
  1159. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -0
  1160. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +411 -0
  1161. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -0
  1162. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +257 -0
  1163. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -0
  1164. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +30 -0
  1165. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -0
  1166. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +56 -0
  1167. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -0
  1168. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +52 -0
  1169. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -0
  1170. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +161 -0
  1171. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -0
  1172. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +90 -0
  1173. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -0
  1174. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +262 -0
  1175. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -0
  1176. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
  1177. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
  1178. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +44 -0
  1179. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -0
  1180. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs +23 -0
  1181. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSEClientContent.mjs.map +1 -0
  1182. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +247 -0
  1183. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -0
  1184. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +68 -0
  1185. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -0
  1186. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +23 -0
  1187. package/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs.map +1 -0
  1188. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +50 -0
  1189. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -0
  1190. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +260 -0
  1191. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -0
  1192. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +107 -0
  1193. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -0
  1194. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +48 -0
  1195. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -0
  1196. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +15 -0
  1197. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -0
  1198. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +67 -0
  1199. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -0
  1200. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +112 -0
  1201. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -0
  1202. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +151 -0
  1203. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -0
  1204. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +155 -0
  1205. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -0
  1206. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +99 -0
  1207. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -0
  1208. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +69 -0
  1209. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -0
  1210. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +52 -0
  1211. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -0
  1212. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs +24 -0
  1213. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -0
  1214. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +79 -0
  1215. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -0
  1216. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +30 -0
  1217. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -0
  1218. package/ktor-ktor-client-core.mjs +12 -0
  1219. package/ktor-ktor-client-core.mjs.map +1 -0
  1220. package/ktor-ktor-events/io/ktor/events/Events.mjs +97 -0
  1221. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -0
  1222. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +382 -0
  1223. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -0
  1224. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +457 -0
  1225. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -0
  1226. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +219 -0
  1227. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -0
  1228. package/ktor-ktor-http/io/ktor/http/Headers.mjs +153 -0
  1229. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -0
  1230. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +372 -0
  1231. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -0
  1232. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +245 -0
  1233. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -0
  1234. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +54 -0
  1235. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -0
  1236. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +92 -0
  1237. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -0
  1238. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +81 -0
  1239. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -0
  1240. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +150 -0
  1241. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -0
  1242. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +146 -0
  1243. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -0
  1244. package/ktor-ktor-http/io/ktor/http/Query.mjs +109 -0
  1245. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -0
  1246. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +284 -0
  1247. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -0
  1248. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +30 -0
  1249. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -0
  1250. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +400 -0
  1251. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -0
  1252. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +139 -0
  1253. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -0
  1254. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +128 -0
  1255. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -0
  1256. package/ktor-ktor-http/io/ktor/http/Url.mjs +344 -0
  1257. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -0
  1258. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +154 -0
  1259. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -0
  1260. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +42 -0
  1261. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -0
  1262. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +22 -0
  1263. package/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -0
  1264. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +137 -0
  1265. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -0
  1266. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +51 -0
  1267. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -0
  1268. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +35 -0
  1269. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -0
  1270. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +327 -0
  1271. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -0
  1272. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +224 -0
  1273. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -0
  1274. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +547 -0
  1275. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -0
  1276. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +257 -0
  1277. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -0
  1278. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +366 -0
  1279. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -0
  1280. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +64 -0
  1281. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -0
  1282. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs +12 -0
  1283. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -0
  1284. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +332 -0
  1285. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -0
  1286. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +30 -0
  1287. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs.map +1 -0
  1288. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +30 -0
  1289. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -0
  1290. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +24 -0
  1291. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -0
  1292. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs +12 -0
  1293. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +1 -0
  1294. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +539 -0
  1295. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -0
  1296. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +27 -0
  1297. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -0
  1298. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +208 -0
  1299. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -0
  1300. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +89 -0
  1301. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -0
  1302. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +358 -0
  1303. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -0
  1304. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +43 -0
  1305. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -0
  1306. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +271 -0
  1307. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -0
  1308. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +87 -0
  1309. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -0
  1310. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +89 -0
  1311. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -0
  1312. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs +15 -0
  1313. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -0
  1314. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +65 -0
  1315. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs.map +1 -0
  1316. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs +15 -0
  1317. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
  1318. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +117 -0
  1319. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -0
  1320. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +72 -0
  1321. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -0
  1322. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +407 -0
  1323. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -0
  1324. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs +34 -0
  1325. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -0
  1326. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +82 -0
  1327. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -0
  1328. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +38 -0
  1329. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -0
  1330. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +43 -0
  1331. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -0
  1332. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +110 -0
  1333. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -0
  1334. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs +22 -0
  1335. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -0
  1336. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +12 -0
  1337. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -0
  1338. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +18 -0
  1339. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -0
  1340. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +27 -0
  1341. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -0
  1342. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +43 -0
  1343. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -0
  1344. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +18 -0
  1345. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -0
  1346. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +60 -0
  1347. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -0
  1348. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +42 -0
  1349. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -0
  1350. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +81 -0
  1351. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -0
  1352. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +50 -0
  1353. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -0
  1354. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +48 -0
  1355. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -0
  1356. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +248 -0
  1357. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -0
  1358. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +33 -0
  1359. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -0
  1360. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs +15 -0
  1361. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +1 -0
  1362. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +442 -0
  1363. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -0
  1364. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +195 -0
  1365. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -0
  1366. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +44 -0
  1367. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -0
  1368. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs +8 -0
  1369. package/ktor-ktor-server-core/io/ktor/server/engine/ShutdownHook.jsAndWasmShared.mjs.map +1 -0
  1370. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +126 -0
  1371. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -0
  1372. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +73 -0
  1373. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -0
  1374. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +192 -0
  1375. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -0
  1376. package/ktor-ktor-utils/io/ktor/util/Charset.mjs +34 -0
  1377. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -0
  1378. package/ktor-ktor-utils/io/ktor/util/Collections.mjs +15 -0
  1379. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -0
  1380. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs +12 -0
  1381. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -0
  1382. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +41 -0
  1383. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -0
  1384. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +159 -0
  1385. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -0
  1386. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +43 -0
  1387. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -0
  1388. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +221 -0
  1389. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -0
  1390. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +16 -0
  1391. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -0
  1392. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +370 -0
  1393. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -0
  1394. package/ktor-ktor-utils/io/ktor/util/Text.mjs +132 -0
  1395. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -0
  1396. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +31 -0
  1397. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -0
  1398. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +519 -0
  1399. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -0
  1400. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +60 -0
  1401. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -0
  1402. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +100 -0
  1403. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -0
  1404. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +137 -0
  1405. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -0
  1406. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +84 -0
  1407. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -0
  1408. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +84 -0
  1409. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -0
  1410. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +120 -0
  1411. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -0
  1412. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +362 -0
  1413. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -0
  1414. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs +16 -0
  1415. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -0
  1416. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +41 -0
  1417. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -0
  1418. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs +15 -0
  1419. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -0
  1420. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +50 -0
  1421. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -0
  1422. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +89 -0
  1423. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -0
  1424. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +29 -0
  1425. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -0
  1426. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs +12 -0
  1427. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -0
  1428. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +196 -0
  1429. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -0
  1430. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +55 -0
  1431. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -0
  1432. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +12 -0
  1433. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -0
  1434. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +207 -0
  1435. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -0
  1436. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +47 -0
  1437. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -0
  1438. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +148 -0
  1439. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -0
  1440. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +167 -0
  1441. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -0
  1442. package/package.json +23 -0
@@ -0,0 +1,2452 @@
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 {
26
+ readAttoBlockType2dwlrmdhyg48p as readAttoBlockType,
27
+ readAttoNetwork1knl8nqvjlp4t as readAttoNetwork,
28
+ readAttoVersion2tblb19soew1a as readAttoVersion,
29
+ readAttoAlgorithm2fpoyxlo6m22r as readAttoAlgorithm,
30
+ readAttoPublicKey17rfqt5eeh8ry as readAttoPublicKey,
31
+ readAttoHeight34jcamiyd43a6 as readAttoHeight,
32
+ readAttoAmount157l4r14f1y8p as readAttoAmount,
33
+ readInstant123oo9arkobie as readInstant,
34
+ readAttoHash1jj5f8h5zm9gz as readAttoHash,
35
+ hashp2uamll9q67e as hash,
36
+ writeAttoBlockType3chft5h9f8c2 as writeAttoBlockType,
37
+ writeAttoNetwork3p10lda0ixojo as writeAttoNetwork,
38
+ writeAttoVersion2r5ti8he5h7b8 as writeAttoVersion,
39
+ writeAttoAlgorithm2hcmexbbporb5 as writeAttoAlgorithm,
40
+ writeAttoPublicKey1trmkfrbx6n44 as writeAttoPublicKey,
41
+ writeAttoHeight2lxvq4mztktmg as writeAttoHeight,
42
+ writeAttoAmount2hhzaor5f9e2u as writeAttoAmount,
43
+ writeInstant2bpcbovpq78pu as writeInstant,
44
+ writeAttoHash2bu4sgme3cpn as writeAttoHash,
45
+ } from './AttoBufferExtensions.mjs';
46
+ import { getKClass3t8tygqu4lcxf as getKClass } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs';
47
+ import { SealedClassSerializeriwipiibk55zc as SealedClassSerializer } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs';
48
+ import {
49
+ SerializerFactory1qv9hivitncuv as SerializerFactory,
50
+ typeParametersSerializers2likxjr48tr7y as typeParametersSerializers,
51
+ GeneratedSerializer1f7t7hssdd2ws as GeneratedSerializer,
52
+ } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs';
53
+ import {
54
+ Error30j3ojkdbobic as Error_0,
55
+ Ok_instance16o85l22vdqrr as Ok_instance,
56
+ Ok13drvlkukl2fs as Ok,
57
+ } from './AttoValidation.mjs';
58
+ import {
59
+ Companion_instance1fg0f1h3yksy8 as Companion_instance,
60
+ AttoInstantAsLongSerializer_getInstance2fa8f20kvnk9j as AttoInstantAsLongSerializer_getInstance,
61
+ } from './AttoInstant.mjs';
62
+ import {
63
+ Companion_getInstance3vz87v4c01z2t as Companion_getInstance,
64
+ toDuration7gy6v749ektt as toDuration,
65
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/time/Duration.mjs';
66
+ import { DurationUnit_MINUTES_getInstancejlptjvjgjkm8 as DurationUnit_MINUTES_getInstance } from '../../../../kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs';
67
+ import { isInterface3d6p8outrmvmk as isInterface } from '../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
68
+ import {
69
+ Companion_getInstancezafbg69jdanb as Companion_getInstance_0,
70
+ AttoAmountAsULongSerializer_getInstanceh2609yxm2twf as AttoAmountAsULongSerializer_getInstance,
71
+ } from './AttoAmount.mjs';
72
+ import {
73
+ Companion_getInstance1rciukis3eslg as Companion_getInstance_1,
74
+ AttoHeightSerializer_getInstance3gs6ucbpk3jcu as AttoHeightSerializer_getInstance,
75
+ AttoHeight1604ccqlfsk68 as AttoHeight,
76
+ } from './AttoHeight.mjs';
77
+ import {
78
+ AttoHashableglgxag9qublj as AttoHashable,
79
+ AttoHashAsStringSerializer_getInstanceedliht4fjm38 as AttoHashAsStringSerializer_getInstance,
80
+ AttoHash227yq6itzz6uq as AttoHash,
81
+ } from './AttoHash.mjs';
82
+ import { values1ix93lj72gxe9 as values } from './AttoNetwork.mjs';
83
+ import { createSimpleEnumSerializer2guioz11kk1m0 as createSimpleEnumSerializer } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs';
84
+ import { Companion_getInstance19ckbg90y6ov9 as Companion_getInstance_2 } from './AttoAlgorithm.mjs';
85
+ import { LazyThreadSafetyMode_PUBLICATION_getInstance3hlj875zwihx0 as LazyThreadSafetyMode_PUBLICATION_getInstance } from '../../../../kotlin-kotlin-stdlib/kotlin/Lazy.mjs';
86
+ import {
87
+ lazy1261dae0bgscp as lazy,
88
+ lazy2hsh8ze7j6ikd as lazy_0,
89
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/kotlin.mjs';
90
+ import { fromInt2ii0rejb1w62w as fromInt } from '../../../../kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs';
91
+ import { IllegalArgumentException2asla15b5jaob as IllegalArgumentException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
92
+ import { PluginGeneratedSerialDescriptorqdzeg5asqhfg as PluginGeneratedSerialDescriptor } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs';
93
+ import {
94
+ AttoVersionSerializer_getInstance3dtcmmiz89i68 as AttoVersionSerializer_getInstance,
95
+ toAttoVersion2i3ijy7q6fb1h as toAttoVersion,
96
+ AttoVersion16od9j7ykpw2t as AttoVersion,
97
+ } from './AttoVersion.mjs';
98
+ import { AttoPublicKeyAsStringSerializer_getInstance1x5nm513mnj2t as AttoPublicKeyAsStringSerializer_getInstance } from './AttoPublicKey.mjs';
99
+ import {
100
+ AttoAddressAsStringSerializer_getInstance5j63k7wo5ww2 as AttoAddressAsStringSerializer_getInstance,
101
+ AttoAddressi1gjrmqbg81z as AttoAddress,
102
+ } from './AttoAddress.mjs';
103
+ import { UnknownFieldExceptiona60e3a6v1xqo as UnknownFieldException } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs';
104
+ import {
105
+ protoOf180f3jzyo7rfj as protoOf,
106
+ createThis2j2avj17cvnv2 as createThis,
107
+ } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
108
+ import { KProperty1ca4yb4wlo496 as KProperty1 } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs';
109
+ import { getPropertyCallableRef3hckxc0xueiaj as getPropertyCallableRef } from '../../../../kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs';
110
+ import { throwMissingFieldException2cmke0v3ynf14 as throwMissingFieldException } from '../../../../kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs';
111
+ import { _ULong___init__impl__c78o9k1p6qzv0dh0bvg as _ULong___init__impl__c78o9k } from '../../../../kotlin-kotlin-stdlib/kotlin/ULong.mjs';
112
+ import { _UInt___init__impl__l7qpdltd1eeof8nsuj as _UInt___init__impl__l7qpdl } from '../../../../kotlin-kotlin-stdlib/kotlin/UInt.mjs';
113
+ import { _UShort___init__impl__jigrne2jag2u7194ozm as _UShort___init__impl__jigrne } from '../../../../kotlin-kotlin-stdlib/kotlin/UShort.mjs';
114
+ //region block: imports
115
+ var imul = Math.imul;
116
+ //endregion
117
+ //region block: pre-declaration
118
+ //endregion
119
+ function get_maxVersion() {
120
+ _init_properties_AttoBlock_kt__sp9j9p();
121
+ return maxVersion;
122
+ }
123
+ var maxVersion;
124
+ var AttoBlockType_UNKNOWN_instance;
125
+ var AttoBlockType_OPEN_instance;
126
+ var AttoBlockType_RECEIVE_instance;
127
+ var AttoBlockType_SEND_instance;
128
+ var AttoBlockType_CHANGE_instance;
129
+ var CompanionClass;
130
+ function Companion() {
131
+ if (CompanionClass === VOID) {
132
+ class $ {
133
+ constructor() {
134
+ Companion_instance_0 = this;
135
+ var tmp = this;
136
+ // Inline function 'kotlin.collections.associateBy' call
137
+ var this_0 = get_entries();
138
+ var capacity = coerceAtLeast(mapCapacity(collectionSizeOrDefault(this_0, 10)), 16);
139
+ // Inline function 'kotlin.collections.associateByTo' call
140
+ var destination = LinkedHashMap().qb(capacity);
141
+ var _iterator__ex2g4s = this_0.k1();
142
+ while (_iterator__ex2g4s.l1()) {
143
+ var element = _iterator__ex2g4s.m1();
144
+ var tmp$ret$0 = new (UByte())(element.code);
145
+ destination.m3(tmp$ret$0, element);
146
+ }
147
+ tmp.s4m_1 = destination;
148
+ }
149
+ from(code) {
150
+ var tmp0_elvis_lhs = this.s4m_1.j3(new (UByte())(code));
151
+ return tmp0_elvis_lhs == null ? AttoBlockType_UNKNOWN_getInstance() : tmp0_elvis_lhs;
152
+ }
153
+ }
154
+ initMetadataForCompanion($);
155
+ CompanionClass = $;
156
+ }
157
+ return CompanionClass;
158
+ }
159
+ var Companion_instance_0;
160
+ function Companion_getInstance_3() {
161
+ AttoBlockType_initEntries();
162
+ if (Companion_instance_0 === VOID)
163
+ new (Companion())();
164
+ return Companion_instance_0;
165
+ }
166
+ function values_0() {
167
+ return [AttoBlockType_UNKNOWN_getInstance(), AttoBlockType_OPEN_getInstance(), AttoBlockType_RECEIVE_getInstance(), AttoBlockType_SEND_getInstance(), AttoBlockType_CHANGE_getInstance()];
168
+ }
169
+ function valueOf(value) {
170
+ switch (value) {
171
+ case 'UNKNOWN':
172
+ return AttoBlockType_UNKNOWN_getInstance();
173
+ case 'OPEN':
174
+ return AttoBlockType_OPEN_getInstance();
175
+ case 'RECEIVE':
176
+ return AttoBlockType_RECEIVE_getInstance();
177
+ case 'SEND':
178
+ return AttoBlockType_SEND_getInstance();
179
+ case 'CHANGE':
180
+ return AttoBlockType_CHANGE_getInstance();
181
+ default:
182
+ AttoBlockType_initEntries();
183
+ THROW_IAE('No enum constant cash.atto.commons.AttoBlockType.' + value);
184
+ break;
185
+ }
186
+ }
187
+ function get_entries() {
188
+ if ($ENTRIES == null)
189
+ $ENTRIES = enumEntries(values_0());
190
+ return $ENTRIES;
191
+ }
192
+ var AttoBlockType_entriesInitialized;
193
+ function AttoBlockType_initEntries() {
194
+ if (AttoBlockType_entriesInitialized)
195
+ return Unit_instance;
196
+ AttoBlockType_entriesInitialized = true;
197
+ AttoBlockType_UNKNOWN_instance = new (AttoBlockType())('UNKNOWN', 0, _UByte___init__impl__g9hnc4(-1), 0);
198
+ AttoBlockType_OPEN_instance = new (AttoBlockType())('OPEN', 1, _UByte___init__impl__g9hnc4(0), 119);
199
+ AttoBlockType_RECEIVE_instance = new (AttoBlockType())('RECEIVE', 2, _UByte___init__impl__g9hnc4(1), 126);
200
+ AttoBlockType_SEND_instance = new (AttoBlockType())('SEND', 3, _UByte___init__impl__g9hnc4(2), 134);
201
+ AttoBlockType_CHANGE_instance = new (AttoBlockType())('CHANGE', 4, _UByte___init__impl__g9hnc4(3), 126);
202
+ Companion_getInstance_3();
203
+ }
204
+ var $ENTRIES;
205
+ var AttoBlockTypeClass;
206
+ function AttoBlockType() {
207
+ if (AttoBlockTypeClass === VOID) {
208
+ class $ extends Enum() {
209
+ constructor(name, ordinal, code, size) {
210
+ super(name, ordinal);
211
+ this.code = code;
212
+ this.size = size;
213
+ }
214
+ w4l() {
215
+ return this.code;
216
+ }
217
+ n1() {
218
+ return this.size;
219
+ }
220
+ get name() {
221
+ return this.w3();
222
+ }
223
+ get ordinal() {
224
+ return this.x3();
225
+ }
226
+ }
227
+ initMetadataForClass($, 'AttoBlockType');
228
+ AttoBlockTypeClass = $;
229
+ }
230
+ return AttoBlockTypeClass;
231
+ }
232
+ var HeightSupportClass;
233
+ function HeightSupport() {
234
+ if (HeightSupportClass === VOID) {
235
+ class $ {}
236
+ initMetadataForInterface($, 'HeightSupport');
237
+ HeightSupportClass = $;
238
+ }
239
+ return HeightSupportClass;
240
+ }
241
+ var AddressSupportClass;
242
+ function AddressSupport() {
243
+ if (AddressSupportClass === VOID) {
244
+ class $ {}
245
+ initMetadataForInterface($, 'AddressSupport');
246
+ AddressSupportClass = $;
247
+ }
248
+ return AddressSupportClass;
249
+ }
250
+ var CompanionClass_0;
251
+ function Companion_0() {
252
+ if (CompanionClass_0 === VOID) {
253
+ class $ {
254
+ fromBuffer(serializedBlock) {
255
+ // Inline function 'kotlin.let' call
256
+ var it = new (Buffer())();
257
+ serializedBlock.i1l(it, 0n, 1n);
258
+ var type = readAttoBlockType(it);
259
+ var tmp;
260
+ switch (type.v3_1) {
261
+ case 3:
262
+ tmp = Companion_getInstance_5().u4m(serializedBlock);
263
+ break;
264
+ case 2:
265
+ tmp = Companion_getInstance_6().u4m(serializedBlock);
266
+ break;
267
+ case 1:
268
+ tmp = Companion_getInstance_7().u4m(serializedBlock);
269
+ break;
270
+ case 4:
271
+ tmp = Companion_getInstance_8().u4m(serializedBlock);
272
+ break;
273
+ case 0:
274
+ return null;
275
+ default:
276
+ noWhenBranchMatchedException();
277
+ break;
278
+ }
279
+ return tmp;
280
+ }
281
+ p3q() {
282
+ var tmp = getKClass(AttoBlock());
283
+ // Inline function 'kotlin.arrayOf' call
284
+ // Inline function 'kotlin.js.unsafeCast' call
285
+ // Inline function 'kotlin.js.asDynamic' call
286
+ var tmp_0 = [getKClass(AttoChangeBlock()), getKClass(AttoOpenBlock()), getKClass(AttoReceiveBlock()), getKClass(AttoSendBlock())];
287
+ // Inline function 'kotlin.arrayOf' call
288
+ // Inline function 'kotlin.js.unsafeCast' call
289
+ // Inline function 'kotlin.js.asDynamic' call
290
+ var tmp_1 = [$serializer_getInstance_2(), $serializer_getInstance_1(), $serializer_getInstance_0(), $serializer_getInstance()];
291
+ // Inline function 'kotlin.arrayOf' call
292
+ // Inline function 'kotlin.js.unsafeCast' call
293
+ // Inline function 'kotlin.js.asDynamic' call
294
+ var tmp$ret$8 = [];
295
+ return SealedClassSerializer().f1u('cash.atto.commons.AttoBlock', tmp, tmp_0, tmp_1, tmp$ret$8);
296
+ }
297
+ b26(typeParamsSerializers) {
298
+ return this.p3q();
299
+ }
300
+ }
301
+ initMetadataForCompanion($, VOID, [SerializerFactory()]);
302
+ CompanionClass_0 = $;
303
+ }
304
+ return CompanionClass_0;
305
+ }
306
+ var Companion_instance_1;
307
+ function Companion_getInstance_4() {
308
+ return Companion_instance_1;
309
+ }
310
+ function validate() {
311
+ if (this.version.z4m(get_maxVersion()) > 0) {
312
+ return new (Error_0())('Invalid version: version=' + this.version.toString() + ' > max=' + get_maxVersion().toString());
313
+ }
314
+ var now = Companion_instance.now();
315
+ var tmp = this.timestamp;
316
+ // Inline function 'kotlin.time.Companion.minutes' call
317
+ Companion_getInstance();
318
+ var tmp$ret$0 = toDuration(1, DurationUnit_MINUTES_getInstance());
319
+ if (tmp.h4k(now.dp(tmp$ret$0)) > 0) {
320
+ return new (Error_0())('Timestamp too far in the future: timestamp=' + this.timestamp.toString() + ', now=' + now.toString() + ', tolerance=1m');
321
+ }
322
+ if (!(this.algorithm.publicKeySize === this.publicKey.value.length)) {
323
+ return new (Error_0())('Public key size does not match algorithm: algorithm.publicKeySize=' + this.algorithm.publicKeySize + ', ' + ('publicKey.size=' + this.publicKey.value.length));
324
+ }
325
+ var tmp_0;
326
+ if (isInterface(this, PreviousSupport())) {
327
+ tmp_0 = !(this.previous.value.length === this.algorithm.hashSize);
328
+ } else {
329
+ tmp_0 = false;
330
+ }
331
+ if (tmp_0) {
332
+ return new (Error_0())('Previous hash size does not match algorithm: algorithm.hashSize=' + this.algorithm.hashSize + ', ' + ('previous.size=' + this.previous.value.length));
333
+ }
334
+ var tmp_1;
335
+ if (isInterface(this, ReceiveSupport())) {
336
+ tmp_1 = !(this.sendHash.value.length === this.sendHashAlgorithm.hashSize);
337
+ } else {
338
+ tmp_1 = false;
339
+ }
340
+ if (tmp_1) {
341
+ return new (Error_0())('Send hash size does not match algorithm: sendHash.size=' + this.sendHash.value.length + ', ' + ('sendHashAlgorithm.hashSize=' + this.sendHashAlgorithm.hashSize));
342
+ }
343
+ var tmp_2;
344
+ if (isInterface(this, ReceiveSupport())) {
345
+ tmp_2 = this.balance.equals(Companion_getInstance_0().MIN);
346
+ } else {
347
+ tmp_2 = false;
348
+ }
349
+ if (tmp_2) {
350
+ return new (Error_0())('Balance must be greater than 0');
351
+ }
352
+ var tmp_3;
353
+ if (!(this instanceof AttoOpenBlock())) {
354
+ tmp_3 = this.height.a4n(Companion_getInstance_1().MIN) <= 0;
355
+ } else {
356
+ tmp_3 = false;
357
+ }
358
+ if (tmp_3) {
359
+ return new (Error_0())('Height must be greater than 1: height=' + this.height.toString());
360
+ }
361
+ var tmp_4;
362
+ if (isInterface(this, RepresentativeSupport())) {
363
+ tmp_4 = !(this.representativeAlgorithm.publicKeySize === this.representativePublicKey.value.length);
364
+ } else {
365
+ tmp_4 = false;
366
+ }
367
+ if (tmp_4) {
368
+ return new (Error_0())('Representative public key size does not match representative algorithm: ' + ('representativeAlgorithm.publicKeySize=' + this.representativeAlgorithm.publicKeySize + ', ') + ('representativePublicKey.size=' + this.representativePublicKey.value.length));
369
+ }
370
+ return Ok_instance;
371
+ }
372
+ function isValid() {
373
+ return this.validate().b4n();
374
+ }
375
+ var AttoBlockClass;
376
+ function AttoBlock() {
377
+ if (AttoBlockClass === VOID) {
378
+ class $ {}
379
+ initMetadataForInterface($, 'AttoBlock', VOID, VOID, [HeightSupport(), AddressSupport(), AttoHashable()], VOID, VOID, {0: Companion_getInstance_4});
380
+ AttoBlockClass = $;
381
+ }
382
+ return AttoBlockClass;
383
+ }
384
+ var PreviousSupportClass;
385
+ function PreviousSupport() {
386
+ if (PreviousSupportClass === VOID) {
387
+ class $ {}
388
+ initMetadataForInterface($, 'PreviousSupport');
389
+ PreviousSupportClass = $;
390
+ }
391
+ return PreviousSupportClass;
392
+ }
393
+ var ReceiveSupportClass;
394
+ function ReceiveSupport() {
395
+ if (ReceiveSupportClass === VOID) {
396
+ class $ {}
397
+ initMetadataForInterface($, 'ReceiveSupport');
398
+ ReceiveSupportClass = $;
399
+ }
400
+ return ReceiveSupportClass;
401
+ }
402
+ var RepresentativeSupportClass;
403
+ function RepresentativeSupport() {
404
+ if (RepresentativeSupportClass === VOID) {
405
+ class $ {}
406
+ initMetadataForInterface($, 'RepresentativeSupport');
407
+ RepresentativeSupportClass = $;
408
+ }
409
+ return RepresentativeSupportClass;
410
+ }
411
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99() {
412
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
413
+ }
414
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_0() {
415
+ return Companion_getInstance_2().p3q();
416
+ }
417
+ function AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_1() {
418
+ return Companion_getInstance_2().p3q();
419
+ }
420
+ var CompanionClass_1;
421
+ function Companion_1() {
422
+ if (CompanionClass_1 === VOID) {
423
+ class $ {
424
+ constructor() {
425
+ Companion_instance_2 = this;
426
+ var tmp = this;
427
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
428
+ var tmp_1 = lazy(tmp_0, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99);
429
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
430
+ var tmp_3 = lazy(tmp_2, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_0);
431
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
432
+ // Inline function 'kotlin.arrayOf' call
433
+ // Inline function 'kotlin.js.unsafeCast' call
434
+ // Inline function 'kotlin.js.asDynamic' call
435
+ tmp.t4m_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoSendBlock$Companion$$childSerializers$_anonymous__s9zy99_1), null, null, null, null];
436
+ }
437
+ u4m(serializedBlock) {
438
+ if (fromInt(AttoBlockType_SEND_getInstance().size) > serializedBlock.n1()) {
439
+ return null;
440
+ }
441
+ var blockType = readAttoBlockType(serializedBlock);
442
+ if (!blockType.equals(AttoBlockType_SEND_getInstance())) {
443
+ throw IllegalArgumentException().i1('Invalid block type: ' + blockType.toString());
444
+ }
445
+ 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));
446
+ }
447
+ p3q() {
448
+ return $serializer_getInstance();
449
+ }
450
+ }
451
+ initMetadataForCompanion($);
452
+ CompanionClass_1 = $;
453
+ }
454
+ return CompanionClass_1;
455
+ }
456
+ var Companion_instance_2;
457
+ function Companion_getInstance_5() {
458
+ if (Companion_instance_2 === VOID)
459
+ new (Companion_1())();
460
+ return Companion_instance_2;
461
+ }
462
+ var $serializerClass;
463
+ function $serializer() {
464
+ if ($serializerClass === VOID) {
465
+ class $ {
466
+ constructor() {
467
+ $serializer_instance = this;
468
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('SEND', this, 13);
469
+ tmp0_serialDesc.a25('network', false);
470
+ tmp0_serialDesc.a25('version', false);
471
+ tmp0_serialDesc.a25('algorithm', false);
472
+ tmp0_serialDesc.a25('publicKey', false);
473
+ tmp0_serialDesc.a25('height', false);
474
+ tmp0_serialDesc.a25('balance', false);
475
+ tmp0_serialDesc.a25('timestamp', false);
476
+ tmp0_serialDesc.a25('previous', false);
477
+ tmp0_serialDesc.a25('receiverAlgorithm', false);
478
+ tmp0_serialDesc.a25('receiverPublicKey', false);
479
+ tmp0_serialDesc.a25('amount', false);
480
+ tmp0_serialDesc.a25('address', true);
481
+ tmp0_serialDesc.a25('receiverAddress', true);
482
+ this.f4n_1 = tmp0_serialDesc;
483
+ }
484
+ g4n(encoder, value) {
485
+ var tmp0_desc = this.f4n_1;
486
+ var tmp1_output = encoder.m1x(tmp0_desc);
487
+ var tmp2_cached = Companion_getInstance_5().t4m_1;
488
+ tmp1_output.d1z(tmp0_desc, 0, tmp2_cached[0].z1(), value.h4n_1);
489
+ tmp1_output.d1z(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.i4n_1);
490
+ tmp1_output.d1z(tmp0_desc, 2, tmp2_cached[2].z1(), value.j4n_1);
491
+ tmp1_output.d1z(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), value.k4n_1);
492
+ tmp1_output.d1z(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.l4n_1);
493
+ tmp1_output.d1z(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), value.m4n_1);
494
+ tmp1_output.d1z(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), value.n4n_1);
495
+ tmp1_output.d1z(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), value.o4n_1);
496
+ tmp1_output.d1z(tmp0_desc, 8, tmp2_cached[8].z1(), value.receiverAlgorithm);
497
+ tmp1_output.d1z(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), value.receiverPublicKey);
498
+ tmp1_output.d1z(tmp0_desc, 10, AttoAmountAsULongSerializer_getInstance(), value.amount);
499
+ tmp1_output.d1z(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), value.r4n_1);
500
+ tmp1_output.d1z(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), value.receiverAddress);
501
+ tmp1_output.n1x(tmp0_desc);
502
+ }
503
+ a1t(encoder, value) {
504
+ return this.g4n(encoder, value instanceof AttoSendBlock() ? value : THROW_CCE());
505
+ }
506
+ b1t(decoder) {
507
+ var tmp0_desc = this.f4n_1;
508
+ var tmp1_flag = true;
509
+ var tmp2_index = 0;
510
+ var tmp3_bitMask0 = 0;
511
+ var tmp4_local0 = null;
512
+ var tmp5_local1 = null;
513
+ var tmp6_local2 = null;
514
+ var tmp7_local3 = null;
515
+ var tmp8_local4 = null;
516
+ var tmp9_local5 = null;
517
+ var tmp10_local6 = null;
518
+ var tmp11_local7 = null;
519
+ var tmp12_local8 = null;
520
+ var tmp13_local9 = null;
521
+ var tmp14_local10 = null;
522
+ var tmp15_local11 = null;
523
+ var tmp16_local12 = null;
524
+ var tmp19_input = decoder.m1x(tmp0_desc);
525
+ var tmp20_cached = Companion_getInstance_5().t4m_1;
526
+ if (tmp19_input.b1y()) {
527
+ tmp4_local0 = tmp19_input.y1x(tmp0_desc, 0, tmp20_cached[0].z1(), tmp4_local0);
528
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
529
+ tmp5_local1 = tmp19_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
530
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
531
+ tmp6_local2 = tmp19_input.y1x(tmp0_desc, 2, tmp20_cached[2].z1(), tmp6_local2);
532
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
533
+ tmp7_local3 = tmp19_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
534
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
535
+ tmp8_local4 = tmp19_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
536
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
537
+ tmp9_local5 = tmp19_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
538
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
539
+ tmp10_local6 = tmp19_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
540
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
541
+ tmp11_local7 = tmp19_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
542
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
543
+ tmp12_local8 = tmp19_input.y1x(tmp0_desc, 8, tmp20_cached[8].z1(), tmp12_local8);
544
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
545
+ tmp13_local9 = tmp19_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
546
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
547
+ tmp14_local10 = tmp19_input.y1x(tmp0_desc, 10, AttoAmountAsULongSerializer_getInstance(), tmp14_local10);
548
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
549
+ tmp15_local11 = tmp19_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
550
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
551
+ tmp16_local12 = tmp19_input.y1x(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), tmp16_local12);
552
+ tmp3_bitMask0 = tmp3_bitMask0 | 4096;
553
+ } else
554
+ while (tmp1_flag) {
555
+ tmp2_index = tmp19_input.c1y(tmp0_desc);
556
+ switch (tmp2_index) {
557
+ case -1:
558
+ tmp1_flag = false;
559
+ break;
560
+ case 0:
561
+ tmp4_local0 = tmp19_input.y1x(tmp0_desc, 0, tmp20_cached[0].z1(), tmp4_local0);
562
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
563
+ break;
564
+ case 1:
565
+ tmp5_local1 = tmp19_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
566
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
567
+ break;
568
+ case 2:
569
+ tmp6_local2 = tmp19_input.y1x(tmp0_desc, 2, tmp20_cached[2].z1(), tmp6_local2);
570
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
571
+ break;
572
+ case 3:
573
+ tmp7_local3 = tmp19_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
574
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
575
+ break;
576
+ case 4:
577
+ tmp8_local4 = tmp19_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
578
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
579
+ break;
580
+ case 5:
581
+ tmp9_local5 = tmp19_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
582
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
583
+ break;
584
+ case 6:
585
+ tmp10_local6 = tmp19_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
586
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
587
+ break;
588
+ case 7:
589
+ tmp11_local7 = tmp19_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
590
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
591
+ break;
592
+ case 8:
593
+ tmp12_local8 = tmp19_input.y1x(tmp0_desc, 8, tmp20_cached[8].z1(), tmp12_local8);
594
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
595
+ break;
596
+ case 9:
597
+ tmp13_local9 = tmp19_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
598
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
599
+ break;
600
+ case 10:
601
+ tmp14_local10 = tmp19_input.y1x(tmp0_desc, 10, AttoAmountAsULongSerializer_getInstance(), tmp14_local10);
602
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
603
+ break;
604
+ case 11:
605
+ tmp15_local11 = tmp19_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
606
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
607
+ break;
608
+ case 12:
609
+ tmp16_local12 = tmp19_input.y1x(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), tmp16_local12);
610
+ tmp3_bitMask0 = tmp3_bitMask0 | 4096;
611
+ break;
612
+ default:
613
+ throw UnknownFieldException().v1u(tmp2_index);
614
+ }
615
+ }
616
+ tmp19_input.n1x(tmp0_desc);
617
+ return AttoSendBlock().s4n(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, tmp16_local12, null);
618
+ }
619
+ z1s() {
620
+ return this.f4n_1;
621
+ }
622
+ p25() {
623
+ var tmp0_cached = Companion_getInstance_5().t4m_1;
624
+ // Inline function 'kotlin.arrayOf' call
625
+ // Inline function 'kotlin.js.unsafeCast' call
626
+ // Inline function 'kotlin.js.asDynamic' call
627
+ return [tmp0_cached[0].z1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountAsULongSerializer_getInstance(), AttoInstantAsLongSerializer_getInstance(), AttoHashAsStringSerializer_getInstance(), tmp0_cached[8].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoAmountAsULongSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance()];
628
+ }
629
+ }
630
+ protoOf($).q25 = typeParametersSerializers;
631
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
632
+ $serializerClass = $;
633
+ }
634
+ return $serializerClass;
635
+ }
636
+ var $serializer_instance;
637
+ function $serializer_getInstance() {
638
+ if ($serializer_instance === VOID)
639
+ new ($serializer())();
640
+ return $serializer_instance;
641
+ }
642
+ function AttoSendBlock$hash$delegate$lambda(this$0) {
643
+ return () => hash(this$0.o4l());
644
+ }
645
+ function AttoSendBlock$_get_hash_$ref_emfoe1() {
646
+ return (p0) => p0.hash;
647
+ }
648
+ function AttoSendBlock$_init_$lambda_dfxw6s(this$0) {
649
+ return () => hash(this$0.o4l());
650
+ }
651
+ var AttoSendBlockClass;
652
+ function AttoSendBlock() {
653
+ if (AttoSendBlockClass === VOID) {
654
+ class $ {
655
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) {
656
+ Companion_getInstance_5();
657
+ this.h4n_1 = network;
658
+ this.i4n_1 = version;
659
+ this.j4n_1 = algorithm;
660
+ this.k4n_1 = publicKey;
661
+ this.l4n_1 = height;
662
+ this.m4n_1 = balance;
663
+ this.n4n_1 = timestamp;
664
+ this.o4n_1 = previous;
665
+ this.receiverAlgorithm = receiverAlgorithm;
666
+ this.receiverPublicKey = receiverPublicKey;
667
+ this.amount = amount;
668
+ this.p4n_1 = AttoBlockType_SEND_getInstance();
669
+ var tmp = this;
670
+ tmp.q4n_1 = lazy_0(AttoSendBlock$hash$delegate$lambda(this));
671
+ this.r4n_1 = new (AttoAddress())(this.j4n_1, this.k4n_1);
672
+ this.receiverAddress = new (AttoAddress())(this.receiverAlgorithm, this.receiverPublicKey);
673
+ }
674
+ v4j() {
675
+ return this.h4n_1;
676
+ }
677
+ l37() {
678
+ return this.i4n_1;
679
+ }
680
+ w4j() {
681
+ return this.j4n_1;
682
+ }
683
+ u4j() {
684
+ return this.k4n_1;
685
+ }
686
+ x4j() {
687
+ return this.l4n_1;
688
+ }
689
+ y4j() {
690
+ return this.m4n_1;
691
+ }
692
+ d4l() {
693
+ return this.n4n_1;
694
+ }
695
+ c4n() {
696
+ return this.o4n_1;
697
+ }
698
+ t4n() {
699
+ return this.receiverAlgorithm;
700
+ }
701
+ u4n() {
702
+ return this.receiverPublicKey;
703
+ }
704
+ v4n() {
705
+ return this.amount;
706
+ }
707
+ y4m() {
708
+ return this.p4n_1;
709
+ }
710
+ y4k() {
711
+ var tmp0 = this.q4n_1;
712
+ var tmp = KProperty1();
713
+ // Inline function 'kotlin.getValue' call
714
+ getPropertyCallableRef('hash', 1, tmp, AttoSendBlock$_get_hash_$ref_emfoe1(), null);
715
+ return tmp0.z1();
716
+ }
717
+ d4k() {
718
+ return this.r4n_1;
719
+ }
720
+ w4n() {
721
+ return this.receiverAddress;
722
+ }
723
+ o4l() {
724
+ // Inline function 'kotlin.apply' call
725
+ var this_0 = new (Buffer())();
726
+ writeAttoBlockType(this_0, this.p4n_1);
727
+ writeAttoNetwork(this_0, this.h4n_1);
728
+ writeAttoVersion(this_0, this.i4n_1);
729
+ writeAttoAlgorithm(this_0, this.j4n_1);
730
+ writeAttoPublicKey(this_0, this.k4n_1);
731
+ writeAttoHeight(this_0, this.l4n_1);
732
+ writeAttoAmount(this_0, this.m4n_1);
733
+ writeInstant(this_0, this.n4n_1);
734
+ writeAttoHash(this_0, this.o4n_1);
735
+ writeAttoAlgorithm(this_0, this.receiverAlgorithm);
736
+ writeAttoPublicKey(this_0, this.receiverPublicKey);
737
+ writeAttoAmount(this_0, this.amount);
738
+ return this_0;
739
+ }
740
+ validate() {
741
+ var parent = validate.call(this);
742
+ if (!(parent instanceof Ok())) {
743
+ if (parent instanceof Error_0())
744
+ return parent;
745
+ else {
746
+ noWhenBranchMatchedException();
747
+ }
748
+ }
749
+ if (this.amount.equals(Companion_getInstance_0().MIN)) {
750
+ return new (Error_0())('Amount must be greater than ' + Companion_getInstance_0().MIN.toString());
751
+ }
752
+ if (this.receiverPublicKey.equals(this.k4n_1)) {
753
+ return new (Error_0())('Receiver public key must be different from public key: receiverPublicKey=' + this.receiverPublicKey.toString() + ', publicKey=' + this.k4n_1.toString());
754
+ }
755
+ if (!(this.receiverAlgorithm.publicKeySize === this.receiverPublicKey.value.length)) {
756
+ return new (Error_0())('Receiver public key size does not match receiver algorithm: ' + ('receiverAlgorithm.publicKeySize=' + this.receiverAlgorithm.publicKeySize + ', ') + ('receiverPublicKey.size=' + this.receiverPublicKey.value.length));
757
+ }
758
+ return Ok_instance;
759
+ }
760
+ ne() {
761
+ return this.h4n_1;
762
+ }
763
+ oe() {
764
+ return this.i4n_1;
765
+ }
766
+ j4k() {
767
+ return this.j4n_1;
768
+ }
769
+ k4k() {
770
+ return this.k4n_1;
771
+ }
772
+ l4k() {
773
+ return this.l4n_1;
774
+ }
775
+ m4k() {
776
+ return this.m4n_1;
777
+ }
778
+ n4k() {
779
+ return this.n4n_1;
780
+ }
781
+ o4k() {
782
+ return this.o4n_1;
783
+ }
784
+ p4k() {
785
+ return this.receiverAlgorithm;
786
+ }
787
+ q4k() {
788
+ return this.receiverPublicKey;
789
+ }
790
+ x4n() {
791
+ return this.amount;
792
+ }
793
+ y4n(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) {
794
+ return new (AttoSendBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount);
795
+ }
796
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount, $super) {
797
+ network = network === VOID ? this.h4n_1 : network;
798
+ version = version === VOID ? this.i4n_1 : version;
799
+ algorithm = algorithm === VOID ? this.j4n_1 : algorithm;
800
+ publicKey = publicKey === VOID ? this.k4n_1 : publicKey;
801
+ height = height === VOID ? this.l4n_1 : height;
802
+ balance = balance === VOID ? this.m4n_1 : balance;
803
+ timestamp = timestamp === VOID ? this.n4n_1 : timestamp;
804
+ previous = previous === VOID ? this.o4n_1 : previous;
805
+ receiverAlgorithm = receiverAlgorithm === VOID ? this.receiverAlgorithm : receiverAlgorithm;
806
+ receiverPublicKey = receiverPublicKey === VOID ? this.receiverPublicKey : receiverPublicKey;
807
+ amount = amount === VOID ? this.amount : amount;
808
+ return $super === VOID ? this.y4n(network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount) : $super.y4n.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount);
809
+ }
810
+ toString() {
811
+ return 'AttoSendBlock(network=' + this.h4n_1.toString() + ', version=' + this.i4n_1.toString() + ', algorithm=' + this.j4n_1.toString() + ', publicKey=' + this.k4n_1.toString() + ', height=' + this.l4n_1.toString() + ', balance=' + this.m4n_1.toString() + ', timestamp=' + this.n4n_1.toString() + ', previous=' + this.o4n_1.toString() + ', receiverAlgorithm=' + this.receiverAlgorithm.toString() + ', receiverPublicKey=' + this.receiverPublicKey.toString() + ', amount=' + this.amount.toString() + ')';
812
+ }
813
+ hashCode() {
814
+ var result = this.h4n_1.hashCode();
815
+ result = imul(result, 31) + this.i4n_1.hashCode() | 0;
816
+ result = imul(result, 31) + this.j4n_1.hashCode() | 0;
817
+ result = imul(result, 31) + this.k4n_1.hashCode() | 0;
818
+ result = imul(result, 31) + this.l4n_1.hashCode() | 0;
819
+ result = imul(result, 31) + this.m4n_1.hashCode() | 0;
820
+ result = imul(result, 31) + this.n4n_1.hashCode() | 0;
821
+ result = imul(result, 31) + this.o4n_1.hashCode() | 0;
822
+ result = imul(result, 31) + this.receiverAlgorithm.hashCode() | 0;
823
+ result = imul(result, 31) + this.receiverPublicKey.hashCode() | 0;
824
+ result = imul(result, 31) + this.amount.hashCode() | 0;
825
+ return result;
826
+ }
827
+ equals(other) {
828
+ if (this === other)
829
+ return true;
830
+ if (!(other instanceof AttoSendBlock()))
831
+ return false;
832
+ if (!this.h4n_1.equals(other.h4n_1))
833
+ return false;
834
+ if (!this.i4n_1.equals(other.i4n_1))
835
+ return false;
836
+ if (!this.j4n_1.equals(other.j4n_1))
837
+ return false;
838
+ if (!this.k4n_1.equals(other.k4n_1))
839
+ return false;
840
+ if (!this.l4n_1.equals(other.l4n_1))
841
+ return false;
842
+ if (!this.m4n_1.equals(other.m4n_1))
843
+ return false;
844
+ if (!this.n4n_1.equals(other.n4n_1))
845
+ return false;
846
+ if (!this.o4n_1.equals(other.o4n_1))
847
+ return false;
848
+ if (!this.receiverAlgorithm.equals(other.receiverAlgorithm))
849
+ return false;
850
+ if (!this.receiverPublicKey.equals(other.receiverPublicKey))
851
+ return false;
852
+ if (!this.amount.equals(other.amount))
853
+ return false;
854
+ return true;
855
+ }
856
+ static s4n(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, receiverAlgorithm, receiverPublicKey, amount, address, receiverAddress, serializationConstructorMarker) {
857
+ Companion_getInstance_5();
858
+ if (!(2047 === (2047 & seen0))) {
859
+ throwMissingFieldException(seen0, 2047, $serializer_getInstance().f4n_1);
860
+ }
861
+ var $this = createThis(this);
862
+ $this.h4n_1 = network;
863
+ $this.i4n_1 = version;
864
+ $this.j4n_1 = algorithm;
865
+ $this.k4n_1 = publicKey;
866
+ $this.l4n_1 = height;
867
+ $this.m4n_1 = balance;
868
+ $this.n4n_1 = timestamp;
869
+ $this.o4n_1 = previous;
870
+ $this.receiverAlgorithm = receiverAlgorithm;
871
+ $this.receiverPublicKey = receiverPublicKey;
872
+ $this.amount = amount;
873
+ $this.p4n_1 = AttoBlockType_SEND_getInstance();
874
+ var tmp = $this;
875
+ tmp.q4n_1 = lazy_0(AttoSendBlock$_init_$lambda_dfxw6s($this));
876
+ if (0 === (seen0 & 2048))
877
+ $this.r4n_1 = new (AttoAddress())($this.j4n_1, $this.k4n_1);
878
+ else
879
+ $this.r4n_1 = address;
880
+ if (0 === (seen0 & 4096))
881
+ $this.receiverAddress = new (AttoAddress())($this.receiverAlgorithm, $this.receiverPublicKey);
882
+ else
883
+ $this.receiverAddress = receiverAddress;
884
+ return $this;
885
+ }
886
+ get network() {
887
+ return this.v4j();
888
+ }
889
+ get version() {
890
+ return this.l37();
891
+ }
892
+ get algorithm() {
893
+ return this.w4j();
894
+ }
895
+ get publicKey() {
896
+ return this.u4j();
897
+ }
898
+ get height() {
899
+ return this.x4j();
900
+ }
901
+ get balance() {
902
+ return this.y4j();
903
+ }
904
+ get timestamp() {
905
+ return this.d4l();
906
+ }
907
+ get previous() {
908
+ return this.c4n();
909
+ }
910
+ get type() {
911
+ return this.y4m();
912
+ }
913
+ get hash() {
914
+ return this.y4k();
915
+ }
916
+ get address() {
917
+ return this.d4k();
918
+ }
919
+ }
920
+ protoOf($).isValid = isValid;
921
+ initMetadataForClass($, 'AttoSendBlock', VOID, VOID, [AttoBlock(), PreviousSupport()], VOID, VOID, {0: $serializer_getInstance});
922
+ AttoSendBlockClass = $;
923
+ }
924
+ return AttoSendBlockClass;
925
+ }
926
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u() {
927
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
928
+ }
929
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_0() {
930
+ return Companion_getInstance_2().p3q();
931
+ }
932
+ function AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_1() {
933
+ return Companion_getInstance_2().p3q();
934
+ }
935
+ var CompanionClass_2;
936
+ function Companion_2() {
937
+ if (CompanionClass_2 === VOID) {
938
+ class $ {
939
+ constructor() {
940
+ Companion_instance_3 = this;
941
+ var tmp = this;
942
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
943
+ var tmp_1 = lazy(tmp_0, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u);
944
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
945
+ var tmp_3 = lazy(tmp_2, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_0);
946
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
947
+ // Inline function 'kotlin.arrayOf' call
948
+ // Inline function 'kotlin.js.unsafeCast' call
949
+ // Inline function 'kotlin.js.asDynamic' call
950
+ tmp.v4m_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoReceiveBlock$Companion$$childSerializers$_anonymous__x8ud9u_1), null, null];
951
+ }
952
+ u4m(serializedBlock) {
953
+ if (fromInt(AttoBlockType_RECEIVE_getInstance().size) > serializedBlock.n1()) {
954
+ return null;
955
+ }
956
+ var blockType = readAttoBlockType(serializedBlock);
957
+ if (!blockType.equals(AttoBlockType_RECEIVE_getInstance())) {
958
+ throw IllegalArgumentException().i1('Invalid block type: ' + blockType.toString());
959
+ }
960
+ return new (AttoReceiveBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoHeight(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoHash(serializedBlock));
961
+ }
962
+ p3q() {
963
+ return $serializer_getInstance_0();
964
+ }
965
+ }
966
+ initMetadataForCompanion($);
967
+ CompanionClass_2 = $;
968
+ }
969
+ return CompanionClass_2;
970
+ }
971
+ var Companion_instance_3;
972
+ function Companion_getInstance_6() {
973
+ if (Companion_instance_3 === VOID)
974
+ new (Companion_2())();
975
+ return Companion_instance_3;
976
+ }
977
+ var $serializerClass_0;
978
+ function $serializer_0() {
979
+ if ($serializerClass_0 === VOID) {
980
+ class $ {
981
+ constructor() {
982
+ $serializer_instance_0 = this;
983
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('RECEIVE', this, 11);
984
+ tmp0_serialDesc.a25('network', false);
985
+ tmp0_serialDesc.a25('version', false);
986
+ tmp0_serialDesc.a25('algorithm', false);
987
+ tmp0_serialDesc.a25('publicKey', false);
988
+ tmp0_serialDesc.a25('height', false);
989
+ tmp0_serialDesc.a25('balance', false);
990
+ tmp0_serialDesc.a25('timestamp', false);
991
+ tmp0_serialDesc.a25('previous', false);
992
+ tmp0_serialDesc.a25('sendHashAlgorithm', false);
993
+ tmp0_serialDesc.a25('sendHash', false);
994
+ tmp0_serialDesc.a25('address', true);
995
+ this.z4n_1 = tmp0_serialDesc;
996
+ }
997
+ a4o(encoder, value) {
998
+ var tmp0_desc = this.z4n_1;
999
+ var tmp1_output = encoder.m1x(tmp0_desc);
1000
+ var tmp2_cached = Companion_getInstance_6().v4m_1;
1001
+ tmp1_output.d1z(tmp0_desc, 0, tmp2_cached[0].z1(), value.b4o_1);
1002
+ tmp1_output.d1z(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.c4o_1);
1003
+ tmp1_output.d1z(tmp0_desc, 2, tmp2_cached[2].z1(), value.d4o_1);
1004
+ tmp1_output.d1z(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), value.e4o_1);
1005
+ tmp1_output.d1z(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.f4o_1);
1006
+ tmp1_output.d1z(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), value.g4o_1);
1007
+ tmp1_output.d1z(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), value.h4o_1);
1008
+ tmp1_output.d1z(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), value.i4o_1);
1009
+ tmp1_output.d1z(tmp0_desc, 8, tmp2_cached[8].z1(), value.j4o_1);
1010
+ tmp1_output.d1z(tmp0_desc, 9, AttoHashAsStringSerializer_getInstance(), value.k4o_1);
1011
+ tmp1_output.d1z(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), value.n4o_1);
1012
+ tmp1_output.n1x(tmp0_desc);
1013
+ }
1014
+ a1t(encoder, value) {
1015
+ return this.a4o(encoder, value instanceof AttoReceiveBlock() ? value : THROW_CCE());
1016
+ }
1017
+ b1t(decoder) {
1018
+ var tmp0_desc = this.z4n_1;
1019
+ var tmp1_flag = true;
1020
+ var tmp2_index = 0;
1021
+ var tmp3_bitMask0 = 0;
1022
+ var tmp4_local0 = null;
1023
+ var tmp5_local1 = null;
1024
+ var tmp6_local2 = null;
1025
+ var tmp7_local3 = null;
1026
+ var tmp8_local4 = null;
1027
+ var tmp9_local5 = null;
1028
+ var tmp10_local6 = null;
1029
+ var tmp11_local7 = null;
1030
+ var tmp12_local8 = null;
1031
+ var tmp13_local9 = null;
1032
+ var tmp14_local10 = null;
1033
+ var tmp17_input = decoder.m1x(tmp0_desc);
1034
+ var tmp18_cached = Companion_getInstance_6().v4m_1;
1035
+ if (tmp17_input.b1y()) {
1036
+ tmp4_local0 = tmp17_input.y1x(tmp0_desc, 0, tmp18_cached[0].z1(), tmp4_local0);
1037
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1038
+ tmp5_local1 = tmp17_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1039
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1040
+ tmp6_local2 = tmp17_input.y1x(tmp0_desc, 2, tmp18_cached[2].z1(), tmp6_local2);
1041
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1042
+ tmp7_local3 = tmp17_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
1043
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1044
+ tmp8_local4 = tmp17_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
1045
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1046
+ tmp9_local5 = tmp17_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
1047
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1048
+ tmp10_local6 = tmp17_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
1049
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1050
+ tmp11_local7 = tmp17_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
1051
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1052
+ tmp12_local8 = tmp17_input.y1x(tmp0_desc, 8, tmp18_cached[8].z1(), tmp12_local8);
1053
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1054
+ tmp13_local9 = tmp17_input.y1x(tmp0_desc, 9, AttoHashAsStringSerializer_getInstance(), tmp13_local9);
1055
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1056
+ tmp14_local10 = tmp17_input.y1x(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), tmp14_local10);
1057
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1058
+ } else
1059
+ while (tmp1_flag) {
1060
+ tmp2_index = tmp17_input.c1y(tmp0_desc);
1061
+ switch (tmp2_index) {
1062
+ case -1:
1063
+ tmp1_flag = false;
1064
+ break;
1065
+ case 0:
1066
+ tmp4_local0 = tmp17_input.y1x(tmp0_desc, 0, tmp18_cached[0].z1(), tmp4_local0);
1067
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1068
+ break;
1069
+ case 1:
1070
+ tmp5_local1 = tmp17_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1071
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1072
+ break;
1073
+ case 2:
1074
+ tmp6_local2 = tmp17_input.y1x(tmp0_desc, 2, tmp18_cached[2].z1(), tmp6_local2);
1075
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1076
+ break;
1077
+ case 3:
1078
+ tmp7_local3 = tmp17_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
1079
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1080
+ break;
1081
+ case 4:
1082
+ tmp8_local4 = tmp17_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
1083
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1084
+ break;
1085
+ case 5:
1086
+ tmp9_local5 = tmp17_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
1087
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1088
+ break;
1089
+ case 6:
1090
+ tmp10_local6 = tmp17_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
1091
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1092
+ break;
1093
+ case 7:
1094
+ tmp11_local7 = tmp17_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
1095
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1096
+ break;
1097
+ case 8:
1098
+ tmp12_local8 = tmp17_input.y1x(tmp0_desc, 8, tmp18_cached[8].z1(), tmp12_local8);
1099
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1100
+ break;
1101
+ case 9:
1102
+ tmp13_local9 = tmp17_input.y1x(tmp0_desc, 9, AttoHashAsStringSerializer_getInstance(), tmp13_local9);
1103
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1104
+ break;
1105
+ case 10:
1106
+ tmp14_local10 = tmp17_input.y1x(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), tmp14_local10);
1107
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1108
+ break;
1109
+ default:
1110
+ throw UnknownFieldException().v1u(tmp2_index);
1111
+ }
1112
+ }
1113
+ tmp17_input.n1x(tmp0_desc);
1114
+ return AttoReceiveBlock().o4o(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);
1115
+ }
1116
+ z1s() {
1117
+ return this.z4n_1;
1118
+ }
1119
+ p25() {
1120
+ var tmp0_cached = Companion_getInstance_6().v4m_1;
1121
+ // Inline function 'kotlin.arrayOf' call
1122
+ // Inline function 'kotlin.js.unsafeCast' call
1123
+ // Inline function 'kotlin.js.asDynamic' call
1124
+ return [tmp0_cached[0].z1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountAsULongSerializer_getInstance(), AttoInstantAsLongSerializer_getInstance(), AttoHashAsStringSerializer_getInstance(), tmp0_cached[8].z1(), AttoHashAsStringSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance()];
1125
+ }
1126
+ }
1127
+ protoOf($).q25 = typeParametersSerializers;
1128
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
1129
+ $serializerClass_0 = $;
1130
+ }
1131
+ return $serializerClass_0;
1132
+ }
1133
+ var $serializer_instance_0;
1134
+ function $serializer_getInstance_0() {
1135
+ if ($serializer_instance_0 === VOID)
1136
+ new ($serializer_0())();
1137
+ return $serializer_instance_0;
1138
+ }
1139
+ function AttoReceiveBlock$hash$delegate$lambda(this$0) {
1140
+ return () => hash(this$0.o4l());
1141
+ }
1142
+ function AttoReceiveBlock$_get_hash_$ref_1uzri0() {
1143
+ return (p0) => p0.hash;
1144
+ }
1145
+ function AttoReceiveBlock$_init_$lambda_4ot8lv(this$0) {
1146
+ return () => hash(this$0.o4l());
1147
+ }
1148
+ var AttoReceiveBlockClass;
1149
+ function AttoReceiveBlock() {
1150
+ if (AttoReceiveBlockClass === VOID) {
1151
+ class $ {
1152
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) {
1153
+ Companion_getInstance_6();
1154
+ this.b4o_1 = network;
1155
+ this.c4o_1 = version;
1156
+ this.d4o_1 = algorithm;
1157
+ this.e4o_1 = publicKey;
1158
+ this.f4o_1 = height;
1159
+ this.g4o_1 = balance;
1160
+ this.h4o_1 = timestamp;
1161
+ this.i4o_1 = previous;
1162
+ this.j4o_1 = sendHashAlgorithm;
1163
+ this.k4o_1 = sendHash;
1164
+ this.l4o_1 = AttoBlockType_RECEIVE_getInstance();
1165
+ var tmp = this;
1166
+ tmp.m4o_1 = lazy_0(AttoReceiveBlock$hash$delegate$lambda(this));
1167
+ this.n4o_1 = new (AttoAddress())(this.d4o_1, this.e4o_1);
1168
+ }
1169
+ v4j() {
1170
+ return this.b4o_1;
1171
+ }
1172
+ l37() {
1173
+ return this.c4o_1;
1174
+ }
1175
+ w4j() {
1176
+ return this.d4o_1;
1177
+ }
1178
+ u4j() {
1179
+ return this.e4o_1;
1180
+ }
1181
+ x4j() {
1182
+ return this.f4o_1;
1183
+ }
1184
+ y4j() {
1185
+ return this.g4o_1;
1186
+ }
1187
+ d4l() {
1188
+ return this.h4o_1;
1189
+ }
1190
+ c4n() {
1191
+ return this.i4o_1;
1192
+ }
1193
+ d4n() {
1194
+ return this.j4o_1;
1195
+ }
1196
+ e4n() {
1197
+ return this.k4o_1;
1198
+ }
1199
+ y4m() {
1200
+ return this.l4o_1;
1201
+ }
1202
+ y4k() {
1203
+ var tmp0 = this.m4o_1;
1204
+ var tmp = KProperty1();
1205
+ // Inline function 'kotlin.getValue' call
1206
+ getPropertyCallableRef('hash', 1, tmp, AttoReceiveBlock$_get_hash_$ref_1uzri0(), null);
1207
+ return tmp0.z1();
1208
+ }
1209
+ d4k() {
1210
+ return this.n4o_1;
1211
+ }
1212
+ o4l() {
1213
+ // Inline function 'kotlin.apply' call
1214
+ var this_0 = new (Buffer())();
1215
+ writeAttoBlockType(this_0, this.l4o_1);
1216
+ writeAttoNetwork(this_0, this.b4o_1);
1217
+ writeAttoVersion(this_0, this.c4o_1);
1218
+ writeAttoAlgorithm(this_0, this.d4o_1);
1219
+ writeAttoPublicKey(this_0, this.e4o_1);
1220
+ writeAttoHeight(this_0, this.f4o_1);
1221
+ writeAttoAmount(this_0, this.g4o_1);
1222
+ writeInstant(this_0, this.h4o_1);
1223
+ writeAttoHash(this_0, this.i4o_1);
1224
+ writeAttoAlgorithm(this_0, this.j4o_1);
1225
+ writeAttoHash(this_0, this.k4o_1);
1226
+ return this_0;
1227
+ }
1228
+ ne() {
1229
+ return this.b4o_1;
1230
+ }
1231
+ oe() {
1232
+ return this.c4o_1;
1233
+ }
1234
+ j4k() {
1235
+ return this.d4o_1;
1236
+ }
1237
+ k4k() {
1238
+ return this.e4o_1;
1239
+ }
1240
+ l4k() {
1241
+ return this.f4o_1;
1242
+ }
1243
+ m4k() {
1244
+ return this.g4o_1;
1245
+ }
1246
+ n4k() {
1247
+ return this.h4o_1;
1248
+ }
1249
+ o4k() {
1250
+ return this.i4o_1;
1251
+ }
1252
+ p4k() {
1253
+ return this.j4o_1;
1254
+ }
1255
+ q4k() {
1256
+ return this.k4o_1;
1257
+ }
1258
+ p4o(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) {
1259
+ return new (AttoReceiveBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash);
1260
+ }
1261
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash, $super) {
1262
+ network = network === VOID ? this.b4o_1 : network;
1263
+ version = version === VOID ? this.c4o_1 : version;
1264
+ algorithm = algorithm === VOID ? this.d4o_1 : algorithm;
1265
+ publicKey = publicKey === VOID ? this.e4o_1 : publicKey;
1266
+ height = height === VOID ? this.f4o_1 : height;
1267
+ balance = balance === VOID ? this.g4o_1 : balance;
1268
+ timestamp = timestamp === VOID ? this.h4o_1 : timestamp;
1269
+ previous = previous === VOID ? this.i4o_1 : previous;
1270
+ sendHashAlgorithm = sendHashAlgorithm === VOID ? this.j4o_1 : sendHashAlgorithm;
1271
+ sendHash = sendHash === VOID ? this.k4o_1 : sendHash;
1272
+ return $super === VOID ? this.p4o(network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash) : $super.p4o.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash);
1273
+ }
1274
+ toString() {
1275
+ return 'AttoReceiveBlock(network=' + this.b4o_1.toString() + ', version=' + this.c4o_1.toString() + ', algorithm=' + this.d4o_1.toString() + ', publicKey=' + this.e4o_1.toString() + ', height=' + this.f4o_1.toString() + ', balance=' + this.g4o_1.toString() + ', timestamp=' + this.h4o_1.toString() + ', previous=' + this.i4o_1.toString() + ', sendHashAlgorithm=' + this.j4o_1.toString() + ', sendHash=' + this.k4o_1.toString() + ')';
1276
+ }
1277
+ hashCode() {
1278
+ var result = this.b4o_1.hashCode();
1279
+ result = imul(result, 31) + this.c4o_1.hashCode() | 0;
1280
+ result = imul(result, 31) + this.d4o_1.hashCode() | 0;
1281
+ result = imul(result, 31) + this.e4o_1.hashCode() | 0;
1282
+ result = imul(result, 31) + this.f4o_1.hashCode() | 0;
1283
+ result = imul(result, 31) + this.g4o_1.hashCode() | 0;
1284
+ result = imul(result, 31) + this.h4o_1.hashCode() | 0;
1285
+ result = imul(result, 31) + this.i4o_1.hashCode() | 0;
1286
+ result = imul(result, 31) + this.j4o_1.hashCode() | 0;
1287
+ result = imul(result, 31) + this.k4o_1.hashCode() | 0;
1288
+ return result;
1289
+ }
1290
+ equals(other) {
1291
+ if (this === other)
1292
+ return true;
1293
+ if (!(other instanceof AttoReceiveBlock()))
1294
+ return false;
1295
+ if (!this.b4o_1.equals(other.b4o_1))
1296
+ return false;
1297
+ if (!this.c4o_1.equals(other.c4o_1))
1298
+ return false;
1299
+ if (!this.d4o_1.equals(other.d4o_1))
1300
+ return false;
1301
+ if (!this.e4o_1.equals(other.e4o_1))
1302
+ return false;
1303
+ if (!this.f4o_1.equals(other.f4o_1))
1304
+ return false;
1305
+ if (!this.g4o_1.equals(other.g4o_1))
1306
+ return false;
1307
+ if (!this.h4o_1.equals(other.h4o_1))
1308
+ return false;
1309
+ if (!this.i4o_1.equals(other.i4o_1))
1310
+ return false;
1311
+ if (!this.j4o_1.equals(other.j4o_1))
1312
+ return false;
1313
+ if (!this.k4o_1.equals(other.k4o_1))
1314
+ return false;
1315
+ return true;
1316
+ }
1317
+ static o4o(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, sendHashAlgorithm, sendHash, address, serializationConstructorMarker) {
1318
+ Companion_getInstance_6();
1319
+ if (!(1023 === (1023 & seen0))) {
1320
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_0().z4n_1);
1321
+ }
1322
+ var $this = createThis(this);
1323
+ $this.b4o_1 = network;
1324
+ $this.c4o_1 = version;
1325
+ $this.d4o_1 = algorithm;
1326
+ $this.e4o_1 = publicKey;
1327
+ $this.f4o_1 = height;
1328
+ $this.g4o_1 = balance;
1329
+ $this.h4o_1 = timestamp;
1330
+ $this.i4o_1 = previous;
1331
+ $this.j4o_1 = sendHashAlgorithm;
1332
+ $this.k4o_1 = sendHash;
1333
+ $this.l4o_1 = AttoBlockType_RECEIVE_getInstance();
1334
+ var tmp = $this;
1335
+ tmp.m4o_1 = lazy_0(AttoReceiveBlock$_init_$lambda_4ot8lv($this));
1336
+ if (0 === (seen0 & 1024))
1337
+ $this.n4o_1 = new (AttoAddress())($this.d4o_1, $this.e4o_1);
1338
+ else
1339
+ $this.n4o_1 = address;
1340
+ return $this;
1341
+ }
1342
+ get network() {
1343
+ return this.v4j();
1344
+ }
1345
+ get version() {
1346
+ return this.l37();
1347
+ }
1348
+ get algorithm() {
1349
+ return this.w4j();
1350
+ }
1351
+ get publicKey() {
1352
+ return this.u4j();
1353
+ }
1354
+ get height() {
1355
+ return this.x4j();
1356
+ }
1357
+ get balance() {
1358
+ return this.y4j();
1359
+ }
1360
+ get timestamp() {
1361
+ return this.d4l();
1362
+ }
1363
+ get previous() {
1364
+ return this.c4n();
1365
+ }
1366
+ get sendHashAlgorithm() {
1367
+ return this.d4n();
1368
+ }
1369
+ get sendHash() {
1370
+ return this.e4n();
1371
+ }
1372
+ get type() {
1373
+ return this.y4m();
1374
+ }
1375
+ get hash() {
1376
+ return this.y4k();
1377
+ }
1378
+ get address() {
1379
+ return this.d4k();
1380
+ }
1381
+ }
1382
+ protoOf($).validate = validate;
1383
+ protoOf($).isValid = isValid;
1384
+ initMetadataForClass($, 'AttoReceiveBlock', VOID, VOID, [AttoBlock(), PreviousSupport(), ReceiveSupport()], VOID, VOID, {0: $serializer_getInstance_0});
1385
+ AttoReceiveBlockClass = $;
1386
+ }
1387
+ return AttoReceiveBlockClass;
1388
+ }
1389
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3() {
1390
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
1391
+ }
1392
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_0() {
1393
+ return Companion_getInstance_2().p3q();
1394
+ }
1395
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_1() {
1396
+ return Companion_getInstance_2().p3q();
1397
+ }
1398
+ function AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_2() {
1399
+ return Companion_getInstance_2().p3q();
1400
+ }
1401
+ var CompanionClass_3;
1402
+ function Companion_3() {
1403
+ if (CompanionClass_3 === VOID) {
1404
+ class $ {
1405
+ constructor() {
1406
+ Companion_instance_4 = this;
1407
+ var tmp = this;
1408
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1409
+ var tmp_1 = lazy(tmp_0, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3);
1410
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1411
+ var tmp_3 = lazy(tmp_2, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_0);
1412
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1413
+ var tmp_5 = lazy(tmp_4, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_1);
1414
+ var tmp_6 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1415
+ // Inline function 'kotlin.arrayOf' call
1416
+ // Inline function 'kotlin.js.unsafeCast' call
1417
+ // Inline function 'kotlin.js.asDynamic' call
1418
+ tmp.w4m_1 = [tmp_1, null, tmp_3, null, null, null, tmp_5, null, lazy(tmp_6, AttoOpenBlock$Companion$$childSerializers$_anonymous__8gpm3_2), null, null, null, null];
1419
+ }
1420
+ u4m(serializedBlock) {
1421
+ if (fromInt(AttoBlockType_OPEN_getInstance().size) > serializedBlock.n1()) {
1422
+ return null;
1423
+ }
1424
+ var blockType = readAttoBlockType(serializedBlock);
1425
+ if (!blockType.equals(AttoBlockType_OPEN_getInstance())) {
1426
+ throw IllegalArgumentException().i1('Invalid block type: ' + blockType.toString());
1427
+ }
1428
+ return new (AttoOpenBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock));
1429
+ }
1430
+ p3q() {
1431
+ return $serializer_getInstance_1();
1432
+ }
1433
+ }
1434
+ initMetadataForCompanion($);
1435
+ CompanionClass_3 = $;
1436
+ }
1437
+ return CompanionClass_3;
1438
+ }
1439
+ var Companion_instance_4;
1440
+ function Companion_getInstance_7() {
1441
+ if (Companion_instance_4 === VOID)
1442
+ new (Companion_3())();
1443
+ return Companion_instance_4;
1444
+ }
1445
+ var $serializerClass_1;
1446
+ function $serializer_1() {
1447
+ if ($serializerClass_1 === VOID) {
1448
+ class $ {
1449
+ constructor() {
1450
+ $serializer_instance_1 = this;
1451
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('OPEN', this, 13);
1452
+ tmp0_serialDesc.a25('network', false);
1453
+ tmp0_serialDesc.a25('version', false);
1454
+ tmp0_serialDesc.a25('algorithm', false);
1455
+ tmp0_serialDesc.a25('publicKey', false);
1456
+ tmp0_serialDesc.a25('balance', false);
1457
+ tmp0_serialDesc.a25('timestamp', false);
1458
+ tmp0_serialDesc.a25('sendHashAlgorithm', false);
1459
+ tmp0_serialDesc.a25('sendHash', false);
1460
+ tmp0_serialDesc.a25('representativeAlgorithm', false);
1461
+ tmp0_serialDesc.a25('representativePublicKey', false);
1462
+ tmp0_serialDesc.a25('height', true);
1463
+ tmp0_serialDesc.a25('address', true);
1464
+ tmp0_serialDesc.a25('representativeAddress', true);
1465
+ this.q4o_1 = tmp0_serialDesc;
1466
+ }
1467
+ r4o(encoder, value) {
1468
+ var tmp0_desc = this.q4o_1;
1469
+ var tmp1_output = encoder.m1x(tmp0_desc);
1470
+ var tmp2_cached = Companion_getInstance_7().w4m_1;
1471
+ tmp1_output.d1z(tmp0_desc, 0, tmp2_cached[0].z1(), value.a4j_1);
1472
+ tmp1_output.d1z(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.b4j_1);
1473
+ tmp1_output.d1z(tmp0_desc, 2, tmp2_cached[2].z1(), value.c4j_1);
1474
+ tmp1_output.d1z(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), value.d4j_1);
1475
+ tmp1_output.d1z(tmp0_desc, 4, AttoAmountAsULongSerializer_getInstance(), value.e4j_1);
1476
+ tmp1_output.d1z(tmp0_desc, 5, AttoInstantAsLongSerializer_getInstance(), value.f4j_1);
1477
+ tmp1_output.d1z(tmp0_desc, 6, tmp2_cached[6].z1(), value.g4j_1);
1478
+ tmp1_output.d1z(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), value.h4j_1);
1479
+ tmp1_output.d1z(tmp0_desc, 8, tmp2_cached[8].z1(), value.i4j_1);
1480
+ tmp1_output.d1z(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), value.j4j_1);
1481
+ tmp1_output.d1z(tmp0_desc, 10, AttoHeightSerializer_getInstance(), value.m4j_1);
1482
+ tmp1_output.d1z(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), value.n4j_1);
1483
+ tmp1_output.d1z(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), value.representativeAddress);
1484
+ tmp1_output.n1x(tmp0_desc);
1485
+ }
1486
+ a1t(encoder, value) {
1487
+ return this.r4o(encoder, value instanceof AttoOpenBlock() ? value : THROW_CCE());
1488
+ }
1489
+ b1t(decoder) {
1490
+ var tmp0_desc = this.q4o_1;
1491
+ var tmp1_flag = true;
1492
+ var tmp2_index = 0;
1493
+ var tmp3_bitMask0 = 0;
1494
+ var tmp4_local0 = null;
1495
+ var tmp5_local1 = null;
1496
+ var tmp6_local2 = null;
1497
+ var tmp7_local3 = null;
1498
+ var tmp8_local4 = null;
1499
+ var tmp9_local5 = null;
1500
+ var tmp10_local6 = null;
1501
+ var tmp11_local7 = null;
1502
+ var tmp12_local8 = null;
1503
+ var tmp13_local9 = null;
1504
+ var tmp14_local10 = null;
1505
+ var tmp15_local11 = null;
1506
+ var tmp16_local12 = null;
1507
+ var tmp19_input = decoder.m1x(tmp0_desc);
1508
+ var tmp20_cached = Companion_getInstance_7().w4m_1;
1509
+ if (tmp19_input.b1y()) {
1510
+ tmp4_local0 = tmp19_input.y1x(tmp0_desc, 0, tmp20_cached[0].z1(), tmp4_local0);
1511
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1512
+ tmp5_local1 = tmp19_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1513
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1514
+ tmp6_local2 = tmp19_input.y1x(tmp0_desc, 2, tmp20_cached[2].z1(), tmp6_local2);
1515
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1516
+ tmp7_local3 = tmp19_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
1517
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1518
+ tmp8_local4 = tmp19_input.y1x(tmp0_desc, 4, AttoAmountAsULongSerializer_getInstance(), tmp8_local4);
1519
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1520
+ tmp9_local5 = tmp19_input.y1x(tmp0_desc, 5, AttoInstantAsLongSerializer_getInstance(), tmp9_local5);
1521
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1522
+ tmp10_local6 = tmp19_input.y1x(tmp0_desc, 6, tmp20_cached[6].z1(), tmp10_local6);
1523
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1524
+ tmp11_local7 = tmp19_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
1525
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1526
+ tmp12_local8 = tmp19_input.y1x(tmp0_desc, 8, tmp20_cached[8].z1(), tmp12_local8);
1527
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1528
+ tmp13_local9 = tmp19_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
1529
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1530
+ tmp14_local10 = tmp19_input.y1x(tmp0_desc, 10, AttoHeightSerializer_getInstance(), tmp14_local10);
1531
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1532
+ tmp15_local11 = tmp19_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
1533
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
1534
+ tmp16_local12 = tmp19_input.y1x(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), tmp16_local12);
1535
+ tmp3_bitMask0 = tmp3_bitMask0 | 4096;
1536
+ } else
1537
+ while (tmp1_flag) {
1538
+ tmp2_index = tmp19_input.c1y(tmp0_desc);
1539
+ switch (tmp2_index) {
1540
+ case -1:
1541
+ tmp1_flag = false;
1542
+ break;
1543
+ case 0:
1544
+ tmp4_local0 = tmp19_input.y1x(tmp0_desc, 0, tmp20_cached[0].z1(), tmp4_local0);
1545
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
1546
+ break;
1547
+ case 1:
1548
+ tmp5_local1 = tmp19_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
1549
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
1550
+ break;
1551
+ case 2:
1552
+ tmp6_local2 = tmp19_input.y1x(tmp0_desc, 2, tmp20_cached[2].z1(), tmp6_local2);
1553
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
1554
+ break;
1555
+ case 3:
1556
+ tmp7_local3 = tmp19_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
1557
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
1558
+ break;
1559
+ case 4:
1560
+ tmp8_local4 = tmp19_input.y1x(tmp0_desc, 4, AttoAmountAsULongSerializer_getInstance(), tmp8_local4);
1561
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
1562
+ break;
1563
+ case 5:
1564
+ tmp9_local5 = tmp19_input.y1x(tmp0_desc, 5, AttoInstantAsLongSerializer_getInstance(), tmp9_local5);
1565
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
1566
+ break;
1567
+ case 6:
1568
+ tmp10_local6 = tmp19_input.y1x(tmp0_desc, 6, tmp20_cached[6].z1(), tmp10_local6);
1569
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
1570
+ break;
1571
+ case 7:
1572
+ tmp11_local7 = tmp19_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
1573
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
1574
+ break;
1575
+ case 8:
1576
+ tmp12_local8 = tmp19_input.y1x(tmp0_desc, 8, tmp20_cached[8].z1(), tmp12_local8);
1577
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
1578
+ break;
1579
+ case 9:
1580
+ tmp13_local9 = tmp19_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
1581
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
1582
+ break;
1583
+ case 10:
1584
+ tmp14_local10 = tmp19_input.y1x(tmp0_desc, 10, AttoHeightSerializer_getInstance(), tmp14_local10);
1585
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
1586
+ break;
1587
+ case 11:
1588
+ tmp15_local11 = tmp19_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
1589
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
1590
+ break;
1591
+ case 12:
1592
+ tmp16_local12 = tmp19_input.y1x(tmp0_desc, 12, AttoAddressAsStringSerializer_getInstance(), tmp16_local12);
1593
+ tmp3_bitMask0 = tmp3_bitMask0 | 4096;
1594
+ break;
1595
+ default:
1596
+ throw UnknownFieldException().v1u(tmp2_index);
1597
+ }
1598
+ }
1599
+ tmp19_input.n1x(tmp0_desc);
1600
+ return AttoOpenBlock().s4o(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, tmp16_local12, null);
1601
+ }
1602
+ z1s() {
1603
+ return this.q4o_1;
1604
+ }
1605
+ p25() {
1606
+ var tmp0_cached = Companion_getInstance_7().w4m_1;
1607
+ // Inline function 'kotlin.arrayOf' call
1608
+ // Inline function 'kotlin.js.unsafeCast' call
1609
+ // Inline function 'kotlin.js.asDynamic' call
1610
+ return [tmp0_cached[0].z1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoAmountAsULongSerializer_getInstance(), AttoInstantAsLongSerializer_getInstance(), tmp0_cached[6].z1(), AttoHashAsStringSerializer_getInstance(), tmp0_cached[8].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance()];
1611
+ }
1612
+ }
1613
+ protoOf($).q25 = typeParametersSerializers;
1614
+ initMetadataForObject($, '$serializer', VOID, VOID, [GeneratedSerializer()]);
1615
+ $serializerClass_1 = $;
1616
+ }
1617
+ return $serializerClass_1;
1618
+ }
1619
+ var $serializer_instance_1;
1620
+ function $serializer_getInstance_1() {
1621
+ if ($serializer_instance_1 === VOID)
1622
+ new ($serializer_1())();
1623
+ return $serializer_instance_1;
1624
+ }
1625
+ function AttoOpenBlock$hash$delegate$lambda(this$0) {
1626
+ return () => hash(this$0.o4l());
1627
+ }
1628
+ function AttoOpenBlock$_get_hash_$ref_fk78xn() {
1629
+ return (p0) => p0.hash;
1630
+ }
1631
+ function AttoOpenBlock$_init_$lambda_2mk62y(this$0) {
1632
+ return () => hash(this$0.o4l());
1633
+ }
1634
+ var AttoOpenBlockClass;
1635
+ function AttoOpenBlock() {
1636
+ if (AttoOpenBlockClass === VOID) {
1637
+ class $ {
1638
+ constructor(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) {
1639
+ Companion_getInstance_7();
1640
+ this.a4j_1 = network;
1641
+ this.b4j_1 = version;
1642
+ this.c4j_1 = algorithm;
1643
+ this.d4j_1 = publicKey;
1644
+ this.e4j_1 = balance;
1645
+ this.f4j_1 = timestamp;
1646
+ this.g4j_1 = sendHashAlgorithm;
1647
+ this.h4j_1 = sendHash;
1648
+ this.i4j_1 = representativeAlgorithm;
1649
+ this.j4j_1 = representativePublicKey;
1650
+ this.k4j_1 = AttoBlockType_OPEN_getInstance();
1651
+ var tmp = this;
1652
+ tmp.l4j_1 = lazy_0(AttoOpenBlock$hash$delegate$lambda(this));
1653
+ this.m4j_1 = new (AttoHeight())(_ULong___init__impl__c78o9k(1n));
1654
+ this.n4j_1 = new (AttoAddress())(this.c4j_1, this.d4j_1);
1655
+ this.representativeAddress = new (AttoAddress())(this.i4j_1, this.j4j_1);
1656
+ }
1657
+ v4j() {
1658
+ return this.a4j_1;
1659
+ }
1660
+ l37() {
1661
+ return this.b4j_1;
1662
+ }
1663
+ w4j() {
1664
+ return this.c4j_1;
1665
+ }
1666
+ u4j() {
1667
+ return this.d4j_1;
1668
+ }
1669
+ y4j() {
1670
+ return this.e4j_1;
1671
+ }
1672
+ d4l() {
1673
+ return this.f4j_1;
1674
+ }
1675
+ d4n() {
1676
+ return this.g4j_1;
1677
+ }
1678
+ e4n() {
1679
+ return this.h4j_1;
1680
+ }
1681
+ b4k() {
1682
+ return this.i4j_1;
1683
+ }
1684
+ c4k() {
1685
+ return this.j4j_1;
1686
+ }
1687
+ y4m() {
1688
+ return this.k4j_1;
1689
+ }
1690
+ y4k() {
1691
+ var tmp0 = this.l4j_1;
1692
+ var tmp = KProperty1();
1693
+ // Inline function 'kotlin.getValue' call
1694
+ getPropertyCallableRef('hash', 1, tmp, AttoOpenBlock$_get_hash_$ref_fk78xn(), null);
1695
+ return tmp0.z1();
1696
+ }
1697
+ x4j() {
1698
+ return this.m4j_1;
1699
+ }
1700
+ d4k() {
1701
+ return this.n4j_1;
1702
+ }
1703
+ e4k() {
1704
+ return this.representativeAddress;
1705
+ }
1706
+ o4l() {
1707
+ // Inline function 'kotlin.apply' call
1708
+ var this_0 = new (Buffer())();
1709
+ writeAttoBlockType(this_0, this.k4j_1);
1710
+ writeAttoNetwork(this_0, this.a4j_1);
1711
+ writeAttoVersion(this_0, this.b4j_1);
1712
+ writeAttoAlgorithm(this_0, this.c4j_1);
1713
+ writeAttoPublicKey(this_0, this.d4j_1);
1714
+ writeAttoAmount(this_0, this.e4j_1);
1715
+ writeInstant(this_0, this.f4j_1);
1716
+ writeAttoAlgorithm(this_0, this.g4j_1);
1717
+ writeAttoHash(this_0, this.h4j_1);
1718
+ writeAttoAlgorithm(this_0, this.i4j_1);
1719
+ writeAttoPublicKey(this_0, this.j4j_1);
1720
+ return this_0;
1721
+ }
1722
+ ne() {
1723
+ return this.a4j_1;
1724
+ }
1725
+ oe() {
1726
+ return this.b4j_1;
1727
+ }
1728
+ j4k() {
1729
+ return this.c4j_1;
1730
+ }
1731
+ k4k() {
1732
+ return this.d4j_1;
1733
+ }
1734
+ l4k() {
1735
+ return this.e4j_1;
1736
+ }
1737
+ m4k() {
1738
+ return this.f4j_1;
1739
+ }
1740
+ n4k() {
1741
+ return this.g4j_1;
1742
+ }
1743
+ o4k() {
1744
+ return this.h4j_1;
1745
+ }
1746
+ p4k() {
1747
+ return this.i4j_1;
1748
+ }
1749
+ q4k() {
1750
+ return this.j4j_1;
1751
+ }
1752
+ t4o(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) {
1753
+ return new (AttoOpenBlock())(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey);
1754
+ }
1755
+ copy(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey, $super) {
1756
+ network = network === VOID ? this.a4j_1 : network;
1757
+ version = version === VOID ? this.b4j_1 : version;
1758
+ algorithm = algorithm === VOID ? this.c4j_1 : algorithm;
1759
+ publicKey = publicKey === VOID ? this.d4j_1 : publicKey;
1760
+ balance = balance === VOID ? this.e4j_1 : balance;
1761
+ timestamp = timestamp === VOID ? this.f4j_1 : timestamp;
1762
+ sendHashAlgorithm = sendHashAlgorithm === VOID ? this.g4j_1 : sendHashAlgorithm;
1763
+ sendHash = sendHash === VOID ? this.h4j_1 : sendHash;
1764
+ representativeAlgorithm = representativeAlgorithm === VOID ? this.i4j_1 : representativeAlgorithm;
1765
+ representativePublicKey = representativePublicKey === VOID ? this.j4j_1 : representativePublicKey;
1766
+ return $super === VOID ? this.t4o(network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey) : $super.t4o.call(this, network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey);
1767
+ }
1768
+ toString() {
1769
+ return 'AttoOpenBlock(network=' + this.a4j_1.toString() + ', version=' + this.b4j_1.toString() + ', algorithm=' + this.c4j_1.toString() + ', publicKey=' + this.d4j_1.toString() + ', balance=' + this.e4j_1.toString() + ', timestamp=' + this.f4j_1.toString() + ', sendHashAlgorithm=' + this.g4j_1.toString() + ', sendHash=' + this.h4j_1.toString() + ', representativeAlgorithm=' + this.i4j_1.toString() + ', representativePublicKey=' + this.j4j_1.toString() + ')';
1770
+ }
1771
+ hashCode() {
1772
+ var result = this.a4j_1.hashCode();
1773
+ result = imul(result, 31) + this.b4j_1.hashCode() | 0;
1774
+ result = imul(result, 31) + this.c4j_1.hashCode() | 0;
1775
+ result = imul(result, 31) + this.d4j_1.hashCode() | 0;
1776
+ result = imul(result, 31) + this.e4j_1.hashCode() | 0;
1777
+ result = imul(result, 31) + this.f4j_1.hashCode() | 0;
1778
+ result = imul(result, 31) + this.g4j_1.hashCode() | 0;
1779
+ result = imul(result, 31) + this.h4j_1.hashCode() | 0;
1780
+ result = imul(result, 31) + this.i4j_1.hashCode() | 0;
1781
+ result = imul(result, 31) + this.j4j_1.hashCode() | 0;
1782
+ return result;
1783
+ }
1784
+ equals(other) {
1785
+ if (this === other)
1786
+ return true;
1787
+ if (!(other instanceof AttoOpenBlock()))
1788
+ return false;
1789
+ if (!this.a4j_1.equals(other.a4j_1))
1790
+ return false;
1791
+ if (!this.b4j_1.equals(other.b4j_1))
1792
+ return false;
1793
+ if (!this.c4j_1.equals(other.c4j_1))
1794
+ return false;
1795
+ if (!this.d4j_1.equals(other.d4j_1))
1796
+ return false;
1797
+ if (!this.e4j_1.equals(other.e4j_1))
1798
+ return false;
1799
+ if (!this.f4j_1.equals(other.f4j_1))
1800
+ return false;
1801
+ if (!this.g4j_1.equals(other.g4j_1))
1802
+ return false;
1803
+ if (!this.h4j_1.equals(other.h4j_1))
1804
+ return false;
1805
+ if (!this.i4j_1.equals(other.i4j_1))
1806
+ return false;
1807
+ if (!this.j4j_1.equals(other.j4j_1))
1808
+ return false;
1809
+ return true;
1810
+ }
1811
+ static s4o(seen0, network, version, algorithm, publicKey, balance, timestamp, sendHashAlgorithm, sendHash, representativeAlgorithm, representativePublicKey, height, address, representativeAddress, serializationConstructorMarker) {
1812
+ Companion_getInstance_7();
1813
+ if (!(1023 === (1023 & seen0))) {
1814
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_1().q4o_1);
1815
+ }
1816
+ var $this = createThis(this);
1817
+ $this.a4j_1 = network;
1818
+ $this.b4j_1 = version;
1819
+ $this.c4j_1 = algorithm;
1820
+ $this.d4j_1 = publicKey;
1821
+ $this.e4j_1 = balance;
1822
+ $this.f4j_1 = timestamp;
1823
+ $this.g4j_1 = sendHashAlgorithm;
1824
+ $this.h4j_1 = sendHash;
1825
+ $this.i4j_1 = representativeAlgorithm;
1826
+ $this.j4j_1 = representativePublicKey;
1827
+ $this.k4j_1 = AttoBlockType_OPEN_getInstance();
1828
+ var tmp = $this;
1829
+ tmp.l4j_1 = lazy_0(AttoOpenBlock$_init_$lambda_2mk62y($this));
1830
+ if (0 === (seen0 & 1024))
1831
+ $this.m4j_1 = new (AttoHeight())(_ULong___init__impl__c78o9k(1n));
1832
+ else
1833
+ $this.m4j_1 = height;
1834
+ if (0 === (seen0 & 2048))
1835
+ $this.n4j_1 = new (AttoAddress())($this.c4j_1, $this.d4j_1);
1836
+ else
1837
+ $this.n4j_1 = address;
1838
+ if (0 === (seen0 & 4096))
1839
+ $this.representativeAddress = new (AttoAddress())($this.i4j_1, $this.j4j_1);
1840
+ else
1841
+ $this.representativeAddress = representativeAddress;
1842
+ return $this;
1843
+ }
1844
+ get network() {
1845
+ return this.v4j();
1846
+ }
1847
+ get version() {
1848
+ return this.l37();
1849
+ }
1850
+ get algorithm() {
1851
+ return this.w4j();
1852
+ }
1853
+ get publicKey() {
1854
+ return this.u4j();
1855
+ }
1856
+ get balance() {
1857
+ return this.y4j();
1858
+ }
1859
+ get timestamp() {
1860
+ return this.d4l();
1861
+ }
1862
+ get sendHashAlgorithm() {
1863
+ return this.d4n();
1864
+ }
1865
+ get sendHash() {
1866
+ return this.e4n();
1867
+ }
1868
+ get representativeAlgorithm() {
1869
+ return this.b4k();
1870
+ }
1871
+ get representativePublicKey() {
1872
+ return this.c4k();
1873
+ }
1874
+ get type() {
1875
+ return this.y4m();
1876
+ }
1877
+ get hash() {
1878
+ return this.y4k();
1879
+ }
1880
+ get height() {
1881
+ return this.x4j();
1882
+ }
1883
+ get address() {
1884
+ return this.d4k();
1885
+ }
1886
+ }
1887
+ protoOf($).validate = validate;
1888
+ protoOf($).isValid = isValid;
1889
+ initMetadataForClass($, 'AttoOpenBlock', VOID, VOID, [AttoBlock(), ReceiveSupport(), RepresentativeSupport()], VOID, VOID, {0: $serializer_getInstance_1});
1890
+ AttoOpenBlockClass = $;
1891
+ }
1892
+ return AttoOpenBlockClass;
1893
+ }
1894
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff() {
1895
+ return createSimpleEnumSerializer('cash.atto.commons.AttoNetwork', values());
1896
+ }
1897
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_0() {
1898
+ return Companion_getInstance_2().p3q();
1899
+ }
1900
+ function AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_1() {
1901
+ return Companion_getInstance_2().p3q();
1902
+ }
1903
+ var CompanionClass_4;
1904
+ function Companion_4() {
1905
+ if (CompanionClass_4 === VOID) {
1906
+ class $ {
1907
+ constructor() {
1908
+ Companion_instance_5 = this;
1909
+ var tmp = this;
1910
+ var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1911
+ var tmp_1 = lazy(tmp_0, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff);
1912
+ var tmp_2 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1913
+ var tmp_3 = lazy(tmp_2, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_0);
1914
+ var tmp_4 = LazyThreadSafetyMode_PUBLICATION_getInstance();
1915
+ // Inline function 'kotlin.arrayOf' call
1916
+ // Inline function 'kotlin.js.unsafeCast' call
1917
+ // Inline function 'kotlin.js.asDynamic' call
1918
+ tmp.x4m_1 = [tmp_1, null, tmp_3, null, null, null, null, null, lazy(tmp_4, AttoChangeBlock$Companion$$childSerializers$_anonymous__3y9hff_1), null, null, null];
1919
+ }
1920
+ u4m(serializedBlock) {
1921
+ if (fromInt(AttoBlockType_CHANGE_getInstance().size) > serializedBlock.n1()) {
1922
+ return null;
1923
+ }
1924
+ var blockType = readAttoBlockType(serializedBlock);
1925
+ if (!blockType.equals(AttoBlockType_CHANGE_getInstance())) {
1926
+ throw IllegalArgumentException().i1('Invalid block type: ' + blockType.toString());
1927
+ }
1928
+ return new (AttoChangeBlock())(readAttoNetwork(serializedBlock), readAttoVersion(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock), readAttoHeight(serializedBlock), readAttoAmount(serializedBlock), readInstant(serializedBlock), readAttoHash(serializedBlock), readAttoAlgorithm(serializedBlock), readAttoPublicKey(serializedBlock));
1929
+ }
1930
+ p3q() {
1931
+ return $serializer_getInstance_2();
1932
+ }
1933
+ }
1934
+ initMetadataForCompanion($);
1935
+ CompanionClass_4 = $;
1936
+ }
1937
+ return CompanionClass_4;
1938
+ }
1939
+ var Companion_instance_5;
1940
+ function Companion_getInstance_8() {
1941
+ if (Companion_instance_5 === VOID)
1942
+ new (Companion_4())();
1943
+ return Companion_instance_5;
1944
+ }
1945
+ var $serializerClass_2;
1946
+ function $serializer_2() {
1947
+ if ($serializerClass_2 === VOID) {
1948
+ class $ {
1949
+ constructor() {
1950
+ $serializer_instance_2 = this;
1951
+ var tmp0_serialDesc = new (PluginGeneratedSerialDescriptor())('CHANGE', this, 12);
1952
+ tmp0_serialDesc.a25('network', false);
1953
+ tmp0_serialDesc.a25('version', false);
1954
+ tmp0_serialDesc.a25('algorithm', false);
1955
+ tmp0_serialDesc.a25('publicKey', false);
1956
+ tmp0_serialDesc.a25('height', false);
1957
+ tmp0_serialDesc.a25('balance', false);
1958
+ tmp0_serialDesc.a25('timestamp', false);
1959
+ tmp0_serialDesc.a25('previous', false);
1960
+ tmp0_serialDesc.a25('representativeAlgorithm', false);
1961
+ tmp0_serialDesc.a25('representativePublicKey', false);
1962
+ tmp0_serialDesc.a25('address', true);
1963
+ tmp0_serialDesc.a25('representativeAddress', true);
1964
+ this.u4o_1 = tmp0_serialDesc;
1965
+ }
1966
+ v4o(encoder, value) {
1967
+ var tmp0_desc = this.u4o_1;
1968
+ var tmp1_output = encoder.m1x(tmp0_desc);
1969
+ var tmp2_cached = Companion_getInstance_8().x4m_1;
1970
+ tmp1_output.d1z(tmp0_desc, 0, tmp2_cached[0].z1(), value.w4o_1);
1971
+ tmp1_output.d1z(tmp0_desc, 1, AttoVersionSerializer_getInstance(), value.x4o_1);
1972
+ tmp1_output.d1z(tmp0_desc, 2, tmp2_cached[2].z1(), value.y4o_1);
1973
+ tmp1_output.d1z(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), value.z4o_1);
1974
+ tmp1_output.d1z(tmp0_desc, 4, AttoHeightSerializer_getInstance(), value.a4p_1);
1975
+ tmp1_output.d1z(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), value.b4p_1);
1976
+ tmp1_output.d1z(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), value.c4p_1);
1977
+ tmp1_output.d1z(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), value.d4p_1);
1978
+ tmp1_output.d1z(tmp0_desc, 8, tmp2_cached[8].z1(), value.e4p_1);
1979
+ tmp1_output.d1z(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), value.f4p_1);
1980
+ tmp1_output.d1z(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), value.i4p_1);
1981
+ tmp1_output.d1z(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), value.representativeAddress);
1982
+ tmp1_output.n1x(tmp0_desc);
1983
+ }
1984
+ a1t(encoder, value) {
1985
+ return this.v4o(encoder, value instanceof AttoChangeBlock() ? value : THROW_CCE());
1986
+ }
1987
+ b1t(decoder) {
1988
+ var tmp0_desc = this.u4o_1;
1989
+ var tmp1_flag = true;
1990
+ var tmp2_index = 0;
1991
+ var tmp3_bitMask0 = 0;
1992
+ var tmp4_local0 = null;
1993
+ var tmp5_local1 = null;
1994
+ var tmp6_local2 = null;
1995
+ var tmp7_local3 = null;
1996
+ var tmp8_local4 = null;
1997
+ var tmp9_local5 = null;
1998
+ var tmp10_local6 = null;
1999
+ var tmp11_local7 = null;
2000
+ var tmp12_local8 = null;
2001
+ var tmp13_local9 = null;
2002
+ var tmp14_local10 = null;
2003
+ var tmp15_local11 = null;
2004
+ var tmp18_input = decoder.m1x(tmp0_desc);
2005
+ var tmp19_cached = Companion_getInstance_8().x4m_1;
2006
+ if (tmp18_input.b1y()) {
2007
+ tmp4_local0 = tmp18_input.y1x(tmp0_desc, 0, tmp19_cached[0].z1(), tmp4_local0);
2008
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
2009
+ tmp5_local1 = tmp18_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
2010
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
2011
+ tmp6_local2 = tmp18_input.y1x(tmp0_desc, 2, tmp19_cached[2].z1(), tmp6_local2);
2012
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
2013
+ tmp7_local3 = tmp18_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
2014
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
2015
+ tmp8_local4 = tmp18_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
2016
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
2017
+ tmp9_local5 = tmp18_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
2018
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2019
+ tmp10_local6 = tmp18_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
2020
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2021
+ tmp11_local7 = tmp18_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
2022
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2023
+ tmp12_local8 = tmp18_input.y1x(tmp0_desc, 8, tmp19_cached[8].z1(), tmp12_local8);
2024
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
2025
+ tmp13_local9 = tmp18_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
2026
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
2027
+ tmp14_local10 = tmp18_input.y1x(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), tmp14_local10);
2028
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
2029
+ tmp15_local11 = tmp18_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
2030
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
2031
+ } else
2032
+ while (tmp1_flag) {
2033
+ tmp2_index = tmp18_input.c1y(tmp0_desc);
2034
+ switch (tmp2_index) {
2035
+ case -1:
2036
+ tmp1_flag = false;
2037
+ break;
2038
+ case 0:
2039
+ tmp4_local0 = tmp18_input.y1x(tmp0_desc, 0, tmp19_cached[0].z1(), tmp4_local0);
2040
+ tmp3_bitMask0 = tmp3_bitMask0 | 1;
2041
+ break;
2042
+ case 1:
2043
+ tmp5_local1 = tmp18_input.y1x(tmp0_desc, 1, AttoVersionSerializer_getInstance(), tmp5_local1);
2044
+ tmp3_bitMask0 = tmp3_bitMask0 | 2;
2045
+ break;
2046
+ case 2:
2047
+ tmp6_local2 = tmp18_input.y1x(tmp0_desc, 2, tmp19_cached[2].z1(), tmp6_local2);
2048
+ tmp3_bitMask0 = tmp3_bitMask0 | 4;
2049
+ break;
2050
+ case 3:
2051
+ tmp7_local3 = tmp18_input.y1x(tmp0_desc, 3, AttoPublicKeyAsStringSerializer_getInstance(), tmp7_local3);
2052
+ tmp3_bitMask0 = tmp3_bitMask0 | 8;
2053
+ break;
2054
+ case 4:
2055
+ tmp8_local4 = tmp18_input.y1x(tmp0_desc, 4, AttoHeightSerializer_getInstance(), tmp8_local4);
2056
+ tmp3_bitMask0 = tmp3_bitMask0 | 16;
2057
+ break;
2058
+ case 5:
2059
+ tmp9_local5 = tmp18_input.y1x(tmp0_desc, 5, AttoAmountAsULongSerializer_getInstance(), tmp9_local5);
2060
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2061
+ break;
2062
+ case 6:
2063
+ tmp10_local6 = tmp18_input.y1x(tmp0_desc, 6, AttoInstantAsLongSerializer_getInstance(), tmp10_local6);
2064
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2065
+ break;
2066
+ case 7:
2067
+ tmp11_local7 = tmp18_input.y1x(tmp0_desc, 7, AttoHashAsStringSerializer_getInstance(), tmp11_local7);
2068
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2069
+ break;
2070
+ case 8:
2071
+ tmp12_local8 = tmp18_input.y1x(tmp0_desc, 8, tmp19_cached[8].z1(), tmp12_local8);
2072
+ tmp3_bitMask0 = tmp3_bitMask0 | 256;
2073
+ break;
2074
+ case 9:
2075
+ tmp13_local9 = tmp18_input.y1x(tmp0_desc, 9, AttoPublicKeyAsStringSerializer_getInstance(), tmp13_local9);
2076
+ tmp3_bitMask0 = tmp3_bitMask0 | 512;
2077
+ break;
2078
+ case 10:
2079
+ tmp14_local10 = tmp18_input.y1x(tmp0_desc, 10, AttoAddressAsStringSerializer_getInstance(), tmp14_local10);
2080
+ tmp3_bitMask0 = tmp3_bitMask0 | 1024;
2081
+ break;
2082
+ case 11:
2083
+ tmp15_local11 = tmp18_input.y1x(tmp0_desc, 11, AttoAddressAsStringSerializer_getInstance(), tmp15_local11);
2084
+ tmp3_bitMask0 = tmp3_bitMask0 | 2048;
2085
+ break;
2086
+ default:
2087
+ throw UnknownFieldException().v1u(tmp2_index);
2088
+ }
2089
+ }
2090
+ tmp18_input.n1x(tmp0_desc);
2091
+ return AttoChangeBlock().j4p(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, null);
2092
+ }
2093
+ z1s() {
2094
+ return this.u4o_1;
2095
+ }
2096
+ p25() {
2097
+ var tmp0_cached = Companion_getInstance_8().x4m_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].z1(), AttoVersionSerializer_getInstance(), tmp0_cached[2].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoHeightSerializer_getInstance(), AttoAmountAsULongSerializer_getInstance(), AttoInstantAsLongSerializer_getInstance(), AttoHashAsStringSerializer_getInstance(), tmp0_cached[8].z1(), AttoPublicKeyAsStringSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance(), AttoAddressAsStringSerializer_getInstance()];
2102
+ }
2103
+ }
2104
+ protoOf($).q25 = 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 () => hash(this$0.o4l());
2118
+ }
2119
+ function AttoChangeBlock$_get_hash_$ref_i4oufz() {
2120
+ return (p0) => p0.hash;
2121
+ }
2122
+ function AttoChangeBlock$_init_$lambda_31jg7w(this$0) {
2123
+ return () => hash(this$0.o4l());
2124
+ }
2125
+ var AttoChangeBlockClass;
2126
+ function AttoChangeBlock() {
2127
+ if (AttoChangeBlockClass === VOID) {
2128
+ class $ {
2129
+ constructor(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) {
2130
+ Companion_getInstance_8();
2131
+ this.w4o_1 = network;
2132
+ this.x4o_1 = version;
2133
+ this.y4o_1 = algorithm;
2134
+ this.z4o_1 = publicKey;
2135
+ this.a4p_1 = height;
2136
+ this.b4p_1 = balance;
2137
+ this.c4p_1 = timestamp;
2138
+ this.d4p_1 = previous;
2139
+ this.e4p_1 = representativeAlgorithm;
2140
+ this.f4p_1 = representativePublicKey;
2141
+ this.g4p_1 = AttoBlockType_CHANGE_getInstance();
2142
+ var tmp = this;
2143
+ tmp.h4p_1 = lazy_0(AttoChangeBlock$hash$delegate$lambda(this));
2144
+ this.i4p_1 = new (AttoAddress())(this.y4o_1, this.z4o_1);
2145
+ this.representativeAddress = new (AttoAddress())(this.e4p_1, this.f4p_1);
2146
+ }
2147
+ v4j() {
2148
+ return this.w4o_1;
2149
+ }
2150
+ l37() {
2151
+ return this.x4o_1;
2152
+ }
2153
+ w4j() {
2154
+ return this.y4o_1;
2155
+ }
2156
+ u4j() {
2157
+ return this.z4o_1;
2158
+ }
2159
+ x4j() {
2160
+ return this.a4p_1;
2161
+ }
2162
+ y4j() {
2163
+ return this.b4p_1;
2164
+ }
2165
+ d4l() {
2166
+ return this.c4p_1;
2167
+ }
2168
+ c4n() {
2169
+ return this.d4p_1;
2170
+ }
2171
+ b4k() {
2172
+ return this.e4p_1;
2173
+ }
2174
+ c4k() {
2175
+ return this.f4p_1;
2176
+ }
2177
+ y4m() {
2178
+ return this.g4p_1;
2179
+ }
2180
+ y4k() {
2181
+ var tmp0 = this.h4p_1;
2182
+ var tmp = KProperty1();
2183
+ // Inline function 'kotlin.getValue' call
2184
+ getPropertyCallableRef('hash', 1, tmp, AttoChangeBlock$_get_hash_$ref_i4oufz(), null);
2185
+ return tmp0.z1();
2186
+ }
2187
+ d4k() {
2188
+ return this.i4p_1;
2189
+ }
2190
+ e4k() {
2191
+ return this.representativeAddress;
2192
+ }
2193
+ o4l() {
2194
+ // Inline function 'kotlin.apply' call
2195
+ var this_0 = new (Buffer())();
2196
+ writeAttoBlockType(this_0, this.g4p_1);
2197
+ writeAttoNetwork(this_0, this.w4o_1);
2198
+ writeAttoVersion(this_0, this.x4o_1);
2199
+ writeAttoAlgorithm(this_0, this.y4o_1);
2200
+ writeAttoPublicKey(this_0, this.z4o_1);
2201
+ writeAttoHeight(this_0, this.a4p_1);
2202
+ writeAttoAmount(this_0, this.b4p_1);
2203
+ writeInstant(this_0, this.c4p_1);
2204
+ writeAttoHash(this_0, this.d4p_1);
2205
+ writeAttoAlgorithm(this_0, this.e4p_1);
2206
+ writeAttoPublicKey(this_0, this.f4p_1);
2207
+ return this_0;
2208
+ }
2209
+ ne() {
2210
+ return this.w4o_1;
2211
+ }
2212
+ oe() {
2213
+ return this.x4o_1;
2214
+ }
2215
+ j4k() {
2216
+ return this.y4o_1;
2217
+ }
2218
+ k4k() {
2219
+ return this.z4o_1;
2220
+ }
2221
+ l4k() {
2222
+ return this.a4p_1;
2223
+ }
2224
+ m4k() {
2225
+ return this.b4p_1;
2226
+ }
2227
+ n4k() {
2228
+ return this.c4p_1;
2229
+ }
2230
+ o4k() {
2231
+ return this.d4p_1;
2232
+ }
2233
+ p4k() {
2234
+ return this.e4p_1;
2235
+ }
2236
+ q4k() {
2237
+ return this.f4p_1;
2238
+ }
2239
+ k4p(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) {
2240
+ return new (AttoChangeBlock())(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey);
2241
+ }
2242
+ copy(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey, $super) {
2243
+ network = network === VOID ? this.w4o_1 : network;
2244
+ version = version === VOID ? this.x4o_1 : version;
2245
+ algorithm = algorithm === VOID ? this.y4o_1 : algorithm;
2246
+ publicKey = publicKey === VOID ? this.z4o_1 : publicKey;
2247
+ height = height === VOID ? this.a4p_1 : height;
2248
+ balance = balance === VOID ? this.b4p_1 : balance;
2249
+ timestamp = timestamp === VOID ? this.c4p_1 : timestamp;
2250
+ previous = previous === VOID ? this.d4p_1 : previous;
2251
+ representativeAlgorithm = representativeAlgorithm === VOID ? this.e4p_1 : representativeAlgorithm;
2252
+ representativePublicKey = representativePublicKey === VOID ? this.f4p_1 : representativePublicKey;
2253
+ return $super === VOID ? this.k4p(network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey) : $super.k4p.call(this, network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey);
2254
+ }
2255
+ toString() {
2256
+ return 'AttoChangeBlock(network=' + this.w4o_1.toString() + ', version=' + this.x4o_1.toString() + ', algorithm=' + this.y4o_1.toString() + ', publicKey=' + this.z4o_1.toString() + ', height=' + this.a4p_1.toString() + ', balance=' + this.b4p_1.toString() + ', timestamp=' + this.c4p_1.toString() + ', previous=' + this.d4p_1.toString() + ', representativeAlgorithm=' + this.e4p_1.toString() + ', representativePublicKey=' + this.f4p_1.toString() + ')';
2257
+ }
2258
+ hashCode() {
2259
+ var result = this.w4o_1.hashCode();
2260
+ result = imul(result, 31) + this.x4o_1.hashCode() | 0;
2261
+ result = imul(result, 31) + this.y4o_1.hashCode() | 0;
2262
+ result = imul(result, 31) + this.z4o_1.hashCode() | 0;
2263
+ result = imul(result, 31) + this.a4p_1.hashCode() | 0;
2264
+ result = imul(result, 31) + this.b4p_1.hashCode() | 0;
2265
+ result = imul(result, 31) + this.c4p_1.hashCode() | 0;
2266
+ result = imul(result, 31) + this.d4p_1.hashCode() | 0;
2267
+ result = imul(result, 31) + this.e4p_1.hashCode() | 0;
2268
+ result = imul(result, 31) + this.f4p_1.hashCode() | 0;
2269
+ return result;
2270
+ }
2271
+ equals(other) {
2272
+ if (this === other)
2273
+ return true;
2274
+ if (!(other instanceof AttoChangeBlock()))
2275
+ return false;
2276
+ if (!this.w4o_1.equals(other.w4o_1))
2277
+ return false;
2278
+ if (!this.x4o_1.equals(other.x4o_1))
2279
+ return false;
2280
+ if (!this.y4o_1.equals(other.y4o_1))
2281
+ return false;
2282
+ if (!this.z4o_1.equals(other.z4o_1))
2283
+ return false;
2284
+ if (!this.a4p_1.equals(other.a4p_1))
2285
+ return false;
2286
+ if (!this.b4p_1.equals(other.b4p_1))
2287
+ return false;
2288
+ if (!this.c4p_1.equals(other.c4p_1))
2289
+ return false;
2290
+ if (!this.d4p_1.equals(other.d4p_1))
2291
+ return false;
2292
+ if (!this.e4p_1.equals(other.e4p_1))
2293
+ return false;
2294
+ if (!this.f4p_1.equals(other.f4p_1))
2295
+ return false;
2296
+ return true;
2297
+ }
2298
+ static j4p(seen0, network, version, algorithm, publicKey, height, balance, timestamp, previous, representativeAlgorithm, representativePublicKey, address, representativeAddress, serializationConstructorMarker) {
2299
+ Companion_getInstance_8();
2300
+ if (!(1023 === (1023 & seen0))) {
2301
+ throwMissingFieldException(seen0, 1023, $serializer_getInstance_2().u4o_1);
2302
+ }
2303
+ var $this = createThis(this);
2304
+ $this.w4o_1 = network;
2305
+ $this.x4o_1 = version;
2306
+ $this.y4o_1 = algorithm;
2307
+ $this.z4o_1 = publicKey;
2308
+ $this.a4p_1 = height;
2309
+ $this.b4p_1 = balance;
2310
+ $this.c4p_1 = timestamp;
2311
+ $this.d4p_1 = previous;
2312
+ $this.e4p_1 = representativeAlgorithm;
2313
+ $this.f4p_1 = representativePublicKey;
2314
+ $this.g4p_1 = AttoBlockType_CHANGE_getInstance();
2315
+ var tmp = $this;
2316
+ tmp.h4p_1 = lazy_0(AttoChangeBlock$_init_$lambda_31jg7w($this));
2317
+ if (0 === (seen0 & 1024))
2318
+ $this.i4p_1 = new (AttoAddress())($this.y4o_1, $this.z4o_1);
2319
+ else
2320
+ $this.i4p_1 = address;
2321
+ if (0 === (seen0 & 2048))
2322
+ $this.representativeAddress = new (AttoAddress())($this.e4p_1, $this.f4p_1);
2323
+ else
2324
+ $this.representativeAddress = representativeAddress;
2325
+ return $this;
2326
+ }
2327
+ get network() {
2328
+ return this.v4j();
2329
+ }
2330
+ get version() {
2331
+ return this.l37();
2332
+ }
2333
+ get algorithm() {
2334
+ return this.w4j();
2335
+ }
2336
+ get publicKey() {
2337
+ return this.u4j();
2338
+ }
2339
+ get height() {
2340
+ return this.x4j();
2341
+ }
2342
+ get balance() {
2343
+ return this.y4j();
2344
+ }
2345
+ get timestamp() {
2346
+ return this.d4l();
2347
+ }
2348
+ get previous() {
2349
+ return this.c4n();
2350
+ }
2351
+ get representativeAlgorithm() {
2352
+ return this.b4k();
2353
+ }
2354
+ get representativePublicKey() {
2355
+ return this.c4k();
2356
+ }
2357
+ get type() {
2358
+ return this.y4m();
2359
+ }
2360
+ get hash() {
2361
+ return this.y4k();
2362
+ }
2363
+ get address() {
2364
+ return this.d4k();
2365
+ }
2366
+ }
2367
+ protoOf($).validate = validate;
2368
+ protoOf($).isValid = isValid;
2369
+ initMetadataForClass($, 'AttoChangeBlock', VOID, VOID, [AttoBlock(), PreviousSupport(), RepresentativeSupport()], VOID, VOID, {0: $serializer_getInstance_2});
2370
+ AttoChangeBlockClass = $;
2371
+ }
2372
+ return AttoChangeBlockClass;
2373
+ }
2374
+ function createGenesis(_this__u8e3s4, network, address) {
2375
+ _init_properties_AttoBlock_kt__sp9j9p();
2376
+ var tmp0_version = toAttoVersion(_UInt___init__impl__l7qpdl(0));
2377
+ var tmp1_algorithm = address.algorithm;
2378
+ var tmp2_publicKey = address.publicKey;
2379
+ var tmp3_balance = Companion_getInstance_0().MAX;
2380
+ var tmp4_timestamp = Companion_instance.now();
2381
+ var tmp5_sendHashAlgorithm = address.algorithm;
2382
+ var tmp6_sendHash = new (AttoHash())(new Int8Array(32));
2383
+ var tmp7_representativeAlgorithm = address.algorithm;
2384
+ var tmp8_representativePublicKey = address.publicKey;
2385
+ return new (AttoOpenBlock())(network, tmp0_version, tmp1_algorithm, tmp2_publicKey, tmp3_balance, tmp4_timestamp, tmp5_sendHashAlgorithm, tmp6_sendHash, tmp7_representativeAlgorithm, tmp8_representativePublicKey);
2386
+ }
2387
+ function AttoBlockType_UNKNOWN_getInstance() {
2388
+ AttoBlockType_initEntries();
2389
+ return AttoBlockType_UNKNOWN_instance;
2390
+ }
2391
+ function AttoBlockType_OPEN_getInstance() {
2392
+ AttoBlockType_initEntries();
2393
+ return AttoBlockType_OPEN_instance;
2394
+ }
2395
+ function AttoBlockType_RECEIVE_getInstance() {
2396
+ AttoBlockType_initEntries();
2397
+ return AttoBlockType_RECEIVE_instance;
2398
+ }
2399
+ function AttoBlockType_SEND_getInstance() {
2400
+ AttoBlockType_initEntries();
2401
+ return AttoBlockType_SEND_instance;
2402
+ }
2403
+ function AttoBlockType_CHANGE_getInstance() {
2404
+ AttoBlockType_initEntries();
2405
+ return AttoBlockType_CHANGE_instance;
2406
+ }
2407
+ var properties_initialized_AttoBlock_kt_lkx0lr;
2408
+ function _init_properties_AttoBlock_kt__sp9j9p() {
2409
+ if (!properties_initialized_AttoBlock_kt_lkx0lr) {
2410
+ properties_initialized_AttoBlock_kt_lkx0lr = true;
2411
+ maxVersion = new (AttoVersion())(_UShort___init__impl__jigrne(0));
2412
+ }
2413
+ }
2414
+ //region block: init
2415
+ Companion_instance_1 = new (Companion_0())();
2416
+ //endregion
2417
+ //region block: exports
2418
+ export {
2419
+ AddressSupport as AddressSupport1ium5ptu9zo8y,
2420
+ Companion_0 as Companion1dgdscbdp629o,
2421
+ Companion as Companion3u1bosrh7rroz,
2422
+ valueOf as valueOfb8c3bsf1tbuo,
2423
+ values_0 as values1esofir5pvotm,
2424
+ AttoBlockType as AttoBlockType2o3t26mpp4g1m,
2425
+ AttoBlock as AttoBlock30fs78tuvh866,
2426
+ Companion_4 as Companion3m333c3oak3ah,
2427
+ AttoChangeBlock as AttoChangeBlock2ght5eopbdd3a,
2428
+ Companion_3 as Companion22hic3dn5hjie,
2429
+ AttoOpenBlock as AttoOpenBlock12k0m6lgjqi4d,
2430
+ Companion_2 as Companion35frkk3dh8l5t,
2431
+ AttoReceiveBlock as AttoReceiveBlock1rskhrovahuhh,
2432
+ Companion_1 as Companion2stbuimptwsmu,
2433
+ AttoSendBlock as AttoSendBlock3okbwu66utugk,
2434
+ HeightSupport as HeightSupport3fvmuzuofr8h6,
2435
+ PreviousSupport as PreviousSupport1um4ogj9ve97w,
2436
+ createGenesis as createGenesis2mvvwqlk7amo4,
2437
+ AttoBlockType_CHANGE_getInstance as AttoBlockType_CHANGE_getInstance3orw5rx2tjqv2,
2438
+ AttoBlockType_OPEN_getInstance as AttoBlockType_OPEN_getInstance2qq2w4m4uqmq7,
2439
+ AttoBlockType_RECEIVE_getInstance as AttoBlockType_RECEIVE_getInstancemszz2w4jvf1a,
2440
+ AttoBlockType_SEND_getInstance as AttoBlockType_SEND_getInstance381mhjyjs1zzi,
2441
+ AttoBlockType_UNKNOWN_getInstance as AttoBlockType_UNKNOWN_getInstance3dnnplul63rg3,
2442
+ Companion_getInstance_4 as Companion_getInstance1l72fs50ibztr,
2443
+ Companion_instance_1 as Companion_instance387qsp52z8jyu,
2444
+ Companion_getInstance_3 as Companion_getInstance2phtijzt3ebp3,
2445
+ Companion_getInstance_8 as Companion_getInstance22d8d928ihuoo,
2446
+ Companion_getInstance_7 as Companion_getInstance30jgubha5f9hp,
2447
+ Companion_getInstance_6 as Companion_getInstance3uyok5rq53k69,
2448
+ Companion_getInstance_5 as Companion_getInstance1oozvss6gswmf,
2449
+ };
2450
+ //endregion
2451
+
2452
+ //# sourceMappingURL=AttoBlock.mjs.map