lakutata 2.0.95 → 2.0.96

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 (1175) hide show
  1. package/com/cacher.cjs +56 -44
  2. package/com/cacher.mjs +56 -44
  3. package/com/database.cjs +74 -74
  4. package/com/database.mjs +74 -74
  5. package/com/docker.cjs +85 -85
  6. package/com/docker.mjs +85 -85
  7. package/com/entrypoint.cjs +44 -44
  8. package/com/entrypoint.mjs +44 -44
  9. package/com/logger.cjs +51 -51
  10. package/com/logger.mjs +51 -51
  11. package/com/monitor.cjs +32 -32
  12. package/com/monitor.mjs +32 -32
  13. package/decorator/asst.cjs +5 -5
  14. package/decorator/asst.mjs +5 -5
  15. package/decorator/ctrl.cjs +22 -22
  16. package/decorator/ctrl.mjs +22 -22
  17. package/decorator/di.cjs +17 -17
  18. package/decorator/di.mjs +17 -17
  19. package/decorator/dto.cjs +17 -17
  20. package/decorator/dto.mjs +17 -17
  21. package/decorator/orm.cjs +47 -47
  22. package/decorator/orm.mjs +47 -47
  23. package/dtos.cjs +17 -17
  24. package/dtos.mjs +17 -17
  25. package/helper.cjs +32 -32
  26. package/helper.mjs +32 -32
  27. package/lakutata.cjs +110 -110
  28. package/lakutata.mjs +110 -110
  29. package/orm.cjs +47 -47
  30. package/orm.mjs +48 -48
  31. package/package.json +1 -1
  32. package/provider/database.cjs +73 -73
  33. package/provider/database.mjs +73 -73
  34. package/provider/passwordHash.cjs +31 -31
  35. package/provider/passwordHash.mjs +31 -31
  36. package/src/components/Database.cjs +74 -74
  37. package/src/components/Database.mjs +74 -74
  38. package/src/components/Logger.cjs +51 -51
  39. package/src/components/Logger.mjs +51 -51
  40. package/src/components/cacher/Cacher.cjs +60 -48
  41. package/src/components/cacher/Cacher.mjs +60 -48
  42. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +25 -11
  43. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +31 -17
  44. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +29 -15
  45. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +38 -24
  46. package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +41 -27
  47. package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +37 -23
  48. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +28 -14
  49. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +26 -12
  50. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +39 -25
  51. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +29 -15
  52. package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +26 -12
  53. package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +26 -12
  54. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +29 -15
  55. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +29 -15
  56. package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +4 -4
  57. package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +4 -4
  58. package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
  59. package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
  60. package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +4 -4
  61. package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +4 -4
  62. package/src/components/cacher/options/FileCacheOptions.cjs +17 -17
  63. package/src/components/cacher/options/FileCacheOptions.mjs +17 -17
  64. package/src/components/cacher/options/MemcacheCacheOptions.cjs +17 -17
  65. package/src/components/cacher/options/MemcacheCacheOptions.mjs +17 -17
  66. package/src/components/cacher/options/MongoCacheOptions.cjs +17 -17
  67. package/src/components/cacher/options/MongoCacheOptions.mjs +17 -17
  68. package/src/components/cacher/options/MysqlCacheOptions.cjs +17 -17
  69. package/src/components/cacher/options/MysqlCacheOptions.mjs +17 -17
  70. package/src/components/cacher/options/PostgresCacheOptions.cjs +17 -17
  71. package/src/components/cacher/options/PostgresCacheOptions.mjs +17 -17
  72. package/src/components/cacher/options/RedisCacheOptions.cjs +17 -17
  73. package/src/components/cacher/options/RedisCacheOptions.mjs +17 -17
  74. package/src/components/cacher/options/SqliteCacheOptions.cjs +17 -17
  75. package/src/components/cacher/options/SqliteCacheOptions.mjs +17 -17
  76. package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
  77. package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
  78. package/src/components/docker/ConnectionOptionsBuilder.cjs +85 -85
  79. package/src/components/docker/ConnectionOptionsBuilder.mjs +85 -85
  80. package/src/components/docker/Docker.cjs +85 -85
  81. package/src/components/docker/Docker.mjs +85 -85
  82. package/src/components/docker/exceptions/DockerConnectionException.cjs +4 -4
  83. package/src/components/docker/exceptions/DockerConnectionException.mjs +4 -4
  84. package/src/components/docker/exceptions/DockerImageBuildException.cjs +4 -4
  85. package/src/components/docker/exceptions/DockerImageBuildException.mjs +4 -4
  86. package/src/components/docker/exceptions/DockerImageImportException.cjs +4 -4
  87. package/src/components/docker/exceptions/DockerImageImportException.mjs +4 -4
  88. package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +4 -4
  89. package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +4 -4
  90. package/src/components/docker/exceptions/DockerImagePullException.cjs +4 -4
  91. package/src/components/docker/exceptions/DockerImagePullException.mjs +4 -4
  92. package/src/components/docker/exceptions/DockerImagePushException.cjs +4 -4
  93. package/src/components/docker/exceptions/DockerImagePushException.mjs +4 -4
  94. package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +4 -4
  95. package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +4 -4
  96. package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +4 -4
  97. package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +4 -4
  98. package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
  99. package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
  100. package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
  101. package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
  102. package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
  103. package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
  104. package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
  105. package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
  106. package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
  107. package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
  108. package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
  109. package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
  110. package/src/components/docker/lib/DockerContainer.cjs +72 -72
  111. package/src/components/docker/lib/DockerContainer.mjs +72 -72
  112. package/src/components/docker/lib/DockerContainerTTY.cjs +72 -72
  113. package/src/components/docker/lib/DockerContainerTTY.mjs +72 -72
  114. package/src/components/docker/lib/DockerImage.cjs +30 -30
  115. package/src/components/docker/lib/DockerImage.mjs +30 -30
  116. package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
  117. package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
  118. package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
  119. package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
  120. package/src/components/docker/options/DockerPruneOptions.cjs +17 -17
  121. package/src/components/docker/options/DockerPruneOptions.mjs +17 -17
  122. package/src/components/docker/options/auth/DockerAuthOptions.cjs +17 -17
  123. package/src/components/docker/options/auth/DockerAuthOptions.mjs +17 -17
  124. package/src/components/docker/options/container/ContainerCommitOptions.cjs +17 -17
  125. package/src/components/docker/options/container/ContainerCommitOptions.mjs +17 -17
  126. package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +17 -17
  127. package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +17 -17
  128. package/src/components/docker/options/container/ContainerExecOptions.cjs +17 -17
  129. package/src/components/docker/options/container/ContainerExecOptions.mjs +17 -17
  130. package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +17 -17
  131. package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +17 -17
  132. package/src/components/docker/options/container/ContainerKillOptions.cjs +17 -17
  133. package/src/components/docker/options/container/ContainerKillOptions.mjs +17 -17
  134. package/src/components/docker/options/container/ContainerLogsOptions.cjs +17 -17
  135. package/src/components/docker/options/container/ContainerLogsOptions.mjs +17 -17
  136. package/src/components/docker/options/container/ContainerRemoveOptions.cjs +17 -17
  137. package/src/components/docker/options/container/ContainerRemoveOptions.mjs +17 -17
  138. package/src/components/docker/options/container/ContainerSettingOptions.cjs +17 -17
  139. package/src/components/docker/options/container/ContainerSettingOptions.mjs +17 -17
  140. package/src/components/docker/options/container/ContainerStopOptions.cjs +17 -17
  141. package/src/components/docker/options/container/ContainerStopOptions.mjs +17 -17
  142. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +17 -17
  143. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +17 -17
  144. package/src/components/docker/options/image/ImageBuildOptions.cjs +17 -17
  145. package/src/components/docker/options/image/ImageBuildOptions.mjs +17 -17
  146. package/src/components/docker/options/image/ImageExportOptions.cjs +17 -17
  147. package/src/components/docker/options/image/ImageExportOptions.mjs +17 -17
  148. package/src/components/docker/options/image/ImageImportOptions.cjs +17 -17
  149. package/src/components/docker/options/image/ImageImportOptions.mjs +17 -17
  150. package/src/components/docker/options/image/ImagePullOptions.cjs +17 -17
  151. package/src/components/docker/options/image/ImagePullOptions.mjs +17 -17
  152. package/src/components/docker/options/image/ImagePushOptions.cjs +17 -17
  153. package/src/components/docker/options/image/ImagePushOptions.mjs +17 -17
  154. package/src/components/docker/options/image/ImageRemoveOptions.cjs +17 -17
  155. package/src/components/docker/options/image/ImageRemoveOptions.mjs +17 -17
  156. package/src/components/docker/options/image/ImageTagOptions.cjs +17 -17
  157. package/src/components/docker/options/image/ImageTagOptions.mjs +17 -17
  158. package/src/components/docker/options/network/NetworkCreateOptions.cjs +17 -17
  159. package/src/components/docker/options/network/NetworkCreateOptions.mjs +17 -17
  160. package/src/components/docker/types/ContainerBind.cjs +1 -1
  161. package/src/components/docker/types/ContainerBind.mjs +1 -1
  162. package/src/components/docker/types/ContainerCapability.cjs +1 -1
  163. package/src/components/docker/types/ContainerCapability.mjs +1 -1
  164. package/src/components/docker/types/ContainerConfig.cjs +1 -1
  165. package/src/components/docker/types/ContainerConfig.mjs +1 -1
  166. package/src/components/docker/types/ContainerDevice.cjs +1 -1
  167. package/src/components/docker/types/ContainerDevice.mjs +1 -1
  168. package/src/components/docker/types/ContainerNetwork.cjs +1 -1
  169. package/src/components/docker/types/ContainerNetwork.mjs +1 -1
  170. package/src/components/docker/types/ContainerPort.cjs +1 -1
  171. package/src/components/docker/types/ContainerPort.mjs +1 -1
  172. package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
  173. package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
  174. package/src/components/docker/types/ContainerState.cjs +1 -1
  175. package/src/components/docker/types/ContainerState.mjs +1 -1
  176. package/src/components/docker/types/ContainerStats.cjs +1 -1
  177. package/src/components/docker/types/ContainerStats.mjs +1 -1
  178. package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
  179. package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
  180. package/src/components/docker/types/ImageConfig.cjs +1 -1
  181. package/src/components/docker/types/ImageConfig.mjs +1 -1
  182. package/src/components/docker/types/ImageExposePort.cjs +1 -1
  183. package/src/components/docker/types/ImageExposePort.mjs +1 -1
  184. package/src/components/docker/types/NetworkInfo.cjs +1 -1
  185. package/src/components/docker/types/NetworkInfo.mjs +1 -1
  186. package/src/components/entrypoint/Entrypoint.cjs +44 -44
  187. package/src/components/entrypoint/Entrypoint.mjs +44 -44
  188. package/src/components/entrypoint/exceptions/AccessDenyException.cjs +4 -4
  189. package/src/components/entrypoint/exceptions/AccessDenyException.mjs +4 -4
  190. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +4 -4
  191. package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +4 -4
  192. package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +4 -4
  193. package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +4 -4
  194. package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +4 -4
  195. package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +4 -4
  196. package/src/components/entrypoint/lib/AccessControl.cjs +30 -30
  197. package/src/components/entrypoint/lib/AccessControl.mjs +30 -30
  198. package/src/components/entrypoint/lib/AccessControlRule.cjs +30 -30
  199. package/src/components/entrypoint/lib/AccessControlRule.mjs +30 -30
  200. package/src/components/entrypoint/lib/Controller.cjs +30 -30
  201. package/src/components/entrypoint/lib/Controller.mjs +30 -30
  202. package/src/components/monitor/AliveMonitor.cjs +31 -31
  203. package/src/components/monitor/AliveMonitor.mjs +31 -31
  204. package/src/components/monitor/CpuMonitor.cjs +32 -32
  205. package/src/components/monitor/CpuMonitor.mjs +32 -32
  206. package/src/components/monitor/EventLoopMonitor.cjs +31 -31
  207. package/src/components/monitor/EventLoopMonitor.mjs +31 -31
  208. package/src/components/monitor/HttpRequestMonitor.cjs +32 -32
  209. package/src/components/monitor/HttpRequestMonitor.mjs +32 -32
  210. package/src/components/monitor/MemoryMonitor.cjs +32 -32
  211. package/src/components/monitor/MemoryMonitor.mjs +32 -32
  212. package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
  213. package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
  214. package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
  215. package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
  216. package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
  217. package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
  218. package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
  219. package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
  220. package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
  221. package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
  222. package/src/constants/DIMetadataKey.cjs +2 -2
  223. package/src/constants/DIMetadataKey.mjs +2 -2
  224. package/src/constants/DTOMetadataKey.cjs +2 -2
  225. package/src/constants/DTOMetadataKey.mjs +2 -2
  226. package/src/decorators/asst/After.cjs +4 -4
  227. package/src/decorators/asst/After.mjs +4 -4
  228. package/src/decorators/asst/Before.cjs +4 -4
  229. package/src/decorators/asst/Before.mjs +4 -4
  230. package/src/decorators/ctrl/CLIAction.cjs +22 -22
  231. package/src/decorators/ctrl/CLIAction.mjs +22 -22
  232. package/src/decorators/ctrl/HTTPAction.cjs +22 -22
  233. package/src/decorators/ctrl/HTTPAction.mjs +22 -22
  234. package/src/decorators/ctrl/ServiceAction.cjs +22 -22
  235. package/src/decorators/ctrl/ServiceAction.mjs +22 -22
  236. package/src/decorators/ctrl/http/DELETE.cjs +22 -22
  237. package/src/decorators/ctrl/http/DELETE.mjs +22 -22
  238. package/src/decorators/ctrl/http/GET.cjs +22 -22
  239. package/src/decorators/ctrl/http/GET.mjs +22 -22
  240. package/src/decorators/ctrl/http/HEAD.cjs +22 -22
  241. package/src/decorators/ctrl/http/HEAD.mjs +22 -22
  242. package/src/decorators/ctrl/http/OPTIONS.cjs +22 -22
  243. package/src/decorators/ctrl/http/OPTIONS.mjs +22 -22
  244. package/src/decorators/ctrl/http/PATCH.cjs +22 -22
  245. package/src/decorators/ctrl/http/PATCH.mjs +22 -22
  246. package/src/decorators/ctrl/http/POST.cjs +22 -22
  247. package/src/decorators/ctrl/http/POST.mjs +22 -22
  248. package/src/decorators/ctrl/http/PUT.cjs +22 -22
  249. package/src/decorators/ctrl/http/PUT.mjs +22 -22
  250. package/src/decorators/di/Autoload.cjs +2 -2
  251. package/src/decorators/di/Autoload.mjs +2 -2
  252. package/src/decorators/di/Configurable.cjs +17 -17
  253. package/src/decorators/di/Configurable.mjs +17 -17
  254. package/src/decorators/di/Inject.cjs +17 -17
  255. package/src/decorators/di/Inject.mjs +17 -17
  256. package/src/decorators/di/Lifetime.cjs +5 -5
  257. package/src/decorators/di/Lifetime.mjs +5 -5
  258. package/src/decorators/dto/Accept.cjs +17 -17
  259. package/src/decorators/dto/Accept.mjs +17 -17
  260. package/src/decorators/dto/Expect.cjs +17 -17
  261. package/src/decorators/dto/Expect.mjs +17 -17
  262. package/src/decorators/dto/IndexSignature.cjs +17 -17
  263. package/src/decorators/dto/IndexSignature.mjs +17 -17
  264. package/src/decorators/dto/Return.cjs +17 -17
  265. package/src/decorators/dto/Return.mjs +17 -17
  266. package/src/decorators/orm/AfterInsert.cjs +46 -46
  267. package/src/decorators/orm/AfterInsert.mjs +46 -46
  268. package/src/decorators/orm/AfterLoad.cjs +46 -46
  269. package/src/decorators/orm/AfterLoad.mjs +46 -46
  270. package/src/decorators/orm/AfterRecover.cjs +46 -46
  271. package/src/decorators/orm/AfterRecover.mjs +46 -46
  272. package/src/decorators/orm/AfterRemove.cjs +46 -46
  273. package/src/decorators/orm/AfterRemove.mjs +46 -46
  274. package/src/decorators/orm/AfterSoftRemove.cjs +46 -46
  275. package/src/decorators/orm/AfterSoftRemove.mjs +46 -46
  276. package/src/decorators/orm/AfterUpdate.cjs +46 -46
  277. package/src/decorators/orm/AfterUpdate.mjs +46 -46
  278. package/src/decorators/orm/BeforeInsert.cjs +46 -46
  279. package/src/decorators/orm/BeforeInsert.mjs +46 -46
  280. package/src/decorators/orm/BeforeRecover.cjs +46 -46
  281. package/src/decorators/orm/BeforeRecover.mjs +46 -46
  282. package/src/decorators/orm/BeforeRemove.cjs +46 -46
  283. package/src/decorators/orm/BeforeRemove.mjs +46 -46
  284. package/src/decorators/orm/BeforeSoftRemove.cjs +46 -46
  285. package/src/decorators/orm/BeforeSoftRemove.mjs +46 -46
  286. package/src/decorators/orm/BeforeUpdate.cjs +46 -46
  287. package/src/decorators/orm/BeforeUpdate.mjs +46 -46
  288. package/src/decorators/orm/Check.cjs +46 -46
  289. package/src/decorators/orm/Check.mjs +46 -46
  290. package/src/decorators/orm/ChildEntity.cjs +46 -46
  291. package/src/decorators/orm/ChildEntity.mjs +46 -46
  292. package/src/decorators/orm/Column.cjs +46 -46
  293. package/src/decorators/orm/Column.mjs +46 -46
  294. package/src/decorators/orm/CreateDateColumn.cjs +46 -46
  295. package/src/decorators/orm/CreateDateColumn.mjs +46 -46
  296. package/src/decorators/orm/DeleteDateColumn.cjs +46 -46
  297. package/src/decorators/orm/DeleteDateColumn.mjs +46 -46
  298. package/src/decorators/orm/Entity.cjs +46 -46
  299. package/src/decorators/orm/Entity.mjs +46 -46
  300. package/src/decorators/orm/EventSubscriber.cjs +46 -46
  301. package/src/decorators/orm/EventSubscriber.mjs +46 -46
  302. package/src/decorators/orm/Exclusion.cjs +46 -46
  303. package/src/decorators/orm/Exclusion.mjs +46 -46
  304. package/src/decorators/orm/Generated.cjs +46 -46
  305. package/src/decorators/orm/Generated.mjs +46 -46
  306. package/src/decorators/orm/Index.cjs +46 -46
  307. package/src/decorators/orm/Index.mjs +46 -46
  308. package/src/decorators/orm/JoinColumn.cjs +46 -46
  309. package/src/decorators/orm/JoinColumn.mjs +46 -46
  310. package/src/decorators/orm/JoinTable.cjs +46 -46
  311. package/src/decorators/orm/JoinTable.mjs +46 -46
  312. package/src/decorators/orm/ManyToMany.cjs +46 -46
  313. package/src/decorators/orm/ManyToMany.mjs +46 -46
  314. package/src/decorators/orm/ManyToOne.cjs +46 -46
  315. package/src/decorators/orm/ManyToOne.mjs +46 -46
  316. package/src/decorators/orm/ObjectIdColumn.cjs +46 -46
  317. package/src/decorators/orm/ObjectIdColumn.mjs +46 -46
  318. package/src/decorators/orm/OneToMany.cjs +46 -46
  319. package/src/decorators/orm/OneToMany.mjs +46 -46
  320. package/src/decorators/orm/OneToOne.cjs +46 -46
  321. package/src/decorators/orm/OneToOne.mjs +46 -46
  322. package/src/decorators/orm/PrimaryColumn.cjs +46 -46
  323. package/src/decorators/orm/PrimaryColumn.mjs +46 -46
  324. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +46 -46
  325. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +46 -46
  326. package/src/decorators/orm/RelationId.cjs +46 -46
  327. package/src/decorators/orm/RelationId.mjs +46 -46
  328. package/src/decorators/orm/TableInheritance.cjs +46 -46
  329. package/src/decorators/orm/TableInheritance.mjs +46 -46
  330. package/src/decorators/orm/Tree.cjs +46 -46
  331. package/src/decorators/orm/Tree.mjs +46 -46
  332. package/src/decorators/orm/TreeChildren.cjs +46 -46
  333. package/src/decorators/orm/TreeChildren.mjs +46 -46
  334. package/src/decorators/orm/TreeLevelColumn.cjs +46 -46
  335. package/src/decorators/orm/TreeLevelColumn.mjs +46 -46
  336. package/src/decorators/orm/TreeParent.cjs +46 -46
  337. package/src/decorators/orm/TreeParent.mjs +46 -46
  338. package/src/decorators/orm/Unique.cjs +46 -46
  339. package/src/decorators/orm/Unique.mjs +46 -46
  340. package/src/decorators/orm/UpdateDateColumn.cjs +46 -46
  341. package/src/decorators/orm/UpdateDateColumn.mjs +46 -46
  342. package/src/decorators/orm/VersionColumn.cjs +46 -46
  343. package/src/decorators/orm/VersionColumn.mjs +46 -46
  344. package/src/decorators/orm/ViewColumn.cjs +46 -46
  345. package/src/decorators/orm/ViewColumn.mjs +46 -46
  346. package/src/decorators/orm/ViewEntity.cjs +46 -46
  347. package/src/decorators/orm/ViewEntity.mjs +46 -46
  348. package/src/decorators/orm/VirtualColumn.cjs +46 -46
  349. package/src/decorators/orm/VirtualColumn.mjs +46 -46
  350. package/src/dto/PaginationResultDTO.cjs +17 -17
  351. package/src/dto/PaginationResultDTO.mjs +17 -17
  352. package/src/dto/PaginationSearchDTO.cjs +17 -17
  353. package/src/dto/PaginationSearchDTO.mjs +17 -17
  354. package/src/exceptions/DestroyRuntimeContainerException.cjs +4 -4
  355. package/src/exceptions/DestroyRuntimeContainerException.mjs +4 -4
  356. package/src/exceptions/InvalidActionPatternDepthException.cjs +4 -4
  357. package/src/exceptions/InvalidActionPatternDepthException.mjs +4 -4
  358. package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +4 -4
  359. package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +4 -4
  360. package/src/exceptions/InvalidObjectTypeException.cjs +4 -4
  361. package/src/exceptions/InvalidObjectTypeException.mjs +4 -4
  362. package/src/exceptions/MethodNotFoundException.cjs +4 -4
  363. package/src/exceptions/MethodNotFoundException.mjs +4 -4
  364. package/src/exceptions/alias/AliasExistsException.cjs +4 -4
  365. package/src/exceptions/alias/AliasExistsException.mjs +4 -4
  366. package/src/exceptions/alias/AliasNotFoundException.cjs +4 -4
  367. package/src/exceptions/alias/AliasNotFoundException.mjs +4 -4
  368. package/src/exceptions/alias/InvalidAliasNameException.cjs +4 -4
  369. package/src/exceptions/alias/InvalidAliasNameException.mjs +4 -4
  370. package/src/exceptions/di/DependencyInjectionException.cjs +4 -4
  371. package/src/exceptions/di/DependencyInjectionException.mjs +4 -4
  372. package/src/exceptions/di/LifetimeLockedException.cjs +4 -4
  373. package/src/exceptions/di/LifetimeLockedException.mjs +4 -4
  374. package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +4 -4
  375. package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +4 -4
  376. package/src/exceptions/dto/InvalidMethodAcceptException.cjs +4 -4
  377. package/src/exceptions/dto/InvalidMethodAcceptException.mjs +4 -4
  378. package/src/exceptions/dto/InvalidMethodReturnException.cjs +4 -4
  379. package/src/exceptions/dto/InvalidMethodReturnException.mjs +4 -4
  380. package/src/exceptions/dto/InvalidValueException.cjs +4 -4
  381. package/src/exceptions/dto/InvalidValueException.mjs +4 -4
  382. package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
  383. package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
  384. package/src/interfaces/IConstructor.cjs +1 -1
  385. package/src/interfaces/IConstructor.mjs +1 -1
  386. package/src/interfaces/IPatRun.cjs +1 -1
  387. package/src/interfaces/IPatRun.mjs +1 -1
  388. package/src/lib/base/BaseObject.cjs +30 -30
  389. package/src/lib/base/BaseObject.mjs +30 -30
  390. package/src/lib/base/Context.cjs +17 -17
  391. package/src/lib/base/Context.mjs +17 -17
  392. package/src/lib/base/EventEmitter.cjs +2 -2
  393. package/src/lib/base/EventEmitter.mjs +2 -2
  394. package/src/lib/base/abstracts/Exception.cjs +4 -4
  395. package/src/lib/base/abstracts/Exception.mjs +4 -4
  396. package/src/lib/base/async-constructor/Append.cjs +1 -1
  397. package/src/lib/base/async-constructor/Append.mjs +1 -1
  398. package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
  399. package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
  400. package/src/lib/base/internal/ActionOptions.cjs +17 -17
  401. package/src/lib/base/internal/ActionOptions.mjs +17 -17
  402. package/src/lib/base/internal/ApplicationConfigLoader.cjs +30 -30
  403. package/src/lib/base/internal/ApplicationConfigLoader.mjs +30 -30
  404. package/src/lib/base/internal/BasicInfo.cjs +4 -4
  405. package/src/lib/base/internal/BasicInfo.mjs +4 -4
  406. package/src/lib/base/internal/CamelCase.cjs +1 -1
  407. package/src/lib/base/internal/CamelCase.mjs +1 -1
  408. package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +2 -2
  409. package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +2 -2
  410. package/src/lib/base/internal/ConstructorSymbol.cjs +2 -2
  411. package/src/lib/base/internal/ConstructorSymbol.mjs +2 -2
  412. package/src/lib/base/internal/ControllerEntrypoint.cjs +9 -9
  413. package/src/lib/base/internal/ControllerEntrypoint.mjs +9 -9
  414. package/src/lib/base/internal/DataValidator.cjs +13 -13
  415. package/src/lib/base/internal/DataValidator.mjs +13 -13
  416. package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
  417. package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
  418. package/src/lib/base/internal/FlexibleDTO.cjs +17 -17
  419. package/src/lib/base/internal/FlexibleDTO.mjs +17 -17
  420. package/src/lib/base/internal/GetActionDTOAndOptions.cjs +17 -17
  421. package/src/lib/base/internal/GetActionDTOAndOptions.mjs +17 -17
  422. package/src/lib/base/internal/IEEE754.cjs +1 -1
  423. package/src/lib/base/internal/IEEE754.mjs +1 -1
  424. package/src/lib/base/internal/MethodAssistantFunction.cjs +4 -4
  425. package/src/lib/base/internal/MethodAssistantFunction.mjs +4 -4
  426. package/src/lib/base/internal/MethodValidation.cjs +17 -17
  427. package/src/lib/base/internal/MethodValidation.mjs +17 -17
  428. package/src/lib/base/internal/ModuleConfigLoader.cjs +30 -30
  429. package/src/lib/base/internal/ModuleConfigLoader.mjs +30 -30
  430. package/src/lib/base/internal/ObjectConfiguration.cjs +17 -17
  431. package/src/lib/base/internal/ObjectConfiguration.mjs +17 -17
  432. package/src/lib/base/internal/ObjectContainer.cjs +2 -2
  433. package/src/lib/base/internal/ObjectContainer.mjs +2 -2
  434. package/src/lib/base/internal/ObjectInjection.cjs +2 -2
  435. package/src/lib/base/internal/ObjectInjection.mjs +2 -2
  436. package/src/lib/base/internal/ObjectLifetime.cjs +5 -5
  437. package/src/lib/base/internal/ObjectLifetime.mjs +5 -5
  438. package/src/lib/base/internal/ObjectSchemaValidation.cjs +17 -17
  439. package/src/lib/base/internal/ObjectSchemaValidation.mjs +17 -17
  440. package/src/lib/base/internal/ObjectType.cjs +30 -30
  441. package/src/lib/base/internal/ObjectType.mjs +30 -30
  442. package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
  443. package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
  444. package/src/lib/base/internal/PatternManager.cjs +3 -3
  445. package/src/lib/base/internal/PatternManager.mjs +3 -3
  446. package/src/lib/base/internal/StringifyPattern.cjs +4 -4
  447. package/src/lib/base/internal/StringifyPattern.mjs +4 -4
  448. package/src/lib/base/internal/ThrowWarning.cjs +1 -1
  449. package/src/lib/base/internal/ThrowWarning.mjs +1 -1
  450. package/src/lib/context/CLIContext.cjs +17 -17
  451. package/src/lib/context/CLIContext.mjs +17 -17
  452. package/src/lib/context/HTTPContext.cjs +17 -17
  453. package/src/lib/context/HTTPContext.mjs +17 -17
  454. package/src/lib/context/ServiceContext.cjs +17 -17
  455. package/src/lib/context/ServiceContext.mjs +17 -17
  456. package/src/lib/core/Alias.cjs +4 -4
  457. package/src/lib/core/Alias.mjs +4 -4
  458. package/src/lib/core/Application.cjs +110 -110
  459. package/src/lib/core/Application.mjs +110 -110
  460. package/src/lib/core/Component.cjs +31 -31
  461. package/src/lib/core/Component.mjs +31 -31
  462. package/src/lib/core/Container.cjs +30 -30
  463. package/src/lib/core/Container.mjs +30 -30
  464. package/src/lib/core/DTO.cjs +17 -17
  465. package/src/lib/core/DTO.mjs +17 -17
  466. package/src/lib/core/Module.cjs +33 -33
  467. package/src/lib/core/Module.mjs +33 -33
  468. package/src/lib/core/Provider.cjs +30 -30
  469. package/src/lib/core/Provider.mjs +30 -30
  470. package/src/lib/core/Time.cjs +5 -5
  471. package/src/lib/core/Time.mjs +5 -5
  472. package/src/lib/helpers/ArrayToSet.cjs +1 -1
  473. package/src/lib/helpers/ArrayToSet.mjs +1 -1
  474. package/src/lib/helpers/As.cjs +1 -1
  475. package/src/lib/helpers/As.mjs +1 -1
  476. package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
  477. package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
  478. package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
  479. package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
  480. package/src/lib/helpers/Delay.cjs +1 -1
  481. package/src/lib/helpers/Delay.mjs +1 -1
  482. package/src/lib/helpers/DevNull.cjs +1 -1
  483. package/src/lib/helpers/DevNull.mjs +1 -1
  484. package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
  485. package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
  486. package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
  487. package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
  488. package/src/lib/helpers/Glob.cjs +4 -4
  489. package/src/lib/helpers/Glob.mjs +4 -4
  490. package/src/lib/helpers/GraceExit.cjs +1 -1
  491. package/src/lib/helpers/GraceExit.mjs +1 -1
  492. package/src/lib/helpers/HexToIEEE754.cjs +1 -1
  493. package/src/lib/helpers/HexToIEEE754.mjs +1 -1
  494. package/src/lib/helpers/HexToSigned.cjs +1 -1
  495. package/src/lib/helpers/HexToSigned.mjs +1 -1
  496. package/src/lib/helpers/HexToUnsigned.cjs +1 -1
  497. package/src/lib/helpers/HexToUnsigned.mjs +1 -1
  498. package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
  499. package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
  500. package/src/lib/helpers/IPToolkit.cjs +1 -1
  501. package/src/lib/helpers/IPToolkit.mjs +1 -1
  502. package/src/lib/helpers/IsAbortError.cjs +1 -1
  503. package/src/lib/helpers/IsAbortError.mjs +1 -1
  504. package/src/lib/helpers/IsEmptyObject.cjs +1 -1
  505. package/src/lib/helpers/IsEmptyObject.mjs +1 -1
  506. package/src/lib/helpers/IsExists.cjs +1 -1
  507. package/src/lib/helpers/IsExists.mjs +1 -1
  508. package/src/lib/helpers/IsGlobString.cjs +3 -3
  509. package/src/lib/helpers/IsGlobString.mjs +3 -3
  510. package/src/lib/helpers/IsHtml.cjs +2 -2
  511. package/src/lib/helpers/IsHtml.mjs +2 -2
  512. package/src/lib/helpers/IsNativeFunction.cjs +1 -1
  513. package/src/lib/helpers/IsNativeFunction.mjs +1 -1
  514. package/src/lib/helpers/IsPath.cjs +1 -1
  515. package/src/lib/helpers/IsPath.mjs +1 -1
  516. package/src/lib/helpers/IsPromise.cjs +1 -1
  517. package/src/lib/helpers/IsPromise.mjs +1 -1
  518. package/src/lib/helpers/IsPromiseLike.cjs +1 -1
  519. package/src/lib/helpers/IsPromiseLike.mjs +1 -1
  520. package/src/lib/helpers/IsSymbol.cjs +17 -17
  521. package/src/lib/helpers/IsSymbol.mjs +17 -17
  522. package/src/lib/helpers/IsXML.cjs +3 -3
  523. package/src/lib/helpers/IsXML.mjs +3 -3
  524. package/src/lib/helpers/MD5.cjs +3 -3
  525. package/src/lib/helpers/MD5.mjs +3 -3
  526. package/src/lib/helpers/MergeArray.cjs +1 -1
  527. package/src/lib/helpers/MergeArray.mjs +1 -1
  528. package/src/lib/helpers/MergeMap.cjs +1 -1
  529. package/src/lib/helpers/MergeMap.mjs +1 -1
  530. package/src/lib/helpers/MergeSet.cjs +1 -1
  531. package/src/lib/helpers/MergeSet.mjs +1 -1
  532. package/src/lib/helpers/NoCase.cjs +1 -1
  533. package/src/lib/helpers/NoCase.mjs +1 -1
  534. package/src/lib/helpers/NonceStr.cjs +3 -3
  535. package/src/lib/helpers/NonceStr.mjs +3 -3
  536. package/src/lib/helpers/ObjectConstructor.cjs +1 -1
  537. package/src/lib/helpers/ObjectConstructor.mjs +1 -1
  538. package/src/lib/helpers/ObjectHash.cjs +2 -2
  539. package/src/lib/helpers/ObjectHash.mjs +2 -2
  540. package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
  541. package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
  542. package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
  543. package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
  544. package/src/lib/helpers/ObjectPath.cjs +1 -1
  545. package/src/lib/helpers/ObjectPath.mjs +1 -1
  546. package/src/lib/helpers/ObjectPrototype.cjs +1 -1
  547. package/src/lib/helpers/ObjectPrototype.mjs +1 -1
  548. package/src/lib/helpers/ObjectToMap.cjs +1 -1
  549. package/src/lib/helpers/ObjectToMap.mjs +1 -1
  550. package/src/lib/helpers/Paginator.cjs +1 -1
  551. package/src/lib/helpers/Paginator.mjs +1 -1
  552. package/src/lib/helpers/RandomString.cjs +3 -3
  553. package/src/lib/helpers/RandomString.mjs +3 -3
  554. package/src/lib/helpers/SHA1.cjs +3 -3
  555. package/src/lib/helpers/SHA1.mjs +3 -3
  556. package/src/lib/helpers/SHA256.cjs +3 -3
  557. package/src/lib/helpers/SHA256.mjs +3 -3
  558. package/src/lib/helpers/SetToArray.cjs +1 -1
  559. package/src/lib/helpers/SetToArray.mjs +1 -1
  560. package/src/lib/helpers/SignedToHex.cjs +1 -1
  561. package/src/lib/helpers/SignedToHex.mjs +1 -1
  562. package/src/lib/helpers/SortArray.cjs +4 -4
  563. package/src/lib/helpers/SortArray.mjs +4 -4
  564. package/src/lib/helpers/SortKeys.cjs +1 -1
  565. package/src/lib/helpers/SortKeys.mjs +1 -1
  566. package/src/lib/helpers/SortObject.cjs +1 -1
  567. package/src/lib/helpers/SortObject.mjs +1 -1
  568. package/src/lib/helpers/Statistics.cjs +2 -2
  569. package/src/lib/helpers/Statistics.mjs +2 -2
  570. package/src/lib/helpers/Templating.cjs +1 -1
  571. package/src/lib/helpers/Templating.mjs +1 -1
  572. package/src/lib/helpers/URLBuilder.cjs +4 -4
  573. package/src/lib/helpers/URLBuilder.mjs +4 -4
  574. package/src/lib/helpers/UUID.cjs +2 -2
  575. package/src/lib/helpers/UUID.mjs +2 -2
  576. package/src/lib/helpers/UniqueArray.cjs +1 -1
  577. package/src/lib/helpers/UniqueArray.mjs +1 -1
  578. package/src/lib/helpers/UnsignedToHex.cjs +1 -1
  579. package/src/lib/helpers/UnsignedToHex.mjs +1 -1
  580. package/src/lib/ioc/DependencyInjectionContainer.cjs +30 -30
  581. package/src/lib/ioc/DependencyInjectionContainer.mjs +30 -30
  582. package/src/lib/ioc/Errors.cjs +17 -17
  583. package/src/lib/ioc/Errors.mjs +17 -17
  584. package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
  585. package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
  586. package/src/lib/ioc/InjectionMode.cjs +1 -1
  587. package/src/lib/ioc/InjectionMode.mjs +1 -1
  588. package/src/lib/ioc/Lifetime.cjs +1 -1
  589. package/src/lib/ioc/Lifetime.mjs +1 -1
  590. package/src/lib/ioc/ListModules.cjs +29 -29
  591. package/src/lib/ioc/ListModules.mjs +29 -29
  592. package/src/lib/ioc/LoadModules.cjs +17 -17
  593. package/src/lib/ioc/LoadModules.mjs +17 -17
  594. package/src/lib/ioc/ParamParser.cjs +1 -1
  595. package/src/lib/ioc/ParamParser.mjs +1 -1
  596. package/src/lib/ioc/Resolvers.cjs +17 -17
  597. package/src/lib/ioc/Resolvers.mjs +17 -17
  598. package/src/lib/ioc/Utils.cjs +17 -17
  599. package/src/lib/ioc/Utils.mjs +17 -17
  600. package/src/lib/validation/VLD.cjs +6 -6
  601. package/src/lib/validation/VLD.mjs +6 -6
  602. package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
  603. package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
  604. package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
  605. package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
  606. package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
  607. package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
  608. package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
  609. package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
  610. package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
  611. package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
  612. package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
  613. package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
  614. package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
  615. package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
  616. package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
  617. package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
  618. package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
  619. package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
  620. package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
  621. package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
  622. package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
  623. package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
  624. package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
  625. package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
  626. package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
  627. package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
  628. package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
  629. package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
  630. package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
  631. package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
  632. package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
  633. package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
  634. package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
  635. package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
  636. package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
  637. package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
  638. package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
  639. package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
  640. package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
  641. package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
  642. package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
  643. package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
  644. package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
  645. package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
  646. package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
  647. package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
  648. package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
  649. package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
  650. package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
  651. package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
  652. package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
  653. package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
  654. package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
  655. package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
  656. package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
  657. package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
  658. package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
  659. package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
  660. package/src/lib/validation/interfaces/Reference.cjs +1 -1
  661. package/src/lib/validation/interfaces/Reference.mjs +1 -1
  662. package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
  663. package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
  664. package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
  665. package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
  666. package/src/lib/validation/interfaces/State.cjs +1 -1
  667. package/src/lib/validation/interfaces/State.mjs +1 -1
  668. package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
  669. package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
  670. package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
  671. package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
  672. package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
  673. package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
  674. package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
  675. package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
  676. package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
  677. package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
  678. package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
  679. package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
  680. package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
  681. package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
  682. package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
  683. package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
  684. package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
  685. package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
  686. package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
  687. package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
  688. package/src/lib/validation/types/CustomValidator.cjs +1 -1
  689. package/src/lib/validation/types/CustomValidator.mjs +1 -1
  690. package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
  691. package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
  692. package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
  693. package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
  694. package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
  695. package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
  696. package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
  697. package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
  698. package/src/lib/validation/types/IsUnion.cjs +1 -1
  699. package/src/lib/validation/types/IsUnion.mjs +1 -1
  700. package/src/lib/validation/types/LanguageMessages.cjs +1 -1
  701. package/src/lib/validation/types/LanguageMessages.mjs +1 -1
  702. package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
  703. package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
  704. package/src/lib/validation/types/NullableType.cjs +1 -1
  705. package/src/lib/validation/types/NullableType.mjs +1 -1
  706. package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
  707. package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
  708. package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
  709. package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
  710. package/src/lib/validation/types/PresenceMode.cjs +1 -1
  711. package/src/lib/validation/types/PresenceMode.mjs +1 -1
  712. package/src/lib/validation/types/Primitives.cjs +1 -1
  713. package/src/lib/validation/types/Primitives.mjs +1 -1
  714. package/src/lib/validation/types/Schema.cjs +1 -1
  715. package/src/lib/validation/types/Schema.mjs +1 -1
  716. package/src/lib/validation/types/SchemaFunction.cjs +1 -1
  717. package/src/lib/validation/types/SchemaFunction.mjs +1 -1
  718. package/src/lib/validation/types/SchemaLike.cjs +1 -1
  719. package/src/lib/validation/types/SchemaLike.mjs +1 -1
  720. package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
  721. package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
  722. package/src/lib/validation/types/SchemaMap.cjs +1 -1
  723. package/src/lib/validation/types/SchemaMap.mjs +1 -1
  724. package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
  725. package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
  726. package/src/lib/validation/types/Types.cjs +1 -1
  727. package/src/lib/validation/types/Types.mjs +1 -1
  728. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
  729. package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
  730. package/src/options/ApplicationOptions.cjs +30 -30
  731. package/src/options/ApplicationOptions.mjs +30 -30
  732. package/src/options/LoadAnonymousObjectOptions.cjs +30 -30
  733. package/src/options/LoadAnonymousObjectOptions.mjs +30 -30
  734. package/src/options/LoadNamedObjectOptions.cjs +30 -30
  735. package/src/options/LoadNamedObjectOptions.mjs +30 -30
  736. package/src/options/LoadObjectOptions.cjs +30 -30
  737. package/src/options/LoadObjectOptions.mjs +30 -30
  738. package/src/options/ModuleLoadObjectsOptions.cjs +30 -30
  739. package/src/options/ModuleLoadObjectsOptions.mjs +30 -30
  740. package/src/options/ModuleOptions.cjs +30 -30
  741. package/src/options/ModuleOptions.mjs +30 -30
  742. package/src/options/OverridableNamedObjectOptions.cjs +30 -30
  743. package/src/options/OverridableNamedObjectOptions.mjs +30 -30
  744. package/src/options/OverridableObjectOptions.cjs +30 -30
  745. package/src/options/OverridableObjectOptions.mjs +30 -30
  746. package/src/providers/Database.cjs +73 -73
  747. package/src/providers/Database.mjs +73 -73
  748. package/src/providers/PasswordHash.cjs +31 -31
  749. package/src/providers/PasswordHash.mjs +31 -31
  750. package/src/providers/migration/GenerateMigration.cjs +110 -110
  751. package/src/providers/migration/GenerateMigration.mjs +110 -110
  752. package/src/types/ActionPattern.cjs +1 -1
  753. package/src/types/ActionPattern.mjs +1 -1
  754. package/src/types/ClassDecorator.cjs +1 -1
  755. package/src/types/ClassDecorator.mjs +1 -1
  756. package/src/types/ComponentOptions.cjs +1 -1
  757. package/src/types/ComponentOptions.mjs +1 -1
  758. package/src/types/JSONSchema.cjs +1 -1
  759. package/src/types/JSONSchema.mjs +1 -1
  760. package/src/types/MethodDecorator.cjs +1 -1
  761. package/src/types/MethodDecorator.mjs +1 -1
  762. package/src/types/ModuleOptions.cjs +1 -1
  763. package/src/types/ModuleOptions.mjs +1 -1
  764. package/src/types/ObjectOptions.cjs +1 -1
  765. package/src/types/ObjectOptions.mjs +1 -1
  766. package/src/types/ParameterDecorator.cjs +1 -1
  767. package/src/types/ParameterDecorator.mjs +1 -1
  768. package/src/types/PropertyDecorator.cjs +1 -1
  769. package/src/types/PropertyDecorator.mjs +1 -1
  770. package/src/types/ProviderOptions.cjs +1 -1
  771. package/src/types/ProviderOptions.mjs +1 -1
  772. package/vendor/Package.internal.1.cjs +1 -1
  773. package/vendor/Package.internal.1.mjs +1 -1
  774. package/vendor/Package.internal.10.cjs +1 -1
  775. package/vendor/Package.internal.10.mjs +1 -1
  776. package/vendor/Package.internal.100.cjs +67 -2
  777. package/vendor/Package.internal.100.mjs +67 -2
  778. package/vendor/Package.internal.101.cjs +113 -102
  779. package/vendor/Package.internal.101.mjs +116 -93
  780. package/vendor/Package.internal.102.cjs +9 -81
  781. package/vendor/Package.internal.102.mjs +5 -81
  782. package/vendor/Package.internal.103.cjs +2 -56
  783. package/vendor/Package.internal.103.mjs +2 -52
  784. package/vendor/Package.internal.104.cjs +2 -18
  785. package/vendor/Package.internal.104.mjs +2 -18
  786. package/vendor/Package.internal.105.cjs +103 -87
  787. package/vendor/Package.internal.105.mjs +90 -88
  788. package/vendor/Package.internal.106.cjs +72 -97
  789. package/vendor/Package.internal.106.mjs +70 -99
  790. package/vendor/Package.internal.107.cjs +38 -2156
  791. package/vendor/Package.internal.107.mjs +37 -2159
  792. package/vendor/Package.internal.108.cjs +13 -2459
  793. package/vendor/Package.internal.108.mjs +13 -2429
  794. package/vendor/Package.internal.109.cjs +70 -1280
  795. package/vendor/Package.internal.109.mjs +73 -1269
  796. package/vendor/Package.internal.11.cjs +98 -100
  797. package/vendor/Package.internal.11.mjs +134 -134
  798. package/vendor/Package.internal.110.cjs +108 -28
  799. package/vendor/Package.internal.110.mjs +109 -27
  800. package/vendor/Package.internal.111.cjs +2169 -13
  801. package/vendor/Package.internal.111.mjs +2169 -13
  802. package/vendor/Package.internal.112.cjs +2456 -11
  803. package/vendor/Package.internal.112.mjs +2425 -12
  804. package/vendor/Package.internal.113.cjs +1289 -35
  805. package/vendor/Package.internal.113.mjs +1277 -37
  806. package/vendor/Package.internal.114.cjs +23 -131
  807. package/vendor/Package.internal.114.mjs +26 -136
  808. package/vendor/Package.internal.115.cjs +19 -1
  809. package/vendor/Package.internal.115.mjs +18 -1
  810. package/vendor/Package.internal.116.cjs +18 -3
  811. package/vendor/Package.internal.116.mjs +20 -3
  812. package/vendor/Package.internal.117.cjs +50 -2
  813. package/vendor/Package.internal.117.mjs +52 -2
  814. package/vendor/Package.internal.118.cjs +139 -2
  815. package/vendor/Package.internal.118.mjs +141 -2
  816. package/vendor/Package.internal.119.cjs +1 -3
  817. package/vendor/Package.internal.119.mjs +1 -2
  818. package/vendor/Package.internal.12.cjs +12469 -270
  819. package/vendor/Package.internal.12.mjs +12452 -271
  820. package/vendor/Package.internal.120.cjs +3 -46
  821. package/vendor/Package.internal.120.mjs +3 -46
  822. package/vendor/Package.internal.121.cjs +2 -12
  823. package/vendor/Package.internal.121.mjs +2 -14
  824. package/vendor/Package.internal.122.cjs +2 -10
  825. package/vendor/Package.internal.122.mjs +2 -12
  826. package/vendor/Package.internal.123.cjs +2 -18
  827. package/vendor/Package.internal.123.mjs +2 -18
  828. package/vendor/Package.internal.124.cjs +35 -104
  829. package/vendor/Package.internal.124.mjs +35 -104
  830. package/vendor/Package.internal.125.cjs +12 -16
  831. package/vendor/Package.internal.125.mjs +13 -15
  832. package/vendor/Package.internal.126.cjs +10 -17
  833. package/vendor/Package.internal.126.mjs +12 -17
  834. package/vendor/Package.internal.127.cjs +12 -8868
  835. package/vendor/Package.internal.127.mjs +12 -8868
  836. package/vendor/Package.internal.128.cjs +88 -869
  837. package/vendor/Package.internal.128.mjs +98 -879
  838. package/vendor/Package.internal.129.cjs +10 -6761
  839. package/vendor/Package.internal.129.mjs +10 -6769
  840. package/vendor/Package.internal.13.cjs +267 -701
  841. package/vendor/Package.internal.13.mjs +269 -703
  842. package/vendor/Package.internal.130.cjs +12 -466
  843. package/vendor/Package.internal.130.mjs +12 -454
  844. package/vendor/Package.internal.131.cjs +8819 -560
  845. package/vendor/Package.internal.131.mjs +8821 -558
  846. package/vendor/Package.internal.132.cjs +878 -76
  847. package/vendor/Package.internal.132.mjs +881 -73
  848. package/vendor/Package.internal.133.cjs +6767 -2
  849. package/vendor/Package.internal.133.mjs +6775 -2
  850. package/vendor/Package.internal.134.cjs +446 -3726
  851. package/vendor/Package.internal.134.mjs +440 -3732
  852. package/vendor/Package.internal.135.cjs +577 -521
  853. package/vendor/Package.internal.135.mjs +573 -521
  854. package/vendor/Package.internal.136.cjs +95 -2
  855. package/vendor/Package.internal.136.mjs +89 -2
  856. package/vendor/Package.internal.137.cjs +2 -2
  857. package/vendor/Package.internal.137.mjs +2 -2
  858. package/vendor/Package.internal.138.cjs +3751 -2
  859. package/vendor/Package.internal.138.mjs +3751 -2
  860. package/vendor/Package.internal.139.cjs +559 -2
  861. package/vendor/Package.internal.139.mjs +559 -2
  862. package/vendor/Package.internal.14.cjs +710 -905
  863. package/vendor/Package.internal.14.mjs +711 -894
  864. package/vendor/Package.internal.140.cjs +2 -2
  865. package/vendor/Package.internal.140.mjs +2 -2
  866. package/vendor/Package.internal.141.cjs +2 -2
  867. package/vendor/Package.internal.141.mjs +2 -2
  868. package/vendor/Package.internal.142.cjs +2 -2
  869. package/vendor/Package.internal.142.mjs +2 -2
  870. package/vendor/Package.internal.143.cjs +2 -2
  871. package/vendor/Package.internal.143.mjs +2 -2
  872. package/vendor/Package.internal.144.cjs +2 -2
  873. package/vendor/Package.internal.144.mjs +2 -2
  874. package/vendor/Package.internal.145.cjs +2 -2
  875. package/vendor/Package.internal.145.mjs +2 -2
  876. package/vendor/Package.internal.146.cjs +2 -2
  877. package/vendor/Package.internal.146.mjs +2 -2
  878. package/vendor/Package.internal.147.cjs +2 -406
  879. package/vendor/Package.internal.147.mjs +2 -400
  880. package/vendor/Package.internal.148.cjs +2 -102
  881. package/vendor/Package.internal.148.mjs +2 -104
  882. package/vendor/Package.internal.149.cjs +2 -25
  883. package/vendor/Package.internal.149.mjs +2 -27
  884. package/vendor/Package.internal.15.cjs +70 -40
  885. package/vendor/Package.internal.15.mjs +72 -44
  886. package/vendor/Package.internal.150.cjs +2 -2
  887. package/vendor/Package.internal.150.mjs +2 -2
  888. package/vendor/Package.internal.151.cjs +406 -2
  889. package/vendor/Package.internal.151.mjs +400 -2
  890. package/vendor/Package.internal.152.cjs +78 -697
  891. package/vendor/Package.internal.152.mjs +79 -698
  892. package/vendor/Package.internal.153.cjs +19 -1540
  893. package/vendor/Package.internal.153.mjs +21 -1534
  894. package/vendor/Package.internal.154.cjs +2 -362
  895. package/vendor/Package.internal.154.mjs +2 -364
  896. package/vendor/Package.internal.155.cjs +2 -105
  897. package/vendor/Package.internal.155.mjs +2 -107
  898. package/vendor/Package.internal.156.cjs +680 -593
  899. package/vendor/Package.internal.156.mjs +683 -582
  900. package/vendor/Package.internal.157.cjs +1444 -439
  901. package/vendor/Package.internal.157.mjs +1439 -432
  902. package/vendor/Package.internal.158.cjs +325 -566
  903. package/vendor/Package.internal.158.mjs +326 -567
  904. package/vendor/Package.internal.159.cjs +94 -126
  905. package/vendor/Package.internal.159.mjs +95 -119
  906. package/vendor/Package.internal.16.cjs +950 -232
  907. package/vendor/Package.internal.16.mjs +942 -236
  908. package/vendor/Package.internal.160.cjs +602 -85
  909. package/vendor/Package.internal.160.mjs +594 -83
  910. package/vendor/Package.internal.161.cjs +459 -1140
  911. package/vendor/Package.internal.161.mjs +460 -1141
  912. package/vendor/Package.internal.162.cjs +588 -73
  913. package/vendor/Package.internal.162.mjs +588 -81
  914. package/vendor/Package.internal.163.cjs +137 -2
  915. package/vendor/Package.internal.163.mjs +131 -2
  916. package/vendor/Package.internal.164.cjs +117 -2
  917. package/vendor/Package.internal.164.mjs +111 -2
  918. package/vendor/Package.internal.165.cjs +1204 -35
  919. package/vendor/Package.internal.165.mjs +1195 -36
  920. package/vendor/Package.internal.166.cjs +86 -6
  921. package/vendor/Package.internal.166.mjs +95 -7
  922. package/vendor/Package.internal.167.cjs +2 -10
  923. package/vendor/Package.internal.167.mjs +2 -6
  924. package/vendor/Package.internal.168.cjs +2 -163
  925. package/vendor/Package.internal.168.mjs +2 -163
  926. package/vendor/Package.internal.169.cjs +46 -14
  927. package/vendor/Package.internal.169.mjs +49 -9
  928. package/vendor/Package.internal.17.cjs +41 -429
  929. package/vendor/Package.internal.17.mjs +42 -430
  930. package/vendor/Package.internal.170.cjs +6 -247
  931. package/vendor/Package.internal.170.mjs +7 -246
  932. package/vendor/Package.internal.171.cjs +7 -944
  933. package/vendor/Package.internal.171.mjs +4 -945
  934. package/vendor/Package.internal.172.cjs +157 -19
  935. package/vendor/Package.internal.172.mjs +160 -24
  936. package/vendor/Package.internal.173.cjs +10 -67
  937. package/vendor/Package.internal.173.mjs +10 -67
  938. package/vendor/Package.internal.174.cjs +229 -633
  939. package/vendor/Package.internal.174.mjs +227 -631
  940. package/vendor/Package.internal.175.cjs +927 -55
  941. package/vendor/Package.internal.175.mjs +926 -54
  942. package/vendor/Package.internal.176.cjs +19 -1133
  943. package/vendor/Package.internal.176.mjs +25 -1031
  944. package/vendor/Package.internal.177.cjs +69 -59
  945. package/vendor/Package.internal.177.mjs +63 -59
  946. package/vendor/Package.internal.178.cjs +624 -81
  947. package/vendor/Package.internal.178.mjs +624 -81
  948. package/vendor/Package.internal.179.cjs +60 -85
  949. package/vendor/Package.internal.179.mjs +60 -85
  950. package/vendor/Package.internal.18.cjs +233 -528
  951. package/vendor/Package.internal.18.mjs +234 -523
  952. package/vendor/Package.internal.180.cjs +940 -45249
  953. package/vendor/Package.internal.180.mjs +869 -45268
  954. package/vendor/Package.internal.181.cjs +66 -4
  955. package/vendor/Package.internal.181.mjs +66 -4
  956. package/vendor/Package.internal.182.cjs +103 -21
  957. package/vendor/Package.internal.182.mjs +103 -21
  958. package/vendor/Package.internal.183.cjs +84 -299
  959. package/vendor/Package.internal.183.mjs +84 -299
  960. package/vendor/Package.internal.184.cjs +45316 -809
  961. package/vendor/Package.internal.184.mjs +45270 -789
  962. package/vendor/Package.internal.185.cjs +4 -1086
  963. package/vendor/Package.internal.185.mjs +4 -1088
  964. package/vendor/Package.internal.186.cjs +21 -156
  965. package/vendor/Package.internal.186.mjs +20 -157
  966. package/vendor/Package.internal.187.cjs +310 -8
  967. package/vendor/Package.internal.187.mjs +310 -8
  968. package/vendor/Package.internal.188.cjs +936 -7
  969. package/vendor/Package.internal.188.mjs +947 -8
  970. package/vendor/Package.internal.189.cjs +1072 -31
  971. package/vendor/Package.internal.189.mjs +1074 -31
  972. package/vendor/Package.internal.19.cjs +427 -217
  973. package/vendor/Package.internal.19.mjs +433 -223
  974. package/vendor/Package.internal.190.cjs +134 -462
  975. package/vendor/Package.internal.190.mjs +135 -441
  976. package/vendor/Package.internal.191.cjs +13 -2
  977. package/vendor/Package.internal.191.mjs +13 -2
  978. package/vendor/Package.internal.192.cjs +12 -2
  979. package/vendor/Package.internal.192.mjs +12 -2
  980. package/vendor/Package.internal.193.cjs +47 -2
  981. package/vendor/Package.internal.193.mjs +47 -2
  982. package/vendor/Package.internal.194.cjs +491 -2
  983. package/vendor/Package.internal.194.mjs +471 -2
  984. package/vendor/Package.internal.195.cjs +2 -2
  985. package/vendor/Package.internal.195.mjs +2 -2
  986. package/vendor/Package.internal.196.cjs +2 -2
  987. package/vendor/Package.internal.196.mjs +2 -2
  988. package/vendor/Package.internal.197.cjs +2 -2
  989. package/vendor/Package.internal.197.mjs +2 -2
  990. package/vendor/Package.internal.198.cjs +2 -2
  991. package/vendor/Package.internal.198.mjs +2 -2
  992. package/vendor/Package.internal.199.cjs +4 -0
  993. package/vendor/Package.internal.199.mjs +2 -0
  994. package/vendor/Package.internal.2.cjs +1 -1
  995. package/vendor/Package.internal.2.mjs +1 -1
  996. package/vendor/Package.internal.20.cjs +525 -957
  997. package/vendor/Package.internal.20.mjs +521 -959
  998. package/vendor/Package.internal.200.cjs +4 -0
  999. package/vendor/Package.internal.200.mjs +2 -0
  1000. package/vendor/Package.internal.201.cjs +4 -0
  1001. package/vendor/Package.internal.201.mjs +2 -0
  1002. package/vendor/Package.internal.202.cjs +4 -0
  1003. package/vendor/Package.internal.202.mjs +2 -0
  1004. package/vendor/Package.internal.21.cjs +406 -8
  1005. package/vendor/Package.internal.21.mjs +408 -8
  1006. package/vendor/Package.internal.22.cjs +913 -123
  1007. package/vendor/Package.internal.22.mjs +909 -123
  1008. package/vendor/Package.internal.23.cjs +214 -136
  1009. package/vendor/Package.internal.23.mjs +215 -135
  1010. package/vendor/Package.internal.24.cjs +996 -5
  1011. package/vendor/Package.internal.24.mjs +998 -5
  1012. package/vendor/Package.internal.25.cjs +8 -20
  1013. package/vendor/Package.internal.25.mjs +7 -19
  1014. package/vendor/Package.internal.26.cjs +120 -473
  1015. package/vendor/Package.internal.26.mjs +120 -469
  1016. package/vendor/Package.internal.27.cjs +127 -60
  1017. package/vendor/Package.internal.27.mjs +128 -57
  1018. package/vendor/Package.internal.28.cjs +6 -2
  1019. package/vendor/Package.internal.28.mjs +6 -2
  1020. package/vendor/Package.internal.29.cjs +16 -35
  1021. package/vendor/Package.internal.29.mjs +16 -35
  1022. package/vendor/Package.internal.3.cjs +1 -1
  1023. package/vendor/Package.internal.3.mjs +1 -1
  1024. package/vendor/Package.internal.30.cjs +473 -21
  1025. package/vendor/Package.internal.30.mjs +472 -24
  1026. package/vendor/Package.internal.31.cjs +77 -9
  1027. package/vendor/Package.internal.31.mjs +73 -9
  1028. package/vendor/Package.internal.32.cjs +2 -189
  1029. package/vendor/Package.internal.32.mjs +2 -191
  1030. package/vendor/Package.internal.33.cjs +31 -53
  1031. package/vendor/Package.internal.33.mjs +32 -54
  1032. package/vendor/Package.internal.34.cjs +20 -160
  1033. package/vendor/Package.internal.34.mjs +24 -166
  1034. package/vendor/Package.internal.35.cjs +10 -2072
  1035. package/vendor/Package.internal.35.mjs +10 -2068
  1036. package/vendor/Package.internal.36.cjs +186 -517
  1037. package/vendor/Package.internal.36.mjs +189 -512
  1038. package/vendor/Package.internal.37.cjs +57 -413
  1039. package/vendor/Package.internal.37.mjs +57 -409
  1040. package/vendor/Package.internal.38.cjs +132 -2329
  1041. package/vendor/Package.internal.38.mjs +133 -2318
  1042. package/vendor/Package.internal.39.cjs +2063 -50
  1043. package/vendor/Package.internal.39.mjs +2058 -57
  1044. package/vendor/Package.internal.4.cjs +1 -1
  1045. package/vendor/Package.internal.4.mjs +1 -1
  1046. package/vendor/Package.internal.40.cjs +507 -137
  1047. package/vendor/Package.internal.40.mjs +504 -140
  1048. package/vendor/Package.internal.41.cjs +355 -573
  1049. package/vendor/Package.internal.41.mjs +353 -577
  1050. package/vendor/Package.internal.42.cjs +2315 -196
  1051. package/vendor/Package.internal.42.mjs +2307 -200
  1052. package/vendor/Package.internal.43.cjs +57 -222
  1053. package/vendor/Package.internal.43.mjs +64 -217
  1054. package/vendor/Package.internal.44.cjs +150 -2
  1055. package/vendor/Package.internal.44.mjs +150 -2
  1056. package/vendor/Package.internal.45.cjs +591 -317
  1057. package/vendor/Package.internal.45.mjs +596 -316
  1058. package/vendor/Package.internal.46.cjs +236 -31
  1059. package/vendor/Package.internal.46.mjs +238 -31
  1060. package/vendor/Package.internal.47.cjs +217 -46
  1061. package/vendor/Package.internal.47.mjs +213 -46
  1062. package/vendor/Package.internal.48.cjs +2 -23
  1063. package/vendor/Package.internal.48.mjs +2 -23
  1064. package/vendor/Package.internal.49.cjs +354 -87
  1065. package/vendor/Package.internal.49.mjs +351 -82
  1066. package/vendor/Package.internal.5.cjs +1 -1
  1067. package/vendor/Package.internal.5.mjs +1 -1
  1068. package/vendor/Package.internal.50.cjs +33 -79
  1069. package/vendor/Package.internal.50.mjs +33 -79
  1070. package/vendor/Package.internal.51.cjs +46 -81
  1071. package/vendor/Package.internal.51.mjs +45 -68
  1072. package/vendor/Package.internal.52.cjs +18 -21
  1073. package/vendor/Package.internal.52.mjs +18 -21
  1074. package/vendor/Package.internal.53.cjs +78 -335
  1075. package/vendor/Package.internal.53.mjs +73 -336
  1076. package/vendor/Package.internal.54.cjs +86 -2
  1077. package/vendor/Package.internal.54.mjs +86 -2
  1078. package/vendor/Package.internal.55.cjs +64 -172
  1079. package/vendor/Package.internal.55.mjs +58 -174
  1080. package/vendor/Package.internal.56.cjs +23 -22
  1081. package/vendor/Package.internal.56.mjs +23 -24
  1082. package/vendor/Package.internal.57.cjs +353 -2
  1083. package/vendor/Package.internal.57.mjs +353 -2
  1084. package/vendor/Package.internal.58.cjs +2 -198
  1085. package/vendor/Package.internal.58.mjs +2 -200
  1086. package/vendor/Package.internal.59.cjs +127 -3945
  1087. package/vendor/Package.internal.59.mjs +126 -3958
  1088. package/vendor/Package.internal.6.cjs +2 -2
  1089. package/vendor/Package.internal.6.mjs +2 -2
  1090. package/vendor/Package.internal.60.cjs +25 -2
  1091. package/vendor/Package.internal.60.mjs +27 -2
  1092. package/vendor/Package.internal.61.cjs +2 -319
  1093. package/vendor/Package.internal.61.mjs +2 -321
  1094. package/vendor/Package.internal.62.cjs +175 -340
  1095. package/vendor/Package.internal.62.mjs +177 -340
  1096. package/vendor/Package.internal.63.cjs +3959 -343
  1097. package/vendor/Package.internal.63.mjs +3967 -335
  1098. package/vendor/Package.internal.64.cjs +2 -125
  1099. package/vendor/Package.internal.64.mjs +2 -125
  1100. package/vendor/Package.internal.65.cjs +314 -24
  1101. package/vendor/Package.internal.65.mjs +316 -24
  1102. package/vendor/Package.internal.66.cjs +347 -69
  1103. package/vendor/Package.internal.66.mjs +350 -72
  1104. package/vendor/Package.internal.67.cjs +386 -44
  1105. package/vendor/Package.internal.67.mjs +386 -50
  1106. package/vendor/Package.internal.68.cjs +115 -22
  1107. package/vendor/Package.internal.68.mjs +114 -21
  1108. package/vendor/Package.internal.69.cjs +29 -2
  1109. package/vendor/Package.internal.69.mjs +29 -2
  1110. package/vendor/Package.internal.7.cjs +1 -1
  1111. package/vendor/Package.internal.7.mjs +1 -1
  1112. package/vendor/Package.internal.70.cjs +67 -664
  1113. package/vendor/Package.internal.70.mjs +67 -644
  1114. package/vendor/Package.internal.71.cjs +41 -13876
  1115. package/vendor/Package.internal.71.mjs +41 -13852
  1116. package/vendor/Package.internal.72.cjs +26 -29
  1117. package/vendor/Package.internal.72.mjs +27 -26
  1118. package/vendor/Package.internal.73.cjs +2 -4075
  1119. package/vendor/Package.internal.73.mjs +2 -4077
  1120. package/vendor/Package.internal.74.cjs +654 -1634
  1121. package/vendor/Package.internal.74.mjs +633 -1635
  1122. package/vendor/Package.internal.75.cjs +13834 -197
  1123. package/vendor/Package.internal.75.mjs +13810 -197
  1124. package/vendor/Package.internal.76.cjs +25 -4952
  1125. package/vendor/Package.internal.76.mjs +23 -4940
  1126. package/vendor/Package.internal.77.cjs +3975 -1137
  1127. package/vendor/Package.internal.77.mjs +3979 -1127
  1128. package/vendor/Package.internal.78.cjs +1635 -311
  1129. package/vendor/Package.internal.78.mjs +1637 -299
  1130. package/vendor/Package.internal.79.cjs +248 -23
  1131. package/vendor/Package.internal.79.mjs +251 -26
  1132. package/vendor/Package.internal.8.cjs +1 -1
  1133. package/vendor/Package.internal.8.mjs +1 -1
  1134. package/vendor/Package.internal.80.cjs +4941 -65
  1135. package/vendor/Package.internal.80.mjs +4926 -66
  1136. package/vendor/Package.internal.81.cjs +1221 -37
  1137. package/vendor/Package.internal.81.mjs +1208 -38
  1138. package/vendor/Package.internal.82.cjs +334 -9
  1139. package/vendor/Package.internal.82.mjs +322 -9
  1140. package/vendor/Package.internal.83.cjs +32 -1353
  1141. package/vendor/Package.internal.83.mjs +32 -1355
  1142. package/vendor/Package.internal.84.cjs +82 -6
  1143. package/vendor/Package.internal.84.mjs +86 -4
  1144. package/vendor/Package.internal.85.cjs +53 -2
  1145. package/vendor/Package.internal.85.mjs +55 -2
  1146. package/vendor/Package.internal.86.cjs +8 -344
  1147. package/vendor/Package.internal.86.mjs +8 -346
  1148. package/vendor/Package.internal.87.cjs +1351 -76
  1149. package/vendor/Package.internal.87.mjs +1352 -77
  1150. package/vendor/Package.internal.88.cjs +6 -1439
  1151. package/vendor/Package.internal.88.mjs +4 -1431
  1152. package/vendor/Package.internal.89.cjs +2 -142
  1153. package/vendor/Package.internal.89.mjs +2 -142
  1154. package/vendor/Package.internal.9.cjs +1 -1
  1155. package/vendor/Package.internal.9.mjs +1 -1
  1156. package/vendor/Package.internal.90.cjs +274 -1745
  1157. package/vendor/Package.internal.90.mjs +275 -1738
  1158. package/vendor/Package.internal.91.cjs +67 -117
  1159. package/vendor/Package.internal.91.mjs +69 -113
  1160. package/vendor/Package.internal.92.cjs +1388 -151
  1161. package/vendor/Package.internal.92.mjs +1377 -152
  1162. package/vendor/Package.internal.93.cjs +94 -1591
  1163. package/vendor/Package.internal.93.mjs +94 -1593
  1164. package/vendor/Package.internal.94.cjs +1802 -54
  1165. package/vendor/Package.internal.94.mjs +1799 -59
  1166. package/vendor/Package.internal.95.cjs +126 -24
  1167. package/vendor/Package.internal.95.mjs +121 -25
  1168. package/vendor/Package.internal.96.cjs +189 -50
  1169. package/vendor/Package.internal.96.mjs +194 -53
  1170. package/vendor/Package.internal.97.cjs +1611 -93
  1171. package/vendor/Package.internal.97.mjs +1615 -95
  1172. package/vendor/Package.internal.98.cjs +66 -8
  1173. package/vendor/Package.internal.98.mjs +71 -5
  1174. package/vendor/Package.internal.99.cjs +26 -2
  1175. package/vendor/Package.internal.99.mjs +28 -2
@@ -1,2354 +1,169 @@
1
- /* Build Date: Mon Nov 24 2025 17:58:53 GMT+0800 (China Standard Time) */
2
- import e from "stream";
1
+ /* Build Date: Mon Nov 24 2025 18:02:01 GMT+0800 (China Standard Time) */
2
+ import { n as r } from "./Package.internal.39.mjs";
3
3
 
4
- import { c as t } from "./Package.internal.8.mjs";
4
+ var t = r.lowlevel.crypto_hash;
5
5
 
6
- import r from "events";
6
+ var e = 0;
7
7
 
8
- import n from "buffer";
9
-
10
- import i from "util";
11
-
12
- import { r as a } from "./Package.internal.39.mjs";
13
-
14
- import { r as o } from "./Package.internal.169.mjs";
15
-
16
- import { r as f } from "./Package.internal.170.mjs";
17
-
18
- var s = {
19
- exports: {}
8
+ var n = function() {
9
+ this.S = [ new Uint32Array([ 3509652390, 2564797868, 805139163, 3491422135, 3101798381, 1780907670, 3128725573, 4046225305, 614570311, 3012652279, 134345442, 2240740374, 1667834072, 1901547113, 2757295779, 4103290238, 227898511, 1921955416, 1904987480, 2182433518, 2069144605, 3260701109, 2620446009, 720527379, 3318853667, 677414384, 3393288472, 3101374703, 2390351024, 1614419982, 1822297739, 2954791486, 3608508353, 3174124327, 2024746970, 1432378464, 3864339955, 2857741204, 1464375394, 1676153920, 1439316330, 715854006, 3033291828, 289532110, 2706671279, 2087905683, 3018724369, 1668267050, 732546397, 1947742710, 3462151702, 2609353502, 2950085171, 1814351708, 2050118529, 680887927, 999245976, 1800124847, 3300911131, 1713906067, 1641548236, 4213287313, 1216130144, 1575780402, 4018429277, 3917837745, 3693486850, 3949271944, 596196993, 3549867205, 258830323, 2213823033, 772490370, 2760122372, 1774776394, 2652871518, 566650946, 4142492826, 1728879713, 2882767088, 1783734482, 3629395816, 2517608232, 2874225571, 1861159788, 326777828, 3124490320, 2130389656, 2716951837, 967770486, 1724537150, 2185432712, 2364442137, 1164943284, 2105845187, 998989502, 3765401048, 2244026483, 1075463327, 1455516326, 1322494562, 910128902, 469688178, 1117454909, 936433444, 3490320968, 3675253459, 1240580251, 122909385, 2157517691, 634681816, 4142456567, 3825094682, 3061402683, 2540495037, 79693498, 3249098678, 1084186820, 1583128258, 426386531, 1761308591, 1047286709, 322548459, 995290223, 1845252383, 2603652396, 3431023940, 2942221577, 3202600964, 3727903485, 1712269319, 422464435, 3234572375, 1170764815, 3523960633, 3117677531, 1434042557, 442511882, 3600875718, 1076654713, 1738483198, 4213154764, 2393238008, 3677496056, 1014306527, 4251020053, 793779912, 2902807211, 842905082, 4246964064, 1395751752, 1040244610, 2656851899, 3396308128, 445077038, 3742853595, 3577915638, 679411651, 2892444358, 2354009459, 1767581616, 3150600392, 3791627101, 3102740896, 284835224, 4246832056, 1258075500, 768725851, 2589189241, 3069724005, 3532540348, 1274779536, 3789419226, 2764799539, 1660621633, 3471099624, 4011903706, 913787905, 3497959166, 737222580, 2514213453, 2928710040, 3937242737, 1804850592, 3499020752, 2949064160, 2386320175, 2390070455, 2415321851, 4061277028, 2290661394, 2416832540, 1336762016, 1754252060, 3520065937, 3014181293, 791618072, 3188594551, 3933548030, 2332172193, 3852520463, 3043980520, 413987798, 3465142937, 3030929376, 4245938359, 2093235073, 3534596313, 375366246, 2157278981, 2479649556, 555357303, 3870105701, 2008414854, 3344188149, 4221384143, 3956125452, 2067696032, 3594591187, 2921233993, 2428461, 544322398, 577241275, 1471733935, 610547355, 4027169054, 1432588573, 1507829418, 2025931657, 3646575487, 545086370, 48609733, 2200306550, 1653985193, 298326376, 1316178497, 3007786442, 2064951626, 458293330, 2589141269, 3591329599, 3164325604, 727753846, 2179363840, 146436021, 1461446943, 4069977195, 705550613, 3059967265, 3887724982, 4281599278, 3313849956, 1404054877, 2845806497, 146425753, 1854211946 ]), new Uint32Array([ 1266315497, 3048417604, 3681880366, 3289982499, 290971e4, 1235738493, 2632868024, 2414719590, 3970600049, 1771706367, 1449415276, 3266420449, 422970021, 1963543593, 2690192192, 3826793022, 1062508698, 1531092325, 1804592342, 2583117782, 2714934279, 4024971509, 1294809318, 4028980673, 1289560198, 2221992742, 1669523910, 35572830, 157838143, 1052438473, 1016535060, 1802137761, 1753167236, 1386275462, 3080475397, 2857371447, 1040679964, 2145300060, 2390574316, 1461121720, 2956646967, 4031777805, 4028374788, 33600511, 2920084762, 1018524850, 629373528, 3691585981, 3515945977, 2091462646, 2486323059, 586499841, 988145025, 935516892, 3367335476, 2599673255, 2839830854, 265290510, 3972581182, 2759138881, 3795373465, 1005194799, 847297441, 406762289, 1314163512, 1332590856, 1866599683, 4127851711, 750260880, 613907577, 1450815602, 3165620655, 3734664991, 3650291728, 3012275730, 3704569646, 1427272223, 778793252, 1343938022, 2676280711, 2052605720, 1946737175, 3164576444, 3914038668, 3967478842, 3682934266, 1661551462, 3294938066, 4011595847, 840292616, 3712170807, 616741398, 312560963, 711312465, 1351876610, 322626781, 1910503582, 271666773, 2175563734, 1594956187, 70604529, 3617834859, 1007753275, 1495573769, 4069517037, 2549218298, 2663038764, 504708206, 2263041392, 3941167025, 2249088522, 1514023603, 1998579484, 1312622330, 694541497, 2582060303, 2151582166, 1382467621, 776784248, 2618340202, 3323268794, 2497899128, 2784771155, 503983604, 4076293799, 907881277, 423175695, 432175456, 1378068232, 4145222326, 3954048622, 3938656102, 3820766613, 2793130115, 2977904593, 26017576, 3274890735, 3194772133, 1700274565, 1756076034, 4006520079, 3677328699, 720338349, 1533947780, 354530856, 688349552, 3973924725, 1637815568, 332179504, 3949051286, 53804574, 2852348879, 3044236432, 1282449977, 3583942155, 3416972820, 4006381244, 1617046695, 2628476075, 3002303598, 1686838959, 431878346, 2686675385, 1700445008, 1080580658, 1009431731, 832498133, 3223435511, 2605976345, 2271191193, 2516031870, 1648197032, 4164389018, 2548247927, 300782431, 375919233, 238389289, 3353747414, 2531188641, 2019080857, 1475708069, 455242339, 2609103871, 448939670, 3451063019, 1395535956, 2413381860, 1841049896, 1491858159, 885456874, 4264095073, 4001119347, 1565136089, 3898914787, 1108368660, 540939232, 1173283510, 2745871338, 3681308437, 4207628240, 3343053890, 4016749493, 1699691293, 1103962373, 3625875870, 2256883143, 3830138730, 1031889488, 3479347698, 1535977030, 4236805024, 3251091107, 2132092099, 1774941330, 1199868427, 1452454533, 157007616, 2904115357, 342012276, 595725824, 1480756522, 206960106, 497939518, 591360097, 863170706, 2375253569, 3596610801, 1814182875, 2094937945, 3421402208, 1082520231, 3463918190, 2785509508, 435703966, 3908032597, 1641649973, 2842273706, 3305899714, 1510255612, 2148256476, 2655287854, 3276092548, 4258621189, 236887753, 3681803219, 274041037, 1734335097, 3815195456, 3317970021, 1899903192, 1026095262, 4050517792, 356393447, 2410691914, 3873677099, 3682840055 ]), new Uint32Array([ 3913112168, 2491498743, 4132185628, 2489919796, 1091903735, 1979897079, 3170134830, 3567386728, 3557303409, 857797738, 1136121015, 1342202287, 507115054, 2535736646, 337727348, 3213592640, 1301675037, 2528481711, 1895095763, 1721773893, 3216771564, 62756741, 2142006736, 835421444, 2531993523, 1442658625, 3659876326, 2882144922, 676362277, 1392781812, 170690266, 3921047035, 1759253602, 3611846912, 1745797284, 664899054, 1329594018, 3901205900, 3045908486, 2062866102, 2865634940, 3543621612, 3464012697, 1080764994, 553557557, 3656615353, 3996768171, 991055499, 499776247, 1265440854, 648242737, 3940784050, 980351604, 3713745714, 1749149687, 3396870395, 4211799374, 3640570775, 1161844396, 3125318951, 1431517754, 545492359, 4268468663, 3499529547, 1437099964, 2702547544, 3433638243, 2581715763, 2787789398, 1060185593, 1593081372, 2418618748, 4260947970, 69676912, 2159744348, 86519011, 2512459080, 3838209314, 1220612927, 3339683548, 133810670, 1090789135, 1078426020, 1569222167, 845107691, 3583754449, 4072456591, 1091646820, 628848692, 1613405280, 3757631651, 526609435, 236106946, 48312990, 2942717905, 3402727701, 1797494240, 859738849, 992217954, 4005476642, 2243076622, 3870952857, 3732016268, 765654824, 3490871365, 2511836413, 1685915746, 3888969200, 1414112111, 2273134842, 3281911079, 4080962846, 172450625, 2569994100, 980381355, 4109958455, 2819808352, 2716589560, 2568741196, 3681446669, 3329971472, 1835478071, 660984891, 3704678404, 4045999559, 3422617507, 3040415634, 1762651403, 1719377915, 3470491036, 2693910283, 3642056355, 3138596744, 1364962596, 2073328063, 1983633131, 926494387, 3423689081, 2150032023, 4096667949, 1749200295, 3328846651, 309677260, 2016342300, 1779581495, 3079819751, 111262694, 1274766160, 443224088, 298511866, 1025883608, 3806446537, 1145181785, 168956806, 3641502830, 3584813610, 1689216846, 3666258015, 3200248200, 1692713982, 2646376535, 4042768518, 1618508792, 1610833997, 3523052358, 4130873264, 2001055236, 3610705100, 2202168115, 4028541809, 2961195399, 1006657119, 2006996926, 3186142756, 1430667929, 3210227297, 1314452623, 4074634658, 4101304120, 2273951170, 1399257539, 3367210612, 3027628629, 1190975929, 2062231137, 2333990788, 2221543033, 2438960610, 1181637006, 548689776, 2362791313, 3372408396, 3104550113, 3145860560, 296247880, 1970579870, 3078560182, 3769228297, 1714227617, 3291629107, 3898220290, 166772364, 1251581989, 493813264, 448347421, 195405023, 2709975567, 677966185, 3703036547, 1463355134, 2715995803, 1338867538, 1343315457, 2802222074, 2684532164, 233230375, 2599980071, 2000651841, 3277868038, 1638401717, 4028070440, 3237316320, 6314154, 819756386, 300326615, 590932579, 1405279636, 3267499572, 3150704214, 2428286686, 3959192993, 3461946742, 1862657033, 1266418056, 963775037, 2089974820, 2263052895, 1917689273, 448879540, 3550394620, 3981727096, 150775221, 3627908307, 1303187396, 508620638, 2975983352, 2726630617, 1817252668, 1876281319, 1457606340, 908771278, 3720792119, 3617206836, 2455994898, 1729034894, 1080033504 ]), new Uint32Array([ 976866871, 3556439503, 2881648439, 1522871579, 1555064734, 1336096578, 3548522304, 2579274686, 3574697629, 3205460757, 3593280638, 3338716283, 3079412587, 564236357, 2993598910, 1781952180, 1464380207, 3163844217, 3332601554, 1699332808, 1393555694, 1183702653, 3581086237, 1288719814, 691649499, 2847557200, 2895455976, 3193889540, 2717570544, 1781354906, 1676643554, 2592534050, 3230253752, 1126444790, 2770207658, 2633158820, 2210423226, 2615765581, 2414155088, 3127139286, 673620729, 2805611233, 1269405062, 4015350505, 3341807571, 4149409754, 1057255273, 2012875353, 2162469141, 2276492801, 2601117357, 993977747, 3918593370, 2654263191, 753973209, 36408145, 2530585658, 25011837, 3520020182, 2088578344, 530523599, 2918365339, 1524020338, 1518925132, 3760827505, 3759777254, 1202760957, 3985898139, 3906192525, 674977740, 4174734889, 2031300136, 2019492241, 3983892565, 4153806404, 3822280332, 352677332, 2297720250, 60907813, 90501309, 3286998549, 1016092578, 2535922412, 2839152426, 457141659, 509813237, 4120667899, 652014361, 1966332200, 2975202805, 55981186, 2327461051, 676427537, 3255491064, 2882294119, 3433927263, 1307055953, 942726286, 933058658, 2468411793, 3933900994, 4215176142, 1361170020, 2001714738, 2830558078, 3274259782, 1222529897, 1679025792, 2729314320, 3714953764, 1770335741, 151462246, 3013232138, 1682292957, 1483529935, 471910574, 1539241949, 458788160, 3436315007, 1807016891, 3718408830, 978976581, 1043663428, 3165965781, 1927990952, 4200891579, 2372276910, 3208408903, 3533431907, 1412390302, 2931980059, 4132332400, 1947078029, 3881505623, 4168226417, 2941484381, 1077988104, 1320477388, 886195818, 18198404, 3786409e3, 2509781533, 112762804, 3463356488, 1866414978, 891333506, 18488651, 661792760, 1628790961, 3885187036, 3141171499, 876946877, 2693282273, 1372485963, 791857591, 2686433993, 3759982718, 3167212022, 3472953795, 2716379847, 445679433, 3561995674, 3504004811, 3574258232, 54117162, 3331405415, 2381918588, 3769707343, 4154350007, 1140177722, 4074052095, 668550556, 3214352940, 367459370, 261225585, 2610173221, 4209349473, 3468074219, 3265815641, 314222801, 3066103646, 3808782860, 282218597, 3406013506, 3773591054, 379116347, 1285071038, 846784868, 2669647154, 3771962079, 3550491691, 2305946142, 453669953, 1268987020, 3317592352, 3279303384, 3744833421, 2610507566, 3859509063, 266596637, 3847019092, 517658769, 3462560207, 3443424879, 370717030, 4247526661, 2224018117, 4143653529, 4112773975, 2788324899, 2477274417, 1456262402, 2901442914, 1517677493, 1846949527, 2295493580, 3734397586, 2176403920, 1280348187, 1908823572, 3871786941, 846861322, 1172426758, 3287448474, 3383383037, 1655181056, 3139813346, 901632758, 1897031941, 2986607138, 3066810236, 3447102507, 1393639104, 373351379, 950779232, 625454576, 3124240540, 4148612726, 2007998917, 544563296, 2244738638, 2330496472, 2058025392, 1291430526, 424198748, 50039436, 29584100, 3605783033, 2429876329, 2791104160, 1057563949, 3255363231, 3075367218, 3463963227, 1469046755, 985887462 ]) ];
10
+ this.P = new Uint32Array([ 608135816, 2242054355, 320440878, 57701188, 2752067618, 698298832, 137296536, 3964562569, 1160258022, 953160567, 3193202383, 887688300, 3232508343, 3380367581, 1065670069, 3041331479, 2450970073, 2306472731 ]);
20
11
  };
21
12
 
22
- var l;
23
-
24
- var u;
25
-
26
- function d() {
27
- if (u) return l;
28
- u = 1;
29
- l = e;
30
- return l;
31
- }
32
-
33
- var c;
34
-
35
- var h;
36
-
37
- function p() {
38
- if (h) return c;
39
- h = 1;
40
- function e(e, t) {
41
- var r = Object.keys(e);
42
- if (Object.getOwnPropertySymbols) {
43
- var n = Object.getOwnPropertySymbols(e);
44
- t && (n = n.filter(function(t) {
45
- return Object.getOwnPropertyDescriptor(e, t).enumerable;
46
- })), r.push.apply(r, n);
47
- }
48
- return r;
49
- }
50
- function t(t) {
51
- for (var n = 1; n < arguments.length; n++) {
52
- var i = null != arguments[n] ? arguments[n] : {};
53
- n % 2 ? e(Object(i), true).forEach(function(e) {
54
- r(t, e, i[e]);
55
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(i)) : e(Object(i)).forEach(function(e) {
56
- Object.defineProperty(t, e, Object.getOwnPropertyDescriptor(i, e));
57
- });
58
- }
59
- return t;
60
- }
61
- function r(e, t, r) {
62
- t = s(t);
63
- if (t in e) {
64
- Object.defineProperty(e, t, {
65
- value: r,
66
- enumerable: true,
67
- configurable: true,
68
- writable: true
69
- });
70
- } else {
71
- e[t] = r;
72
- }
73
- return e;
74
- }
75
- function a(e, t) {
76
- if (!(e instanceof t)) {
77
- throw new TypeError("Cannot call a class as a function");
78
- }
79
- }
80
- function o(e, t) {
81
- for (var r = 0; r < t.length; r++) {
82
- var n = t[r];
83
- n.enumerable = n.enumerable || false;
84
- n.configurable = true;
85
- if ("value" in n) n.writable = true;
86
- Object.defineProperty(e, s(n.key), n);
87
- }
88
- }
89
- function f(e, t, r) {
90
- if (t) o(e.prototype, t);
91
- Object.defineProperty(e, "prototype", {
92
- writable: false
93
- });
94
- return e;
95
- }
96
- function s(e) {
97
- var t = l(e, "string");
98
- return typeof t === "symbol" ? t : String(t);
99
- }
100
- function l(e, t) {
101
- if (typeof e !== "object" || e === null) return e;
102
- var r = e[Symbol.toPrimitive];
103
- if (r !== undefined) {
104
- var n = r.call(e, t);
105
- if (typeof n !== "object") return n;
106
- throw new TypeError("@@toPrimitive must return a primitive value.");
107
- }
108
- return String(e);
109
- }
110
- var u = n, d = u.Buffer;
111
- var p = i, b = p.inspect;
112
- var v = b && b.custom || "inspect";
113
- function g(e, t, r) {
114
- d.prototype.copy.call(e, t, r);
115
- }
116
- c = function() {
117
- function e() {
118
- a(this, e);
119
- this.head = null;
120
- this.tail = null;
121
- this.length = 0;
122
- }
123
- f(e, [ {
124
- key: "push",
125
- value: function e(t) {
126
- var r = {
127
- data: t,
128
- next: null
129
- };
130
- if (this.length > 0) this.tail.next = r; else this.head = r;
131
- this.tail = r;
132
- ++this.length;
133
- }
134
- }, {
135
- key: "unshift",
136
- value: function e(t) {
137
- var r = {
138
- data: t,
139
- next: this.head
140
- };
141
- if (this.length === 0) this.tail = r;
142
- this.head = r;
143
- ++this.length;
144
- }
145
- }, {
146
- key: "shift",
147
- value: function e() {
148
- if (this.length === 0) return;
149
- var t = this.head.data;
150
- if (this.length === 1) this.head = this.tail = null; else this.head = this.head.next;
151
- --this.length;
152
- return t;
153
- }
154
- }, {
155
- key: "clear",
156
- value: function e() {
157
- this.head = this.tail = null;
158
- this.length = 0;
159
- }
160
- }, {
161
- key: "join",
162
- value: function e(t) {
163
- if (this.length === 0) return "";
164
- var r = this.head;
165
- var n = "" + r.data;
166
- while (r = r.next) n += t + r.data;
167
- return n;
168
- }
169
- }, {
170
- key: "concat",
171
- value: function e(t) {
172
- if (this.length === 0) return d.alloc(0);
173
- var r = d.allocUnsafe(t >>> 0);
174
- var n = this.head;
175
- var i = 0;
176
- while (n) {
177
- g(n.data, r, i);
178
- i += n.data.length;
179
- n = n.next;
180
- }
181
- return r;
182
- }
183
- }, {
184
- key: "consume",
185
- value: function e(t, r) {
186
- var n;
187
- if (t < this.head.data.length) {
188
- n = this.head.data.slice(0, t);
189
- this.head.data = this.head.data.slice(t);
190
- } else if (t === this.head.data.length) {
191
- n = this.shift();
192
- } else {
193
- n = r ? this._getString(t) : this._getBuffer(t);
194
- }
195
- return n;
196
- }
197
- }, {
198
- key: "first",
199
- value: function e() {
200
- return this.head.data;
201
- }
202
- }, {
203
- key: "_getString",
204
- value: function e(t) {
205
- var r = this.head;
206
- var n = 1;
207
- var i = r.data;
208
- t -= i.length;
209
- while (r = r.next) {
210
- var a = r.data;
211
- var o = t > a.length ? a.length : t;
212
- if (o === a.length) i += a; else i += a.slice(0, t);
213
- t -= o;
214
- if (t === 0) {
215
- if (o === a.length) {
216
- ++n;
217
- if (r.next) this.head = r.next; else this.head = this.tail = null;
218
- } else {
219
- this.head = r;
220
- r.data = a.slice(o);
221
- }
222
- break;
223
- }
224
- ++n;
225
- }
226
- this.length -= n;
227
- return i;
228
- }
229
- }, {
230
- key: "_getBuffer",
231
- value: function e(t) {
232
- var r = d.allocUnsafe(t);
233
- var n = this.head;
234
- var i = 1;
235
- n.data.copy(r);
236
- t -= n.data.length;
237
- while (n = n.next) {
238
- var a = n.data;
239
- var o = t > a.length ? a.length : t;
240
- a.copy(r, r.length - t, 0, o);
241
- t -= o;
242
- if (t === 0) {
243
- if (o === a.length) {
244
- ++i;
245
- if (n.next) this.head = n.next; else this.head = this.tail = null;
246
- } else {
247
- this.head = n;
248
- n.data = a.slice(o);
249
- }
250
- break;
251
- }
252
- ++i;
253
- }
254
- this.length -= i;
255
- return r;
256
- }
257
- }, {
258
- key: v,
259
- value: function e(r, n) {
260
- return b(this, t(t({}, n), {}, {
261
- depth: 0,
262
- customInspect: false
263
- }));
264
- }
265
- } ]);
266
- return e;
267
- }();
268
- return c;
269
- }
270
-
271
- var b;
272
-
273
- var v;
274
-
275
- function g() {
276
- if (v) return b;
277
- v = 1;
278
- function e(e, n) {
279
- var a = this;
280
- var o = this._readableState && this._readableState.destroyed;
281
- var f = this._writableState && this._writableState.destroyed;
282
- if (o || f) {
283
- if (n) {
284
- n(e);
285
- } else if (e) {
286
- if (!this._writableState) {
287
- process.nextTick(i, this, e);
288
- } else if (!this._writableState.errorEmitted) {
289
- this._writableState.errorEmitted = true;
290
- process.nextTick(i, this, e);
291
- }
292
- }
293
- return this;
294
- }
295
- if (this._readableState) {
296
- this._readableState.destroyed = true;
297
- }
298
- if (this._writableState) {
299
- this._writableState.destroyed = true;
300
- }
301
- this._destroy(e || null, function(e) {
302
- if (!n && e) {
303
- if (!a._writableState) {
304
- process.nextTick(t, a, e);
305
- } else if (!a._writableState.errorEmitted) {
306
- a._writableState.errorEmitted = true;
307
- process.nextTick(t, a, e);
308
- } else {
309
- process.nextTick(r, a);
310
- }
311
- } else if (n) {
312
- process.nextTick(r, a);
313
- n(e);
314
- } else {
315
- process.nextTick(r, a);
316
- }
317
- });
318
- return this;
319
- }
320
- function t(e, t) {
321
- i(e, t);
322
- r(e);
323
- }
324
- function r(e) {
325
- if (e._writableState && !e._writableState.emitClose) return;
326
- if (e._readableState && !e._readableState.emitClose) return;
327
- e.emit("close");
328
- }
329
- function n() {
330
- if (this._readableState) {
331
- this._readableState.destroyed = false;
332
- this._readableState.reading = false;
333
- this._readableState.ended = false;
334
- this._readableState.endEmitted = false;
335
- }
336
- if (this._writableState) {
337
- this._writableState.destroyed = false;
338
- this._writableState.ended = false;
339
- this._writableState.ending = false;
340
- this._writableState.finalCalled = false;
341
- this._writableState.prefinished = false;
342
- this._writableState.finished = false;
343
- this._writableState.errorEmitted = false;
344
- }
345
- }
346
- function i(e, t) {
347
- e.emit("error", t);
348
- }
349
- function a(e, t) {
350
- var r = e._readableState;
351
- var n = e._writableState;
352
- if (r && r.autoDestroy || n && n.autoDestroy) e.destroy(t); else e.emit("error", t);
353
- }
354
- b = {
355
- destroy: e,
356
- undestroy: n,
357
- errorOrDestroy: a
358
- };
359
- return b;
360
- }
361
-
362
- var y = {};
363
-
364
- var w;
365
-
366
- function _() {
367
- if (w) return y;
368
- w = 1;
369
- const e = {};
370
- function t(t, r, n) {
371
- if (!n) {
372
- n = Error;
373
- }
374
- function i(e, t, n) {
375
- if (typeof r === "string") {
376
- return r;
377
- } else {
378
- return r(e, t, n);
379
- }
380
- }
381
- class NodeError extends n {
382
- constructor(e, t, r) {
383
- super(i(e, t, r));
384
- }
385
- }
386
- NodeError.prototype.name = n.name;
387
- NodeError.prototype.code = t;
388
- e[t] = NodeError;
389
- }
390
- function r(e, t) {
391
- if (Array.isArray(e)) {
392
- const r = e.length;
393
- e = e.map(e => String(e));
394
- if (r > 2) {
395
- return `one of ${t} ${e.slice(0, r - 1).join(", ")}, or ` + e[r - 1];
396
- } else if (r === 2) {
397
- return `one of ${t} ${e[0]} or ${e[1]}`;
398
- } else {
399
- return `of ${t} ${e[0]}`;
400
- }
401
- } else {
402
- return `of ${t} ${String(e)}`;
403
- }
404
- }
405
- function n(e, t, r) {
406
- return e.substr(0, t.length) === t;
407
- }
408
- function i(e, t, r) {
409
- if (r === undefined || r > e.length) {
410
- r = e.length;
411
- }
412
- return e.substring(r - t.length, r) === t;
413
- }
414
- function a(e, t, r) {
415
- if (typeof r !== "number") {
416
- r = 0;
417
- }
418
- if (r + t.length > e.length) {
419
- return false;
420
- } else {
421
- return e.indexOf(t, r) !== -1;
422
- }
423
- }
424
- t("ERR_INVALID_OPT_VALUE", function(e, t) {
425
- return 'The value "' + t + '" is invalid for option "' + e + '"';
426
- }, TypeError);
427
- t("ERR_INVALID_ARG_TYPE", function(e, t, o) {
428
- let f;
429
- if (typeof t === "string" && n(t, "not ")) {
430
- f = "must not be";
431
- t = t.replace(/^not /, "");
432
- } else {
433
- f = "must be";
434
- }
435
- let s;
436
- if (i(e, " argument")) {
437
- s = `The ${e} ${f} ${r(t, "type")}`;
438
- } else {
439
- const n = a(e, ".") ? "property" : "argument";
440
- s = `The "${e}" ${n} ${f} ${r(t, "type")}`;
441
- }
442
- s += `. Received type ${typeof o}`;
443
- return s;
444
- }, TypeError);
445
- t("ERR_STREAM_PUSH_AFTER_EOF", "stream.push() after EOF");
446
- t("ERR_METHOD_NOT_IMPLEMENTED", function(e) {
447
- return "The " + e + " method is not implemented";
448
- });
449
- t("ERR_STREAM_PREMATURE_CLOSE", "Premature close");
450
- t("ERR_STREAM_DESTROYED", function(e) {
451
- return "Cannot call " + e + " after a stream was destroyed";
452
- });
453
- t("ERR_MULTIPLE_CALLBACK", "Callback called multiple times");
454
- t("ERR_STREAM_CANNOT_PIPE", "Cannot pipe, not readable");
455
- t("ERR_STREAM_WRITE_AFTER_END", "write after end");
456
- t("ERR_STREAM_NULL_VALUES", "May not write null values to stream", TypeError);
457
- t("ERR_UNKNOWN_ENCODING", function(e) {
458
- return "Unknown encoding: " + e;
459
- }, TypeError);
460
- t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT", "stream.unshift() after end event");
461
- y.codes = e;
462
- return y;
13
+ function i(r, t, e) {
14
+ return (r[0][t[e + 3]] + r[1][t[e + 2]] ^ r[2][t[e + 1]]) + r[3][t[e]];
463
15
  }
464
16
 
465
- var m;
466
-
467
- var S;
468
-
469
- function R() {
470
- if (S) return m;
471
- S = 1;
472
- var e = _().codes.ERR_INVALID_OPT_VALUE;
473
- function t(e, t, r) {
474
- return e.highWaterMark != null ? e.highWaterMark : t ? e[r] : null;
475
- }
476
- function r(r, n, i, a) {
477
- var o = t(n, a, i);
478
- if (o != null) {
479
- if (!(isFinite(o) && Math.floor(o) === o) || o < 0) {
480
- var f = a ? i : "highWaterMark";
481
- throw new e(f, o);
482
- }
483
- return Math.floor(o);
484
- }
485
- return r.objectMode ? 16 : 16 * 1024;
486
- }
487
- m = {
488
- getHighWaterMark: r
489
- };
490
- return m;
491
- }
492
-
493
- var E;
494
-
495
- var k;
496
-
497
- function T() {
498
- if (k) return E;
499
- k = 1;
500
- E = C;
501
- function e(e) {
502
- var t = this;
503
- this.next = null;
504
- this.entry = null;
505
- this.finish = function() {
506
- X(t, e);
507
- };
508
- }
509
- var r;
510
- C.WritableState = D;
511
- var i = {
512
- deprecate: o()
513
- };
514
- var f = d();
515
- var s = n.Buffer;
516
- var l = (typeof t !== "undefined" ? t : typeof window !== "undefined" ? window : typeof self !== "undefined" ? self : {}).Uint8Array || function() {};
517
- function u(e) {
518
- return s.from(e);
17
+ n.prototype.encipher = function(r, t) {
18
+ if (t === undefined) {
19
+ t = new Uint8Array(r.buffer);
20
+ if (r.byteOffset !== 0) t = t.subarray(r.byteOffset);
519
21
  }
520
- function c(e) {
521
- return s.isBuffer(e) || e instanceof l;
22
+ r[0] ^= this.P[0];
23
+ for (var e = 1; e < 16; e += 2) {
24
+ r[1] ^= i(this.S, t, 0) ^ this.P[e];
25
+ r[0] ^= i(this.S, t, 4) ^ this.P[e + 1];
522
26
  }
523
- var h = g();
524
- var p = R(), b = p.getHighWaterMark;
525
- var v = _().codes, y = v.ERR_INVALID_ARG_TYPE, w = v.ERR_METHOD_NOT_IMPLEMENTED, m = v.ERR_MULTIPLE_CALLBACK, S = v.ERR_STREAM_CANNOT_PIPE, T = v.ERR_STREAM_DESTROYED, M = v.ERR_STREAM_NULL_VALUES, O = v.ERR_STREAM_WRITE_AFTER_END, P = v.ERR_UNKNOWN_ENCODING;
526
- var L = h.errorOrDestroy;
527
- a()(C, f);
528
- function A() {}
529
- function D(t, n, i) {
530
- r = r || j();
531
- t = t || {};
532
- if (typeof i !== "boolean") i = n instanceof r;
533
- this.objectMode = !!t.objectMode;
534
- if (i) this.objectMode = this.objectMode || !!t.writableObjectMode;
535
- this.highWaterMark = b(this, t, "writableHighWaterMark", i);
536
- this.finalCalled = false;
537
- this.needDrain = false;
538
- this.ending = false;
539
- this.ended = false;
540
- this.finished = false;
541
- this.destroyed = false;
542
- var a = t.decodeStrings === false;
543
- this.decodeStrings = !a;
544
- this.defaultEncoding = t.defaultEncoding || "utf8";
545
- this.length = 0;
546
- this.writing = false;
547
- this.corked = 0;
548
- this.sync = true;
549
- this.bufferProcessing = false;
550
- this.onwrite = function(e) {
551
- H(n, e);
552
- };
553
- this.writecb = null;
554
- this.writelen = 0;
555
- this.bufferedRequest = null;
556
- this.lastBufferedRequest = null;
557
- this.pendingcb = 0;
558
- this.prefinished = false;
559
- this.errorEmitted = false;
560
- this.emitClose = t.emitClose !== false;
561
- this.autoDestroy = !!t.autoDestroy;
562
- this.bufferedRequestCount = 0;
563
- this.corkedRequestsFree = new e(this);
564
- }
565
- D.prototype.getBuffer = function e() {
566
- var t = this.bufferedRequest;
567
- var r = [];
568
- while (t) {
569
- r.push(t);
570
- t = t.next;
571
- }
572
- return r;
573
- };
574
- (function() {
575
- try {
576
- Object.defineProperty(D.prototype, "buffer", {
577
- get: i.deprecate(function e() {
578
- return this.getBuffer();
579
- }, "_writableState.buffer is deprecated. Use _writableState.getBuffer " + "instead.", "DEP0003")
580
- });
581
- } catch (e) {}
582
- })();
583
- var x;
584
- if (typeof Symbol === "function" && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === "function") {
585
- x = Function.prototype[Symbol.hasInstance];
586
- Object.defineProperty(C, Symbol.hasInstance, {
587
- value: function e(t) {
588
- if (x.call(this, t)) return true;
589
- if (this !== C) return false;
590
- return t && t._writableState instanceof D;
591
- }
592
- });
593
- } else {
594
- x = function e(t) {
595
- return t instanceof this;
596
- };
597
- }
598
- function C(e) {
599
- r = r || j();
600
- var t = this instanceof r;
601
- if (!t && !x.call(C, this)) return new C(e);
602
- this._writableState = new D(e, this, t);
603
- this.writable = true;
604
- if (e) {
605
- if (typeof e.write === "function") this._write = e.write;
606
- if (typeof e.writev === "function") this._writev = e.writev;
607
- if (typeof e.destroy === "function") this._destroy = e.destroy;
608
- if (typeof e.final === "function") this._final = e.final;
609
- }
610
- f.call(this);
611
- }
612
- C.prototype.pipe = function() {
613
- L(this, new S);
614
- };
615
- function N(e, t) {
616
- var r = new O;
617
- L(e, r);
618
- process.nextTick(t, r);
619
- }
620
- function I(e, t, r, n) {
621
- var i;
622
- if (r === null) {
623
- i = new M;
624
- } else if (typeof r !== "string" && !t.objectMode) {
625
- i = new y("chunk", [ "string", "Buffer" ], r);
626
- }
627
- if (i) {
628
- L(e, i);
629
- process.nextTick(n, i);
630
- return false;
631
- }
632
- return true;
633
- }
634
- C.prototype.write = function(e, t, r) {
635
- var n = this._writableState;
636
- var i = false;
637
- var a = !n.objectMode && c(e);
638
- if (a && !s.isBuffer(e)) {
639
- e = u(e);
640
- }
641
- if (typeof t === "function") {
642
- r = t;
643
- t = null;
644
- }
645
- if (a) t = "buffer"; else if (!t) t = n.defaultEncoding;
646
- if (typeof r !== "function") r = A;
647
- if (n.ending) N(this, r); else if (a || I(this, n, e, r)) {
648
- n.pendingcb++;
649
- i = B(this, n, a, e, t, r);
650
- }
651
- return i;
652
- };
653
- C.prototype.cork = function() {
654
- this._writableState.corked++;
655
- };
656
- C.prototype.uncork = function() {
657
- var e = this._writableState;
658
- if (e.corked) {
659
- e.corked--;
660
- if (!e.writing && !e.corked && !e.bufferProcessing && e.bufferedRequest) G(this, e);
661
- }
662
- };
663
- C.prototype.setDefaultEncoding = function e(t) {
664
- if (typeof t === "string") t = t.toLowerCase();
665
- if (!([ "hex", "utf8", "utf-8", "ascii", "binary", "base64", "ucs2", "ucs-2", "utf16le", "utf-16le", "raw" ].indexOf((t + "").toLowerCase()) > -1)) throw new P(t);
666
- this._writableState.defaultEncoding = t;
667
- return this;
668
- };
669
- Object.defineProperty(C.prototype, "writableBuffer", {
670
- enumerable: false,
671
- get: function e() {
672
- return this._writableState && this._writableState.getBuffer();
673
- }
674
- });
675
- function W(e, t, r) {
676
- if (!e.objectMode && e.decodeStrings !== false && typeof t === "string") {
677
- t = s.from(t, r);
678
- }
679
- return t;
680
- }
681
- Object.defineProperty(C.prototype, "writableHighWaterMark", {
682
- enumerable: false,
683
- get: function e() {
684
- return this._writableState.highWaterMark;
685
- }
686
- });
687
- function B(e, t, r, n, i, a) {
688
- if (!r) {
689
- var o = W(t, n, i);
690
- if (n !== o) {
691
- r = true;
692
- i = "buffer";
693
- n = o;
694
- }
695
- }
696
- var f = t.objectMode ? 1 : n.length;
697
- t.length += f;
698
- var s = t.length < t.highWaterMark;
699
- if (!s) t.needDrain = true;
700
- if (t.writing || t.corked) {
701
- var l = t.lastBufferedRequest;
702
- t.lastBufferedRequest = {
703
- chunk: n,
704
- encoding: i,
705
- isBuf: r,
706
- callback: a,
707
- next: null
708
- };
709
- if (l) {
710
- l.next = t.lastBufferedRequest;
711
- } else {
712
- t.bufferedRequest = t.lastBufferedRequest;
713
- }
714
- t.bufferedRequestCount += 1;
715
- } else {
716
- q(e, t, false, f, n, i, a);
717
- }
718
- return s;
719
- }
720
- function q(e, t, r, n, i, a, o) {
721
- t.writelen = n;
722
- t.writecb = o;
723
- t.writing = true;
724
- t.sync = true;
725
- if (t.destroyed) t.onwrite(new T("write")); else if (r) e._writev(i, t.onwrite); else e._write(i, a, t.onwrite);
726
- t.sync = false;
727
- }
728
- function U(e, t, r, n, i) {
729
- --t.pendingcb;
730
- if (r) {
731
- process.nextTick(i, n);
732
- process.nextTick(J, e, t);
733
- e._writableState.errorEmitted = true;
734
- L(e, n);
735
- } else {
736
- i(n);
737
- e._writableState.errorEmitted = true;
738
- L(e, n);
739
- J(e, t);
740
- }
741
- }
742
- function F(e) {
743
- e.writing = false;
744
- e.writecb = null;
745
- e.length -= e.writelen;
746
- e.writelen = 0;
747
- }
748
- function H(e, t) {
749
- var r = e._writableState;
750
- var n = r.sync;
751
- var i = r.writecb;
752
- if (typeof i !== "function") throw new m;
753
- F(r);
754
- if (t) U(e, r, n, t, i); else {
755
- var a = Y(r) || e.destroyed;
756
- if (!a && !r.corked && !r.bufferProcessing && r.bufferedRequest) {
757
- G(e, r);
758
- }
759
- if (n) {
760
- process.nextTick($, e, r, a, i);
761
- } else {
762
- $(e, r, a, i);
763
- }
764
- }
765
- }
766
- function $(e, t, r, n) {
767
- if (!r) V(e, t);
768
- t.pendingcb--;
769
- n();
770
- J(e, t);
771
- }
772
- function V(e, t) {
773
- if (t.length === 0 && t.needDrain) {
774
- t.needDrain = false;
775
- e.emit("drain");
776
- }
777
- }
778
- function G(t, r) {
779
- r.bufferProcessing = true;
780
- var n = r.bufferedRequest;
781
- if (t._writev && n && n.next) {
782
- var i = r.bufferedRequestCount;
783
- var a = new Array(i);
784
- var o = r.corkedRequestsFree;
785
- o.entry = n;
786
- var f = 0;
787
- var s = true;
788
- while (n) {
789
- a[f] = n;
790
- if (!n.isBuf) s = false;
791
- n = n.next;
792
- f += 1;
793
- }
794
- a.allBuffers = s;
795
- q(t, r, true, r.length, a, "", o.finish);
796
- r.pendingcb++;
797
- r.lastBufferedRequest = null;
798
- if (o.next) {
799
- r.corkedRequestsFree = o.next;
800
- o.next = null;
801
- } else {
802
- r.corkedRequestsFree = new e(r);
803
- }
804
- r.bufferedRequestCount = 0;
805
- } else {
806
- while (n) {
807
- var l = n.chunk;
808
- var u = n.encoding;
809
- var d = n.callback;
810
- var c = r.objectMode ? 1 : l.length;
811
- q(t, r, false, c, l, u, d);
812
- n = n.next;
813
- r.bufferedRequestCount--;
814
- if (r.writing) {
815
- break;
816
- }
817
- }
818
- if (n === null) r.lastBufferedRequest = null;
819
- }
820
- r.bufferedRequest = n;
821
- r.bufferProcessing = false;
822
- }
823
- C.prototype._write = function(e, t, r) {
824
- r(new w("_write()"));
825
- };
826
- C.prototype._writev = null;
827
- C.prototype.end = function(e, t, r) {
828
- var n = this._writableState;
829
- if (typeof e === "function") {
830
- r = e;
831
- e = null;
832
- t = null;
833
- } else if (typeof t === "function") {
834
- r = t;
835
- t = null;
836
- }
837
- if (e !== null && e !== undefined) this.write(e, t);
838
- if (n.corked) {
839
- n.corked = 1;
840
- this.uncork();
841
- }
842
- if (!n.ending) Q(this, n, r);
843
- return this;
844
- };
845
- Object.defineProperty(C.prototype, "writableLength", {
846
- enumerable: false,
847
- get: function e() {
848
- return this._writableState.length;
849
- }
850
- });
851
- function Y(e) {
852
- return e.ending && e.length === 0 && e.bufferedRequest === null && !e.finished && !e.writing;
853
- }
854
- function K(e, t) {
855
- e._final(function(r) {
856
- t.pendingcb--;
857
- if (r) {
858
- L(e, r);
859
- }
860
- t.prefinished = true;
861
- e.emit("prefinish");
862
- J(e, t);
863
- });
864
- }
865
- function z(e, t) {
866
- if (!t.prefinished && !t.finalCalled) {
867
- if (typeof e._final === "function" && !t.destroyed) {
868
- t.pendingcb++;
869
- t.finalCalled = true;
870
- process.nextTick(K, e, t);
871
- } else {
872
- t.prefinished = true;
873
- e.emit("prefinish");
874
- }
875
- }
876
- }
877
- function J(e, t) {
878
- var r = Y(t);
879
- if (r) {
880
- z(e, t);
881
- if (t.pendingcb === 0) {
882
- t.finished = true;
883
- e.emit("finish");
884
- if (t.autoDestroy) {
885
- var n = e._readableState;
886
- if (!n || n.autoDestroy && n.endEmitted) {
887
- e.destroy();
888
- }
889
- }
890
- }
891
- }
892
- return r;
893
- }
894
- function Q(e, t, r) {
895
- t.ending = true;
896
- J(e, t);
897
- if (r) {
898
- if (t.finished) process.nextTick(r); else e.once("finish", r);
899
- }
900
- t.ended = true;
901
- e.writable = false;
902
- }
903
- function X(e, t, r) {
904
- var n = e.entry;
905
- e.entry = null;
906
- while (n) {
907
- var i = n.callback;
908
- t.pendingcb--;
909
- i(r);
910
- n = n.next;
911
- }
912
- t.corkedRequestsFree.next = e;
913
- }
914
- Object.defineProperty(C.prototype, "destroyed", {
915
- enumerable: false,
916
- get: function e() {
917
- if (this._writableState === undefined) {
918
- return false;
919
- }
920
- return this._writableState.destroyed;
921
- },
922
- set: function e(t) {
923
- if (!this._writableState) {
924
- return;
925
- }
926
- this._writableState.destroyed = t;
927
- }
928
- });
929
- C.prototype.destroy = h.destroy;
930
- C.prototype._undestroy = h.undestroy;
931
- C.prototype._destroy = function(e, t) {
932
- t(e);
933
- };
934
- return E;
935
- }
936
-
937
- var M;
938
-
939
- var O;
940
-
941
- function j() {
942
- if (O) return M;
943
- O = 1;
944
- var e = Object.keys || function(e) {
945
- var t = [];
946
- for (var r in e) t.push(r);
947
- return t;
948
- };
949
- M = f;
950
- var t = U();
951
- var r = T();
952
- a()(f, t);
953
- {
954
- var n = e(r.prototype);
955
- for (var i = 0; i < n.length; i++) {
956
- var o = n[i];
957
- if (!f.prototype[o]) f.prototype[o] = r.prototype[o];
958
- }
959
- }
960
- function f(e) {
961
- if (!(this instanceof f)) return new f(e);
962
- t.call(this, e);
963
- r.call(this, e);
964
- this.allowHalfOpen = true;
965
- if (e) {
966
- if (e.readable === false) this.readable = false;
967
- if (e.writable === false) this.writable = false;
968
- if (e.allowHalfOpen === false) {
969
- this.allowHalfOpen = false;
970
- this.once("end", s);
971
- }
972
- }
973
- }
974
- Object.defineProperty(f.prototype, "writableHighWaterMark", {
975
- enumerable: false,
976
- get: function e() {
977
- return this._writableState.highWaterMark;
978
- }
979
- });
980
- Object.defineProperty(f.prototype, "writableBuffer", {
981
- enumerable: false,
982
- get: function e() {
983
- return this._writableState && this._writableState.getBuffer();
984
- }
985
- });
986
- Object.defineProperty(f.prototype, "writableLength", {
987
- enumerable: false,
988
- get: function e() {
989
- return this._writableState.length;
990
- }
991
- });
992
- function s() {
993
- if (this._writableState.ended) return;
994
- process.nextTick(l, this);
995
- }
996
- function l(e) {
997
- e.end();
998
- }
999
- Object.defineProperty(f.prototype, "destroyed", {
1000
- enumerable: false,
1001
- get: function e() {
1002
- if (this._readableState === undefined || this._writableState === undefined) {
1003
- return false;
1004
- }
1005
- return this._readableState.destroyed && this._writableState.destroyed;
1006
- },
1007
- set: function e(t) {
1008
- if (this._readableState === undefined || this._writableState === undefined) {
1009
- return;
1010
- }
1011
- this._readableState.destroyed = t;
1012
- this._writableState.destroyed = t;
1013
- }
1014
- });
1015
- return M;
1016
- }
1017
-
1018
- var P;
27
+ var n = r[0];
28
+ r[0] = r[1] ^ this.P[17];
29
+ r[1] = n;
30
+ };
1019
31
 
1020
- var L;
32
+ n.prototype.decipher = function(r) {
33
+ var t = new Uint8Array(r.buffer);
34
+ if (r.byteOffset !== 0) t = t.subarray(r.byteOffset);
35
+ r[0] ^= this.P[17];
36
+ for (var e = 16; e > 0; e -= 2) {
37
+ r[1] ^= i(this.S, t, 0) ^ this.P[e];
38
+ r[0] ^= i(this.S, t, 4) ^ this.P[e - 1];
39
+ }
40
+ var n = r[0];
41
+ r[0] = r[1] ^ this.P[0];
42
+ r[1] = n;
43
+ };
1021
44
 
1022
- function A() {
1023
- if (L) return P;
1024
- L = 1;
1025
- var e = _().codes.ERR_STREAM_PREMATURE_CLOSE;
1026
- function t(e) {
1027
- var t = false;
1028
- return function() {
1029
- if (t) return;
1030
- t = true;
1031
- for (var r = arguments.length, n = new Array(r), i = 0; i < r; i++) {
1032
- n[i] = arguments[i];
1033
- }
1034
- e.apply(this, n);
1035
- };
1036
- }
1037
- function r() {}
1038
- function n(e) {
1039
- return e.setHeader && typeof e.abort === "function";
1040
- }
1041
- function i(a, o, f) {
1042
- if (typeof o === "function") return i(a, null, o);
1043
- if (!o) o = {};
1044
- f = t(f || r);
1045
- var s = o.readable || o.readable !== false && a.readable;
1046
- var l = o.writable || o.writable !== false && a.writable;
1047
- var u = function e() {
1048
- if (!a.writable) c();
1049
- };
1050
- var d = a._writableState && a._writableState.finished;
1051
- var c = function e() {
1052
- l = false;
1053
- d = true;
1054
- if (!s) f.call(a);
1055
- };
1056
- var h = a._readableState && a._readableState.endEmitted;
1057
- var p = function e() {
1058
- s = false;
1059
- h = true;
1060
- if (!l) f.call(a);
1061
- };
1062
- var b = function e(t) {
1063
- f.call(a, t);
1064
- };
1065
- var v = function t() {
1066
- var r;
1067
- if (s && !h) {
1068
- if (!a._readableState || !a._readableState.ended) r = new e;
1069
- return f.call(a, r);
1070
- }
1071
- if (l && !d) {
1072
- if (!a._writableState || !a._writableState.ended) r = new e;
1073
- return f.call(a, r);
1074
- }
1075
- };
1076
- var g = function e() {
1077
- a.req.on("finish", c);
1078
- };
1079
- if (n(a)) {
1080
- a.on("complete", c);
1081
- a.on("abort", v);
1082
- if (a.req) g(); else a.on("request", g);
1083
- } else if (l && !a._writableState) {
1084
- a.on("end", u);
1085
- a.on("close", u);
1086
- }
1087
- a.on("end", p);
1088
- a.on("finish", c);
1089
- if (o.error !== false) a.on("error", b);
1090
- a.on("close", v);
1091
- return function() {
1092
- a.removeListener("complete", c);
1093
- a.removeListener("abort", v);
1094
- a.removeListener("request", g);
1095
- if (a.req) a.req.removeListener("finish", c);
1096
- a.removeListener("end", u);
1097
- a.removeListener("close", u);
1098
- a.removeListener("finish", c);
1099
- a.removeListener("end", p);
1100
- a.removeListener("error", b);
1101
- a.removeListener("close", v);
1102
- };
45
+ function a(r, t) {
46
+ var n, i = 0;
47
+ for (n = 0; n < 4; n++, e++) {
48
+ if (e >= t) e = 0;
49
+ i = i << 8 | r[e];
1103
50
  }
1104
- P = i;
1105
- return P;
51
+ return i;
1106
52
  }
1107
53
 
1108
- var D;
1109
-
1110
- var x;
1111
-
1112
- function C() {
1113
- if (x) return D;
1114
- x = 1;
1115
- var e;
1116
- function t(e, t, n) {
1117
- t = r(t);
1118
- if (t in e) {
1119
- Object.defineProperty(e, t, {
1120
- value: n,
1121
- enumerable: true,
1122
- configurable: true,
1123
- writable: true
1124
- });
1125
- } else {
1126
- e[t] = n;
1127
- }
1128
- return e;
54
+ n.prototype.expand0state = function(r, t) {
55
+ var n = new Uint32Array(2), i, f;
56
+ var o = new Uint8Array(n.buffer);
57
+ for (i = 0, e = 0; i < 18; i++) {
58
+ this.P[i] ^= a(r, t);
1129
59
  }
1130
- function r(e) {
1131
- var t = n(e, "string");
1132
- return typeof t === "symbol" ? t : String(t);
60
+ e = 0;
61
+ for (i = 0; i < 18; i += 2) {
62
+ this.encipher(n, o);
63
+ this.P[i] = n[0];
64
+ this.P[i + 1] = n[1];
1133
65
  }
1134
- function n(e, t) {
1135
- if (typeof e !== "object" || e === null) return e;
1136
- var r = e[Symbol.toPrimitive];
1137
- if (r !== undefined) {
1138
- var n = r.call(e, t);
1139
- if (typeof n !== "object") return n;
1140
- throw new TypeError("@@toPrimitive must return a primitive value.");
66
+ for (i = 0; i < 4; i++) {
67
+ for (f = 0; f < 256; f += 2) {
68
+ this.encipher(n, o);
69
+ this.S[i][f] = n[0];
70
+ this.S[i][f + 1] = n[1];
1141
71
  }
1142
- return String(e);
1143
72
  }
1144
- var i = A();
1145
- var a = Symbol("lastResolve");
1146
- var o = Symbol("lastReject");
1147
- var f = Symbol("error");
1148
- var s = Symbol("ended");
1149
- var l = Symbol("lastPromise");
1150
- var u = Symbol("handlePromise");
1151
- var d = Symbol("stream");
1152
- function c(e, t) {
1153
- return {
1154
- value: e,
1155
- done: t
1156
- };
1157
- }
1158
- function h(e) {
1159
- var t = e[a];
1160
- if (t !== null) {
1161
- var r = e[d].read();
1162
- if (r !== null) {
1163
- e[l] = null;
1164
- e[a] = null;
1165
- e[o] = null;
1166
- t(c(r, false));
1167
- }
1168
- }
1169
- }
1170
- function p(e) {
1171
- process.nextTick(h, e);
1172
- }
1173
- function b(e, t) {
1174
- return function(r, n) {
1175
- e.then(function() {
1176
- if (t[s]) {
1177
- r(c(undefined, true));
1178
- return;
1179
- }
1180
- t[u](r, n);
1181
- }, n);
1182
- };
1183
- }
1184
- var v = Object.getPrototypeOf(function() {});
1185
- var g = Object.setPrototypeOf((e = {
1186
- get stream() {
1187
- return this[d];
1188
- },
1189
- next: function e() {
1190
- var t = this;
1191
- var r = this[f];
1192
- if (r !== null) {
1193
- return Promise.reject(r);
1194
- }
1195
- if (this[s]) {
1196
- return Promise.resolve(c(undefined, true));
1197
- }
1198
- if (this[d].destroyed) {
1199
- return new Promise(function(e, r) {
1200
- process.nextTick(function() {
1201
- if (t[f]) {
1202
- r(t[f]);
1203
- } else {
1204
- e(c(undefined, true));
1205
- }
1206
- });
1207
- });
1208
- }
1209
- var n = this[l];
1210
- var i;
1211
- if (n) {
1212
- i = new Promise(b(n, this));
1213
- } else {
1214
- var a = this[d].read();
1215
- if (a !== null) {
1216
- return Promise.resolve(c(a, false));
1217
- }
1218
- i = new Promise(this[u]);
1219
- }
1220
- this[l] = i;
1221
- return i;
1222
- }
1223
- }, t(e, Symbol.asyncIterator, function() {
1224
- return this;
1225
- }), t(e, "return", function e() {
1226
- var t = this;
1227
- return new Promise(function(e, r) {
1228
- t[d].destroy(null, function(t) {
1229
- if (t) {
1230
- r(t);
1231
- return;
1232
- }
1233
- e(c(undefined, true));
1234
- });
1235
- });
1236
- }), e), v);
1237
- var y = function e(r) {
1238
- var n;
1239
- var h = Object.create(g, (n = {}, t(n, d, {
1240
- value: r,
1241
- writable: true
1242
- }), t(n, a, {
1243
- value: null,
1244
- writable: true
1245
- }), t(n, o, {
1246
- value: null,
1247
- writable: true
1248
- }), t(n, f, {
1249
- value: null,
1250
- writable: true
1251
- }), t(n, s, {
1252
- value: r._readableState.endEmitted,
1253
- writable: true
1254
- }), t(n, u, {
1255
- value: function e(t, r) {
1256
- var n = h[d].read();
1257
- if (n) {
1258
- h[l] = null;
1259
- h[a] = null;
1260
- h[o] = null;
1261
- t(c(n, false));
1262
- } else {
1263
- h[a] = t;
1264
- h[o] = r;
1265
- }
1266
- },
1267
- writable: true
1268
- }), n));
1269
- h[l] = null;
1270
- i(r, function(e) {
1271
- if (e && e.code !== "ERR_STREAM_PREMATURE_CLOSE") {
1272
- var t = h[o];
1273
- if (t !== null) {
1274
- h[l] = null;
1275
- h[a] = null;
1276
- h[o] = null;
1277
- t(e);
1278
- }
1279
- h[f] = e;
1280
- return;
1281
- }
1282
- var r = h[a];
1283
- if (r !== null) {
1284
- h[l] = null;
1285
- h[a] = null;
1286
- h[o] = null;
1287
- r(c(undefined, true));
1288
- }
1289
- h[s] = true;
1290
- });
1291
- r.on("readable", p.bind(null, h));
1292
- return h;
1293
- };
1294
- D = y;
1295
- return D;
1296
- }
1297
-
1298
- var N;
1299
-
1300
- var I;
73
+ };
1301
74
 
1302
- function W() {
1303
- if (I) return N;
1304
- I = 1;
1305
- function e(e, t, r, n, i, a, o) {
1306
- try {
1307
- var f = e[a](o);
1308
- var s = f.value;
1309
- } catch (e) {
1310
- r(e);
1311
- return;
1312
- }
1313
- if (f.done) {
1314
- t(s);
1315
- } else {
1316
- Promise.resolve(s).then(n, i);
1317
- }
75
+ n.prototype.expandstate = function(r, t, n, i) {
76
+ var f = new Uint32Array(2), o, h;
77
+ for (o = 0, e = 0; o < 18; o++) {
78
+ this.P[o] ^= a(n, i);
1318
79
  }
1319
- function t(t) {
1320
- return function() {
1321
- var r = this, n = arguments;
1322
- return new Promise(function(i, a) {
1323
- var o = t.apply(r, n);
1324
- function f(t) {
1325
- e(o, i, a, f, s, "next", t);
1326
- }
1327
- function s(t) {
1328
- e(o, i, a, f, s, "throw", t);
1329
- }
1330
- f(undefined);
1331
- });
1332
- };
1333
- }
1334
- function r(e, t) {
1335
- var r = Object.keys(e);
1336
- if (Object.getOwnPropertySymbols) {
1337
- var n = Object.getOwnPropertySymbols(e);
1338
- t && (n = n.filter(function(t) {
1339
- return Object.getOwnPropertyDescriptor(e, t).enumerable;
1340
- })), r.push.apply(r, n);
1341
- }
1342
- return r;
80
+ for (o = 0, e = 0; o < 18; o += 2) {
81
+ f[0] ^= a(r, t);
82
+ f[1] ^= a(r, t);
83
+ this.encipher(f);
84
+ this.P[o] = f[0];
85
+ this.P[o + 1] = f[1];
1343
86
  }
1344
- function n(e) {
1345
- for (var t = 1; t < arguments.length; t++) {
1346
- var n = null != arguments[t] ? arguments[t] : {};
1347
- t % 2 ? r(Object(n), true).forEach(function(t) {
1348
- i(e, t, n[t]);
1349
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : r(Object(n)).forEach(function(t) {
1350
- Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t));
1351
- });
87
+ for (o = 0; o < 4; o++) {
88
+ for (h = 0; h < 256; h += 2) {
89
+ f[0] ^= a(r, t);
90
+ f[1] ^= a(r, t);
91
+ this.encipher(f);
92
+ this.S[o][h] = f[0];
93
+ this.S[o][h + 1] = f[1];
1352
94
  }
1353
- return e;
1354
95
  }
1355
- function i(e, t, r) {
1356
- t = a(t);
1357
- if (t in e) {
1358
- Object.defineProperty(e, t, {
1359
- value: r,
1360
- enumerable: true,
1361
- configurable: true,
1362
- writable: true
1363
- });
1364
- } else {
1365
- e[t] = r;
1366
- }
1367
- return e;
1368
- }
1369
- function a(e) {
1370
- var t = o(e, "string");
1371
- return typeof t === "symbol" ? t : String(t);
1372
- }
1373
- function o(e, t) {
1374
- if (typeof e !== "object" || e === null) return e;
1375
- var r = e[Symbol.toPrimitive];
1376
- if (r !== undefined) {
1377
- var n = r.call(e, t);
1378
- if (typeof n !== "object") return n;
1379
- throw new TypeError("@@toPrimitive must return a primitive value.");
1380
- }
1381
- return String(e);
1382
- }
1383
- var f = _().codes.ERR_INVALID_ARG_TYPE;
1384
- function s(e, r, i) {
1385
- var a;
1386
- if (r && typeof r.next === "function") {
1387
- a = r;
1388
- } else if (r && r[Symbol.asyncIterator]) a = r[Symbol.asyncIterator](); else if (r && r[Symbol.iterator]) a = r[Symbol.iterator](); else throw new f("iterable", [ "Iterable" ], r);
1389
- var o = new e(n({
1390
- objectMode: true
1391
- }, i));
1392
- var s = false;
1393
- o._read = function() {
1394
- if (!s) {
1395
- s = true;
1396
- l();
1397
- }
1398
- };
1399
- function l() {
1400
- return u.apply(this, arguments);
1401
- }
1402
- function u() {
1403
- u = t(function*() {
1404
- try {
1405
- var e = yield a.next(), t = e.value, r = e.done;
1406
- if (r) {
1407
- o.push(null);
1408
- } else if (o.push(yield t)) {
1409
- l();
1410
- } else {
1411
- s = false;
1412
- }
1413
- } catch (e) {
1414
- o.destroy(e);
1415
- }
1416
- });
1417
- return u.apply(this, arguments);
1418
- }
1419
- return o;
1420
- }
1421
- N = s;
1422
- return N;
1423
- }
1424
-
1425
- var B;
1426
-
1427
- var q;
96
+ e = 0;
97
+ };
1428
98
 
1429
- function U() {
1430
- if (q) return B;
1431
- q = 1;
1432
- B = U;
1433
- var e;
1434
- U.ReadableState = I;
1435
- r.EventEmitter;
1436
- var o = function e(t, r) {
1437
- return t.listeners(r).length;
1438
- };
1439
- var s = d();
1440
- var l = n.Buffer;
1441
- var u = (typeof t !== "undefined" ? t : typeof window !== "undefined" ? window : typeof self !== "undefined" ? self : {}).Uint8Array || function() {};
1442
- function c(e) {
1443
- return l.from(e);
1444
- }
1445
- function h(e) {
1446
- return l.isBuffer(e) || e instanceof u;
1447
- }
1448
- var b = i;
1449
- var v;
1450
- if (b && b.debuglog) {
1451
- v = b.debuglog("stream");
1452
- } else {
1453
- v = function e() {};
1454
- }
1455
- var y = p();
1456
- var w = g();
1457
- var m = R(), S = m.getHighWaterMark;
1458
- var E = _().codes, k = E.ERR_INVALID_ARG_TYPE, T = E.ERR_STREAM_PUSH_AFTER_EOF, M = E.ERR_METHOD_NOT_IMPLEMENTED, O = E.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
1459
- var P;
1460
- var L;
1461
- var A;
1462
- a()(U, s);
1463
- var D = w.errorOrDestroy;
1464
- var x = [ "error", "close", "destroy", "pause", "resume" ];
1465
- function N(e, t, r) {
1466
- if (typeof e.prependListener === "function") return e.prependListener(t, r);
1467
- if (!e._events || !e._events[t]) e.on(t, r); else if (Array.isArray(e._events[t])) e._events[t].unshift(r); else e._events[t] = [ r, e._events[t] ];
1468
- }
1469
- function I(t, r, n) {
1470
- e = e || j();
1471
- t = t || {};
1472
- if (typeof n !== "boolean") n = r instanceof e;
1473
- this.objectMode = !!t.objectMode;
1474
- if (n) this.objectMode = this.objectMode || !!t.readableObjectMode;
1475
- this.highWaterMark = S(this, t, "readableHighWaterMark", n);
1476
- this.buffer = new y;
1477
- this.length = 0;
1478
- this.pipes = null;
1479
- this.pipesCount = 0;
1480
- this.flowing = null;
1481
- this.ended = false;
1482
- this.endEmitted = false;
1483
- this.reading = false;
1484
- this.sync = true;
1485
- this.needReadable = false;
1486
- this.emittedReadable = false;
1487
- this.readableListening = false;
1488
- this.resumeScheduled = false;
1489
- this.paused = true;
1490
- this.emitClose = t.emitClose !== false;
1491
- this.autoDestroy = !!t.autoDestroy;
1492
- this.destroyed = false;
1493
- this.defaultEncoding = t.defaultEncoding || "utf8";
1494
- this.awaitDrain = 0;
1495
- this.readingMore = false;
1496
- this.decoder = null;
1497
- this.encoding = null;
1498
- if (t.encoding) {
1499
- if (!P) P = f().StringDecoder;
1500
- this.decoder = new P(t.encoding);
1501
- this.encoding = t.encoding;
1502
- }
1503
- }
1504
- function U(t) {
1505
- e = e || j();
1506
- if (!(this instanceof U)) return new U(t);
1507
- var r = this instanceof e;
1508
- this._readableState = new I(t, this, r);
1509
- this.readable = true;
1510
- if (t) {
1511
- if (typeof t.read === "function") this._read = t.read;
1512
- if (typeof t.destroy === "function") this._destroy = t.destroy;
1513
- }
1514
- s.call(this);
1515
- }
1516
- Object.defineProperty(U.prototype, "destroyed", {
1517
- enumerable: false,
1518
- get: function e() {
1519
- if (this._readableState === undefined) {
1520
- return false;
1521
- }
1522
- return this._readableState.destroyed;
1523
- },
1524
- set: function e(t) {
1525
- if (!this._readableState) {
1526
- return;
1527
- }
1528
- this._readableState.destroyed = t;
1529
- }
1530
- });
1531
- U.prototype.destroy = w.destroy;
1532
- U.prototype._undestroy = w.undestroy;
1533
- U.prototype._destroy = function(e, t) {
1534
- t(e);
1535
- };
1536
- U.prototype.push = function(e, t) {
1537
- var r = this._readableState;
1538
- var n;
1539
- if (!r.objectMode) {
1540
- if (typeof e === "string") {
1541
- t = t || r.defaultEncoding;
1542
- if (t !== r.encoding) {
1543
- e = l.from(e, t);
1544
- t = "";
1545
- }
1546
- n = true;
1547
- }
1548
- } else {
1549
- n = true;
1550
- }
1551
- return F(this, e, t, false, n);
1552
- };
1553
- U.prototype.unshift = function(e) {
1554
- return F(this, e, null, true, false);
1555
- };
1556
- function F(e, t, r, n, i) {
1557
- v("readableAddChunk", t);
1558
- var a = e._readableState;
1559
- if (t === null) {
1560
- a.reading = false;
1561
- K(e, a);
1562
- } else {
1563
- var o;
1564
- if (!i) o = $(a, t);
1565
- if (o) {
1566
- D(e, o);
1567
- } else if (a.objectMode || t && t.length > 0) {
1568
- if (typeof t !== "string" && !a.objectMode && Object.getPrototypeOf(t) !== l.prototype) {
1569
- t = c(t);
1570
- }
1571
- if (n) {
1572
- if (a.endEmitted) D(e, new O); else H(e, a, t, true);
1573
- } else if (a.ended) {
1574
- D(e, new T);
1575
- } else if (a.destroyed) {
1576
- return false;
1577
- } else {
1578
- a.reading = false;
1579
- if (a.decoder && !r) {
1580
- t = a.decoder.write(t);
1581
- if (a.objectMode || t.length !== 0) H(e, a, t, false); else Q(e, a);
1582
- } else {
1583
- H(e, a, t, false);
1584
- }
1585
- }
1586
- } else if (!n) {
1587
- a.reading = false;
1588
- Q(e, a);
1589
- }
1590
- }
1591
- return !a.ended && (a.length < a.highWaterMark || a.length === 0);
1592
- }
1593
- function H(e, t, r, n) {
1594
- if (t.flowing && t.length === 0 && !t.sync) {
1595
- t.awaitDrain = 0;
1596
- e.emit("data", r);
1597
- } else {
1598
- t.length += t.objectMode ? 1 : r.length;
1599
- if (n) t.buffer.unshift(r); else t.buffer.push(r);
1600
- if (t.needReadable) z(e);
1601
- }
1602
- Q(e, t);
1603
- }
1604
- function $(e, t) {
1605
- var r;
1606
- if (!h(t) && typeof t !== "string" && t !== undefined && !e.objectMode) {
1607
- r = new k("chunk", [ "string", "Buffer", "Uint8Array" ], t);
1608
- }
1609
- return r;
1610
- }
1611
- U.prototype.isPaused = function() {
1612
- return this._readableState.flowing === false;
1613
- };
1614
- U.prototype.setEncoding = function(e) {
1615
- if (!P) P = f().StringDecoder;
1616
- var t = new P(e);
1617
- this._readableState.decoder = t;
1618
- this._readableState.encoding = this._readableState.decoder.encoding;
1619
- var r = this._readableState.buffer.head;
1620
- var n = "";
1621
- while (r !== null) {
1622
- n += t.write(r.data);
1623
- r = r.next;
1624
- }
1625
- this._readableState.buffer.clear();
1626
- if (n !== "") this._readableState.buffer.push(n);
1627
- this._readableState.length = n.length;
1628
- return this;
1629
- };
1630
- var V = 1073741824;
1631
- function G(e) {
1632
- if (e >= V) {
1633
- e = V;
1634
- } else {
1635
- e--;
1636
- e |= e >>> 1;
1637
- e |= e >>> 2;
1638
- e |= e >>> 4;
1639
- e |= e >>> 8;
1640
- e |= e >>> 16;
1641
- e++;
1642
- }
1643
- return e;
99
+ n.prototype.enc = function(r, t) {
100
+ for (var e = 0; e < t; e++) {
101
+ this.encipher(r.subarray(e * 2));
1644
102
  }
1645
- function Y(e, t) {
1646
- if (e <= 0 || t.length === 0 && t.ended) return 0;
1647
- if (t.objectMode) return 1;
1648
- if (e !== e) {
1649
- if (t.flowing && t.length) return t.buffer.head.data.length; else return t.length;
1650
- }
1651
- if (e > t.highWaterMark) t.highWaterMark = G(e);
1652
- if (e <= t.length) return e;
1653
- if (!t.ended) {
1654
- t.needReadable = true;
1655
- return 0;
1656
- }
1657
- return t.length;
1658
- }
1659
- U.prototype.read = function(e) {
1660
- v("read", e);
1661
- e = parseInt(e, 10);
1662
- var t = this._readableState;
1663
- var r = e;
1664
- if (e !== 0) t.emittedReadable = false;
1665
- if (e === 0 && t.needReadable && ((t.highWaterMark !== 0 ? t.length >= t.highWaterMark : t.length > 0) || t.ended)) {
1666
- v("read: emitReadable", t.length, t.ended);
1667
- if (t.length === 0 && t.ended) oe(this); else z(this);
1668
- return null;
1669
- }
1670
- e = Y(e, t);
1671
- if (e === 0 && t.ended) {
1672
- if (t.length === 0) oe(this);
1673
- return null;
1674
- }
1675
- var n = t.needReadable;
1676
- v("need readable", n);
1677
- if (t.length === 0 || t.length - e < t.highWaterMark) {
1678
- n = true;
1679
- v("length less than watermark", n);
1680
- }
1681
- if (t.ended || t.reading) {
1682
- n = false;
1683
- v("reading or ended", n);
1684
- } else if (n) {
1685
- v("do read");
1686
- t.reading = true;
1687
- t.sync = true;
1688
- if (t.length === 0) t.needReadable = true;
1689
- this._read(t.highWaterMark);
1690
- t.sync = false;
1691
- if (!t.reading) e = Y(r, t);
1692
- }
1693
- var i;
1694
- if (e > 0) i = ae(e, t); else i = null;
1695
- if (i === null) {
1696
- t.needReadable = t.length <= t.highWaterMark;
1697
- e = 0;
1698
- } else {
1699
- t.length -= e;
1700
- t.awaitDrain = 0;
1701
- }
1702
- if (t.length === 0) {
1703
- if (!t.ended) t.needReadable = true;
1704
- if (r !== e && t.ended) oe(this);
1705
- }
1706
- if (i !== null) this.emit("data", i);
1707
- return i;
1708
- };
1709
- function K(e, t) {
1710
- v("onEofChunk");
1711
- if (t.ended) return;
1712
- if (t.decoder) {
1713
- var r = t.decoder.end();
1714
- if (r && r.length) {
1715
- t.buffer.push(r);
1716
- t.length += t.objectMode ? 1 : r.length;
1717
- }
1718
- }
1719
- t.ended = true;
1720
- if (t.sync) {
1721
- z(e);
1722
- } else {
1723
- t.needReadable = false;
1724
- if (!t.emittedReadable) {
1725
- t.emittedReadable = true;
1726
- J(e);
1727
- }
1728
- }
1729
- }
1730
- function z(e) {
1731
- var t = e._readableState;
1732
- v("emitReadable", t.needReadable, t.emittedReadable);
1733
- t.needReadable = false;
1734
- if (!t.emittedReadable) {
1735
- v("emitReadable", t.flowing);
1736
- t.emittedReadable = true;
1737
- process.nextTick(J, e);
1738
- }
1739
- }
1740
- function J(e) {
1741
- var t = e._readableState;
1742
- v("emitReadable_", t.destroyed, t.length, t.ended);
1743
- if (!t.destroyed && (t.length || t.ended)) {
1744
- e.emit("readable");
1745
- t.emittedReadable = false;
1746
- }
1747
- t.needReadable = !t.flowing && !t.ended && t.length <= t.highWaterMark;
1748
- ie(e);
1749
- }
1750
- function Q(e, t) {
1751
- if (!t.readingMore) {
1752
- t.readingMore = true;
1753
- process.nextTick(X, e, t);
1754
- }
1755
- }
1756
- function X(e, t) {
1757
- while (!t.reading && !t.ended && (t.length < t.highWaterMark || t.flowing && t.length === 0)) {
1758
- var r = t.length;
1759
- v("maybeReadMore read 0");
1760
- e.read(0);
1761
- if (r === t.length) break;
1762
- }
1763
- t.readingMore = false;
1764
- }
1765
- U.prototype._read = function(e) {
1766
- D(this, new M("_read()"));
1767
- };
1768
- U.prototype.pipe = function(e, t) {
1769
- var r = this;
1770
- var n = this._readableState;
1771
- switch (n.pipesCount) {
1772
- case 0:
1773
- n.pipes = e;
1774
- break;
1775
-
1776
- case 1:
1777
- n.pipes = [ n.pipes, e ];
1778
- break;
103
+ };
1779
104
 
1780
- default:
1781
- n.pipes.push(e);
1782
- break;
1783
- }
1784
- n.pipesCount += 1;
1785
- v("pipe count=%d opts=%j", n.pipesCount, t);
1786
- var i = (!t || t.end !== false) && e !== process.stdout && e !== process.stderr;
1787
- var a = i ? s : g;
1788
- if (n.endEmitted) process.nextTick(a); else r.once("end", a);
1789
- e.on("unpipe", f);
1790
- function f(e, t) {
1791
- v("onunpipe");
1792
- if (e === r) {
1793
- if (t && t.hasUnpiped === false) {
1794
- t.hasUnpiped = true;
1795
- d();
1796
- }
1797
- }
1798
- }
1799
- function s() {
1800
- v("onend");
1801
- e.end();
1802
- }
1803
- var l = Z(r);
1804
- e.on("drain", l);
1805
- var u = false;
1806
- function d() {
1807
- v("cleanup");
1808
- e.removeListener("close", p);
1809
- e.removeListener("finish", b);
1810
- e.removeListener("drain", l);
1811
- e.removeListener("error", h);
1812
- e.removeListener("unpipe", f);
1813
- r.removeListener("end", s);
1814
- r.removeListener("end", g);
1815
- r.removeListener("data", c);
1816
- u = true;
1817
- if (n.awaitDrain && (!e._writableState || e._writableState.needDrain)) l();
1818
- }
1819
- r.on("data", c);
1820
- function c(t) {
1821
- v("ondata");
1822
- var i = e.write(t);
1823
- v("dest.write", i);
1824
- if (i === false) {
1825
- if ((n.pipesCount === 1 && n.pipes === e || n.pipesCount > 1 && se(n.pipes, e) !== -1) && !u) {
1826
- v("false write response, pause", n.awaitDrain);
1827
- n.awaitDrain++;
1828
- }
1829
- r.pause();
1830
- }
1831
- }
1832
- function h(t) {
1833
- v("onerror", t);
1834
- g();
1835
- e.removeListener("error", h);
1836
- if (o(e, "error") === 0) D(e, t);
1837
- }
1838
- N(e, "error", h);
1839
- function p() {
1840
- e.removeListener("finish", b);
1841
- g();
1842
- }
1843
- e.once("close", p);
1844
- function b() {
1845
- v("onfinish");
1846
- e.removeListener("close", p);
1847
- g();
1848
- }
1849
- e.once("finish", b);
1850
- function g() {
1851
- v("unpipe");
1852
- r.unpipe(e);
1853
- }
1854
- e.emit("pipe", r);
1855
- if (!n.flowing) {
1856
- v("pipe resume");
1857
- r.resume();
1858
- }
1859
- return e;
1860
- };
1861
- function Z(e) {
1862
- return function t() {
1863
- var r = e._readableState;
1864
- v("pipeOnDrain", r.awaitDrain);
1865
- if (r.awaitDrain) r.awaitDrain--;
1866
- if (r.awaitDrain === 0 && o(e, "data")) {
1867
- r.flowing = true;
1868
- ie(e);
1869
- }
1870
- };
1871
- }
1872
- U.prototype.unpipe = function(e) {
1873
- var t = this._readableState;
1874
- var r = {
1875
- hasUnpiped: false
1876
- };
1877
- if (t.pipesCount === 0) return this;
1878
- if (t.pipesCount === 1) {
1879
- if (e && e !== t.pipes) return this;
1880
- if (!e) e = t.pipes;
1881
- t.pipes = null;
1882
- t.pipesCount = 0;
1883
- t.flowing = false;
1884
- if (e) e.emit("unpipe", this, r);
1885
- return this;
1886
- }
1887
- if (!e) {
1888
- var n = t.pipes;
1889
- var i = t.pipesCount;
1890
- t.pipes = null;
1891
- t.pipesCount = 0;
1892
- t.flowing = false;
1893
- for (var a = 0; a < i; a++) n[a].emit("unpipe", this, {
1894
- hasUnpiped: false
1895
- });
1896
- return this;
1897
- }
1898
- var o = se(t.pipes, e);
1899
- if (o === -1) return this;
1900
- t.pipes.splice(o, 1);
1901
- t.pipesCount -= 1;
1902
- if (t.pipesCount === 1) t.pipes = t.pipes[0];
1903
- e.emit("unpipe", this, r);
1904
- return this;
1905
- };
1906
- U.prototype.on = function(e, t) {
1907
- var r = s.prototype.on.call(this, e, t);
1908
- var n = this._readableState;
1909
- if (e === "data") {
1910
- n.readableListening = this.listenerCount("readable") > 0;
1911
- if (n.flowing !== false) this.resume();
1912
- } else if (e === "readable") {
1913
- if (!n.endEmitted && !n.readableListening) {
1914
- n.readableListening = n.needReadable = true;
1915
- n.flowing = false;
1916
- n.emittedReadable = false;
1917
- v("on readable", n.length, n.reading);
1918
- if (n.length) {
1919
- z(this);
1920
- } else if (!n.reading) {
1921
- process.nextTick(te, this);
1922
- }
1923
- }
1924
- }
1925
- return r;
1926
- };
1927
- U.prototype.addListener = U.prototype.on;
1928
- U.prototype.removeListener = function(e, t) {
1929
- var r = s.prototype.removeListener.call(this, e, t);
1930
- if (e === "readable") {
1931
- process.nextTick(ee, this);
1932
- }
1933
- return r;
1934
- };
1935
- U.prototype.removeAllListeners = function(e) {
1936
- var t = s.prototype.removeAllListeners.apply(this, arguments);
1937
- if (e === "readable" || e === undefined) {
1938
- process.nextTick(ee, this);
1939
- }
1940
- return t;
1941
- };
1942
- function ee(e) {
1943
- var t = e._readableState;
1944
- t.readableListening = e.listenerCount("readable") > 0;
1945
- if (t.resumeScheduled && !t.paused) {
1946
- t.flowing = true;
1947
- } else if (e.listenerCount("data") > 0) {
1948
- e.resume();
1949
- }
1950
- }
1951
- function te(e) {
1952
- v("readable nexttick read 0");
1953
- e.read(0);
1954
- }
1955
- U.prototype.resume = function() {
1956
- var e = this._readableState;
1957
- if (!e.flowing) {
1958
- v("resume");
1959
- e.flowing = !e.readableListening;
1960
- re(this, e);
1961
- }
1962
- e.paused = false;
1963
- return this;
1964
- };
1965
- function re(e, t) {
1966
- if (!t.resumeScheduled) {
1967
- t.resumeScheduled = true;
1968
- process.nextTick(ne, e, t);
1969
- }
1970
- }
1971
- function ne(e, t) {
1972
- v("resume", t.reading);
1973
- if (!t.reading) {
1974
- e.read(0);
1975
- }
1976
- t.resumeScheduled = false;
1977
- e.emit("resume");
1978
- ie(e);
1979
- if (t.flowing && !t.reading) e.read(0);
1980
- }
1981
- U.prototype.pause = function() {
1982
- v("call pause flowing=%j", this._readableState.flowing);
1983
- if (this._readableState.flowing !== false) {
1984
- v("pause");
1985
- this._readableState.flowing = false;
1986
- this.emit("pause");
1987
- }
1988
- this._readableState.paused = true;
1989
- return this;
1990
- };
1991
- function ie(e) {
1992
- var t = e._readableState;
1993
- v("flow", t.flowing);
1994
- while (t.flowing && e.read() !== null) ;
1995
- }
1996
- U.prototype.wrap = function(e) {
1997
- var t = this;
1998
- var r = this._readableState;
1999
- var n = false;
2000
- e.on("end", function() {
2001
- v("wrapped end");
2002
- if (r.decoder && !r.ended) {
2003
- var e = r.decoder.end();
2004
- if (e && e.length) t.push(e);
2005
- }
2006
- t.push(null);
2007
- });
2008
- e.on("data", function(i) {
2009
- v("wrapped data");
2010
- if (r.decoder) i = r.decoder.write(i);
2011
- if (r.objectMode && (i === null || i === undefined)) return; else if (!r.objectMode && (!i || !i.length)) return;
2012
- var a = t.push(i);
2013
- if (!a) {
2014
- n = true;
2015
- e.pause();
2016
- }
2017
- });
2018
- for (var i in e) {
2019
- if (this[i] === undefined && typeof e[i] === "function") {
2020
- this[i] = function t(r) {
2021
- return function t() {
2022
- return e[r].apply(e, arguments);
2023
- };
2024
- }(i);
2025
- }
2026
- }
2027
- for (var a = 0; a < x.length; a++) {
2028
- e.on(x[a], this.emit.bind(this, x[a]));
2029
- }
2030
- this._read = function(t) {
2031
- v("wrapped _read", t);
2032
- if (n) {
2033
- n = false;
2034
- e.resume();
2035
- }
2036
- };
2037
- return this;
2038
- };
2039
- if (typeof Symbol === "function") {
2040
- U.prototype[Symbol.asyncIterator] = function() {
2041
- if (L === undefined) {
2042
- L = C();
2043
- }
2044
- return L(this);
2045
- };
2046
- }
2047
- Object.defineProperty(U.prototype, "readableHighWaterMark", {
2048
- enumerable: false,
2049
- get: function e() {
2050
- return this._readableState.highWaterMark;
2051
- }
2052
- });
2053
- Object.defineProperty(U.prototype, "readableBuffer", {
2054
- enumerable: false,
2055
- get: function e() {
2056
- return this._readableState && this._readableState.buffer;
2057
- }
2058
- });
2059
- Object.defineProperty(U.prototype, "readableFlowing", {
2060
- enumerable: false,
2061
- get: function e() {
2062
- return this._readableState.flowing;
2063
- },
2064
- set: function e(t) {
2065
- if (this._readableState) {
2066
- this._readableState.flowing = t;
2067
- }
2068
- }
2069
- });
2070
- U._fromList = ae;
2071
- Object.defineProperty(U.prototype, "readableLength", {
2072
- enumerable: false,
2073
- get: function e() {
2074
- return this._readableState.length;
2075
- }
2076
- });
2077
- function ae(e, t) {
2078
- if (t.length === 0) return null;
2079
- var r;
2080
- if (t.objectMode) r = t.buffer.shift(); else if (!e || e >= t.length) {
2081
- if (t.decoder) r = t.buffer.join(""); else if (t.buffer.length === 1) r = t.buffer.first(); else r = t.buffer.concat(t.length);
2082
- t.buffer.clear();
2083
- } else {
2084
- r = t.buffer.consume(e, t.decoder);
2085
- }
2086
- return r;
2087
- }
2088
- function oe(e) {
2089
- var t = e._readableState;
2090
- v("endReadable", t.endEmitted);
2091
- if (!t.endEmitted) {
2092
- t.ended = true;
2093
- process.nextTick(fe, t, e);
2094
- }
2095
- }
2096
- function fe(e, t) {
2097
- v("endReadableNT", e.endEmitted, e.length);
2098
- if (!e.endEmitted && e.length === 0) {
2099
- e.endEmitted = true;
2100
- t.readable = false;
2101
- t.emit("end");
2102
- if (e.autoDestroy) {
2103
- var r = t._writableState;
2104
- if (!r || r.autoDestroy && r.finished) {
2105
- t.destroy();
2106
- }
2107
- }
2108
- }
2109
- }
2110
- if (typeof Symbol === "function") {
2111
- U.from = function(e, t) {
2112
- if (A === undefined) {
2113
- A = W();
2114
- }
2115
- return A(U, e, t);
2116
- };
105
+ n.prototype.dec = function(r, t) {
106
+ for (var e = 0; e < t; e++) {
107
+ this.decipher(r.subarray(e * 2));
2117
108
  }
2118
- function se(e, t) {
2119
- for (var r = 0, n = e.length; r < n; r++) {
2120
- if (e[r] === t) return r;
2121
- }
2122
- return -1;
2123
- }
2124
- return B;
2125
- }
2126
-
2127
- var F;
109
+ };
2128
110
 
2129
- var H;
111
+ var f = 8, o = 32;
2130
112
 
2131
- function $() {
2132
- if (H) return F;
2133
- H = 1;
2134
- F = s;
2135
- var e = _().codes, t = e.ERR_METHOD_NOT_IMPLEMENTED, r = e.ERR_MULTIPLE_CALLBACK, n = e.ERR_TRANSFORM_ALREADY_TRANSFORMING, i = e.ERR_TRANSFORM_WITH_LENGTH_0;
2136
- var o = j();
2137
- a()(s, o);
2138
- function f(e, t) {
2139
- var n = this._transformState;
2140
- n.transforming = false;
2141
- var i = n.writecb;
2142
- if (i === null) {
2143
- return this.emit("error", new r);
2144
- }
2145
- n.writechunk = null;
2146
- n.writecb = null;
2147
- if (t != null) this.push(t);
2148
- i(e);
2149
- var a = this._readableState;
2150
- a.reading = false;
2151
- if (a.needReadable || a.length < a.highWaterMark) {
2152
- this._read(a.highWaterMark);
2153
- }
2154
- }
2155
- function s(e) {
2156
- if (!(this instanceof s)) return new s(e);
2157
- o.call(this, e);
2158
- this._transformState = {
2159
- afterTransform: f.bind(this),
2160
- needTransform: false,
2161
- transforming: false,
2162
- writecb: null,
2163
- writechunk: null,
2164
- writeencoding: null
2165
- };
2166
- this._readableState.needReadable = true;
2167
- this._readableState.sync = false;
2168
- if (e) {
2169
- if (typeof e.transform === "function") this._transform = e.transform;
2170
- if (typeof e.flush === "function") this._flush = e.flush;
2171
- }
2172
- this.on("prefinish", l);
113
+ function h(r, t, e) {
114
+ var i = new n, o = new Uint32Array(f), h, s = new Uint8Array([ 79, 120, 121, 99, 104, 114, 111, 109, 97, 116, 105, 99, 66, 108, 111, 119, 102, 105, 115, 104, 83, 119, 97, 116, 68, 121, 110, 97, 109, 105, 116, 101 ]);
115
+ i.expandstate(t, 64, r, 64);
116
+ for (h = 0; h < 64; h++) {
117
+ i.expand0state(t, 64);
118
+ i.expand0state(r, 64);
2173
119
  }
2174
- function l() {
2175
- var e = this;
2176
- if (typeof this._flush === "function" && !this._readableState.destroyed) {
2177
- this._flush(function(t, r) {
2178
- u(e, t, r);
2179
- });
2180
- } else {
2181
- u(this, null, null);
2182
- }
2183
- }
2184
- s.prototype.push = function(e, t) {
2185
- this._transformState.needTransform = false;
2186
- return o.prototype.push.call(this, e, t);
2187
- };
2188
- s.prototype._transform = function(e, r, n) {
2189
- n(new t("_transform()"));
2190
- };
2191
- s.prototype._write = function(e, t, r) {
2192
- var n = this._transformState;
2193
- n.writecb = r;
2194
- n.writechunk = e;
2195
- n.writeencoding = t;
2196
- if (!n.transforming) {
2197
- var i = this._readableState;
2198
- if (n.needTransform || i.needReadable || i.length < i.highWaterMark) this._read(i.highWaterMark);
2199
- }
2200
- };
2201
- s.prototype._read = function(e) {
2202
- var t = this._transformState;
2203
- if (t.writechunk !== null && !t.transforming) {
2204
- t.transforming = true;
2205
- this._transform(t.writechunk, t.writeencoding, t.afterTransform);
2206
- } else {
2207
- t.needTransform = true;
2208
- }
2209
- };
2210
- s.prototype._destroy = function(e, t) {
2211
- o.prototype._destroy.call(this, e, function(e) {
2212
- t(e);
2213
- });
2214
- };
2215
- function u(e, t, r) {
2216
- if (t) return e.emit("error", t);
2217
- if (r != null) e.push(r);
2218
- if (e._writableState.length) throw new i;
2219
- if (e._transformState.transforming) throw new n;
2220
- return e.push(null);
2221
- }
2222
- return F;
2223
- }
2224
-
2225
- var V;
2226
-
2227
- var G;
2228
-
2229
- function Y() {
2230
- if (G) return V;
2231
- G = 1;
2232
- V = t;
2233
- var e = $();
2234
- a()(t, e);
2235
- function t(r) {
2236
- if (!(this instanceof t)) return new t(r);
2237
- e.call(this, r);
120
+ for (h = 0; h < f; h++) o[h] = a(s, s.byteLength);
121
+ for (h = 0; h < 64; h++) i.enc(o, o.byteLength / 8);
122
+ for (h = 0; h < f; h++) {
123
+ e[4 * h + 3] = o[h] >>> 24;
124
+ e[4 * h + 2] = o[h] >>> 16;
125
+ e[4 * h + 1] = o[h] >>> 8;
126
+ e[4 * h + 0] = o[h];
2238
127
  }
2239
- t.prototype._transform = function(e, t, r) {
2240
- r(null, e);
2241
- };
2242
- return V;
2243
128
  }
2244
129
 
2245
- var K;
2246
-
2247
- var z;
2248
-
2249
- function J() {
2250
- if (z) return K;
2251
- z = 1;
2252
- var e;
2253
- function t(e) {
2254
- var t = false;
2255
- return function() {
2256
- if (t) return;
2257
- t = true;
2258
- e.apply(void 0, arguments);
2259
- };
2260
- }
2261
- var r = _().codes, n = r.ERR_MISSING_ARGS, i = r.ERR_STREAM_DESTROYED;
2262
- function a(e) {
2263
- if (e) throw e;
2264
- }
2265
- function o(e) {
2266
- return e.setHeader && typeof e.abort === "function";
2267
- }
2268
- function f(r, n, a, f) {
2269
- f = t(f);
2270
- var s = false;
2271
- r.on("close", function() {
2272
- s = true;
2273
- });
2274
- if (e === undefined) e = A();
2275
- e(r, {
2276
- readable: n,
2277
- writable: a
2278
- }, function(e) {
2279
- if (e) return f(e);
2280
- s = true;
2281
- f();
2282
- });
2283
- var l = false;
2284
- return function(e) {
2285
- if (s) return;
2286
- if (l) return;
2287
- l = true;
2288
- if (o(r)) return r.abort();
2289
- if (typeof r.destroy === "function") return r.destroy();
2290
- f(e || new i("pipe"));
2291
- };
2292
- }
2293
- function s(e) {
2294
- e();
2295
- }
2296
- function l(e, t) {
2297
- return e.pipe(t);
2298
- }
2299
- function u(e) {
2300
- if (!e.length) return a;
2301
- if (typeof e[e.length - 1] !== "function") return a;
2302
- return e.pop();
2303
- }
2304
- function d() {
2305
- for (var e = arguments.length, t = new Array(e), r = 0; r < e; r++) {
2306
- t[r] = arguments[r];
2307
- }
2308
- var i = u(t);
2309
- if (Array.isArray(t[0])) t = t[0];
2310
- if (t.length < 2) {
2311
- throw new n("streams");
2312
- }
2313
- var a;
2314
- var o = t.map(function(e, r) {
2315
- var n = r < t.length - 1;
2316
- var l = r > 0;
2317
- return f(e, n, l, function(e) {
2318
- if (!a) a = e;
2319
- if (e) o.forEach(s);
2320
- if (n) return;
2321
- o.forEach(s);
2322
- i(a);
2323
- });
2324
- });
2325
- return t.reduce(l);
2326
- }
2327
- K = d;
2328
- return K;
130
+ function s(r, e, n, i, a, f, s) {
131
+ var y = new Uint8Array(64), p = new Uint8Array(64), c = new Uint8Array(o), u = new Uint8Array(o), b = new Uint8Array(i + 4), v, w, A, U, P, S, d = f;
132
+ if (s < 1) return -1;
133
+ if (e === 0 || i === 0 || f === 0 || f > c.byteLength * c.byteLength || i > 1 << 20) return -1;
134
+ U = Math.floor((f + c.byteLength - 1) / c.byteLength);
135
+ A = Math.floor((f + U - 1) / U);
136
+ for (v = 0; v < i; v++) b[v] = n[v];
137
+ t(y, r, e);
138
+ for (S = 1; f > 0; S++) {
139
+ b[i + 0] = S >>> 24;
140
+ b[i + 1] = S >>> 16;
141
+ b[i + 2] = S >>> 8;
142
+ b[i + 3] = S;
143
+ t(p, b, i + 4);
144
+ h(y, p, u);
145
+ for (v = c.byteLength; v--; ) c[v] = u[v];
146
+ for (v = 1; v < s; v++) {
147
+ t(p, u, u.byteLength);
148
+ h(y, p, u);
149
+ for (w = 0; w < c.byteLength; w++) c[w] ^= u[w];
150
+ }
151
+ A = Math.min(A, f);
152
+ for (v = 0; v < A; v++) {
153
+ P = v * U + (S - 1);
154
+ if (P >= d) break;
155
+ a[P] = c[v];
156
+ }
157
+ f -= v;
158
+ }
159
+ return 0;
2329
160
  }
2330
161
 
2331
- s.exports;
2332
-
2333
- (function(t, r) {
2334
- var n = e;
2335
- if (process.env.READABLE_STREAM === "disable" && n) {
2336
- t.exports = n.Readable;
2337
- Object.assign(t.exports, n);
2338
- t.exports.Stream = n;
2339
- } else {
2340
- r = t.exports = U();
2341
- r.Stream = n || r;
2342
- r.Readable = r;
2343
- r.Writable = T();
2344
- r.Duplex = j();
2345
- r.Transform = $();
2346
- r.PassThrough = Y();
2347
- r.finished = A();
2348
- r.pipeline = J();
2349
- }
2350
- })(s, s.exports);
2351
-
2352
- var Q = s.exports;
162
+ var y = {
163
+ BLOCKS: f,
164
+ HASHSIZE: o,
165
+ hash: h,
166
+ pbkdf: s
167
+ };
2353
168
 
2354
- export { Q as r };
169
+ export { y as b };