@jesec/flood 0.0.0-master.ee0257a → 0.0.0-master.ee5f837

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 (1749) hide show
  1. package/CHANGELOG.md +606 -103
  2. package/README.md +117 -43
  3. package/SECURITY.md +27 -0
  4. package/dist/assets/icon_128x128.png +0 -0
  5. package/dist/assets/icon_192x192.png +0 -0
  6. package/dist/assets/icon_256x256.png +0 -0
  7. package/dist/assets/icon_384x384.png +0 -0
  8. package/dist/assets/icon_512x512.png +0 -0
  9. package/dist/assets/icon_96x96.png +0 -0
  10. package/dist/assets/icon_maskable.png +0 -0
  11. package/dist/assets/icon_maskable_180x180.png +0 -0
  12. package/dist/assets/index.html +1 -1
  13. package/dist/assets/manifest.json +35 -7
  14. package/dist/assets/static/css/739.37bdb6f87f387ec14604.css +1 -0
  15. package/dist/assets/static/css/main.1e2641565fedeca72205.css +1 -0
  16. package/dist/assets/static/js/138.26e240df.chunk.js +1 -0
  17. package/dist/assets/static/js/256.d3cfadae.chunk.js +1 -0
  18. package/dist/assets/static/js/739.7134c723.chunk.js +1 -0
  19. package/dist/assets/static/js/963.94abcb99.chunk.js +1 -0
  20. package/dist/assets/static/js/about.b6e6db35.chunk.js +1 -0
  21. package/dist/assets/static/js/flag0.bd3fd5be.chunk.js +1 -0
  22. package/dist/assets/static/js/flag2.f02016d7.chunk.js +1 -0
  23. package/dist/assets/static/js/flag8.f5c18bad.chunk.js +1 -0
  24. package/dist/assets/static/js/i18n1.5b55a35b.chunk.js +1 -0
  25. package/dist/assets/static/js/i18n10.2e69cfe2.chunk.js +1 -0
  26. package/dist/assets/static/js/i18n12.a31b4c8f.chunk.js +1 -0
  27. package/dist/assets/static/js/i18n13.7dc71d11.chunk.js +1 -0
  28. package/dist/assets/static/js/i18n14.cfdcd368.chunk.js +1 -0
  29. package/dist/assets/static/js/i18n15.e7e41756.chunk.js +1 -0
  30. package/dist/assets/static/js/i18n16.4d455c6e.chunk.js +1 -0
  31. package/dist/assets/static/js/i18n17.8a71842d.chunk.js +1 -0
  32. package/dist/assets/static/js/i18n18.640f4424.chunk.js +1 -0
  33. package/dist/assets/static/js/i18n19.ee6f2572.chunk.js +1 -0
  34. package/dist/assets/static/js/i18n2.ba4e5684.chunk.js +1 -0
  35. package/dist/assets/static/js/i18n20.c1c88d68.chunk.js +1 -0
  36. package/dist/assets/static/js/i18n21.847acf90.chunk.js +1 -0
  37. package/dist/assets/static/js/i18n23.744fd0d9.chunk.js +1 -0
  38. package/dist/assets/static/js/i18n24.5d469b89.chunk.js +1 -0
  39. package/dist/assets/static/js/i18n25.b727c7ac.chunk.js +1 -0
  40. package/dist/assets/static/js/i18n27.a0f2f314.chunk.js +1 -0
  41. package/dist/assets/static/js/i18n28.1ece4163.chunk.js +1 -0
  42. package/dist/assets/static/js/i18n3.a191ec1a.chunk.js +1 -0
  43. package/dist/assets/static/js/i18n4.fb438e32.chunk.js +1 -0
  44. package/dist/assets/static/js/i18n5.b5208058.chunk.js +1 -0
  45. package/dist/assets/static/js/i18n8.4e63ce01.chunk.js +1 -0
  46. package/dist/assets/static/js/i18n9.6a80c71e.chunk.js +1 -0
  47. package/dist/assets/static/js/main.27c392af.js +1 -0
  48. package/dist/index.js +140167 -0
  49. package/node_modules/async/CHANGELOG.md +278 -0
  50. package/node_modules/async/LICENSE +19 -0
  51. package/node_modules/async/README.md +56 -0
  52. package/node_modules/async/all.js +50 -0
  53. package/node_modules/async/allLimit.js +42 -0
  54. package/node_modules/async/allSeries.js +37 -0
  55. package/node_modules/async/any.js +52 -0
  56. package/node_modules/async/anyLimit.js +43 -0
  57. package/node_modules/async/anySeries.js +38 -0
  58. package/node_modules/async/apply.js +68 -0
  59. package/node_modules/async/applyEach.js +51 -0
  60. package/node_modules/async/applyEachSeries.js +37 -0
  61. package/node_modules/async/asyncify.js +110 -0
  62. package/node_modules/async/auto.js +289 -0
  63. package/node_modules/async/autoInject.js +170 -0
  64. package/node_modules/async/bower.json +17 -0
  65. package/node_modules/async/cargo.js +94 -0
  66. package/node_modules/async/compose.js +58 -0
  67. package/node_modules/async/concat.js +43 -0
  68. package/node_modules/async/concatLimit.js +65 -0
  69. package/node_modules/async/concatSeries.js +36 -0
  70. package/node_modules/async/constant.js +66 -0
  71. package/node_modules/async/detect.js +61 -0
  72. package/node_modules/async/detectLimit.js +48 -0
  73. package/node_modules/async/detectSeries.js +38 -0
  74. package/node_modules/async/dir.js +43 -0
  75. package/node_modules/async/dist/async.js +5612 -0
  76. package/node_modules/async/dist/async.min.js +2 -0
  77. package/node_modules/async/dist/async.min.map +1 -0
  78. package/node_modules/async/doDuring.js +66 -0
  79. package/node_modules/async/doUntil.js +39 -0
  80. package/node_modules/async/doWhilst.js +59 -0
  81. package/node_modules/async/during.js +76 -0
  82. package/node_modules/async/each.js +82 -0
  83. package/node_modules/async/eachLimit.js +45 -0
  84. package/node_modules/async/eachOf.js +111 -0
  85. package/node_modules/async/eachOfLimit.js +41 -0
  86. package/node_modules/async/eachOfSeries.js +35 -0
  87. package/node_modules/async/eachSeries.js +37 -0
  88. package/node_modules/async/ensureAsync.js +73 -0
  89. package/node_modules/async/every.js +50 -0
  90. package/node_modules/async/everyLimit.js +42 -0
  91. package/node_modules/async/everySeries.js +37 -0
  92. package/node_modules/async/filter.js +45 -0
  93. package/node_modules/async/filterLimit.js +37 -0
  94. package/node_modules/async/filterSeries.js +35 -0
  95. package/node_modules/async/find.js +61 -0
  96. package/node_modules/async/findLimit.js +48 -0
  97. package/node_modules/async/findSeries.js +38 -0
  98. package/node_modules/async/foldl.js +78 -0
  99. package/node_modules/async/foldr.js +44 -0
  100. package/node_modules/async/forEach.js +82 -0
  101. package/node_modules/async/forEachLimit.js +45 -0
  102. package/node_modules/async/forEachOf.js +111 -0
  103. package/node_modules/async/forEachOfLimit.js +41 -0
  104. package/node_modules/async/forEachOfSeries.js +35 -0
  105. package/node_modules/async/forEachSeries.js +37 -0
  106. package/node_modules/async/forever.js +65 -0
  107. package/node_modules/async/groupBy.js +54 -0
  108. package/node_modules/async/groupByLimit.js +71 -0
  109. package/node_modules/async/groupBySeries.js +37 -0
  110. package/node_modules/async/index.js +582 -0
  111. package/node_modules/async/inject.js +78 -0
  112. package/node_modules/async/internal/DoublyLinkedList.js +88 -0
  113. package/node_modules/async/internal/applyEach.js +38 -0
  114. package/node_modules/async/internal/breakLoop.js +9 -0
  115. package/node_modules/async/internal/consoleFunc.js +42 -0
  116. package/node_modules/async/internal/createTester.js +44 -0
  117. package/node_modules/async/internal/doLimit.js +12 -0
  118. package/node_modules/async/internal/doParallel.js +23 -0
  119. package/node_modules/async/internal/doParallelLimit.js +23 -0
  120. package/node_modules/async/internal/eachOfLimit.js +74 -0
  121. package/node_modules/async/internal/filter.js +75 -0
  122. package/node_modules/async/internal/findGetResult.js +10 -0
  123. package/node_modules/async/internal/getIterator.js +13 -0
  124. package/node_modules/async/internal/initialParams.js +21 -0
  125. package/node_modules/async/internal/iterator.js +61 -0
  126. package/node_modules/async/internal/map.js +35 -0
  127. package/node_modules/async/internal/notId.js +10 -0
  128. package/node_modules/async/internal/once.js +15 -0
  129. package/node_modules/async/internal/onlyOnce.js +15 -0
  130. package/node_modules/async/internal/parallel.js +42 -0
  131. package/node_modules/async/internal/queue.js +204 -0
  132. package/node_modules/async/internal/reject.js +21 -0
  133. package/node_modules/async/internal/setImmediate.js +42 -0
  134. package/node_modules/async/internal/slice.js +16 -0
  135. package/node_modules/async/internal/withoutIndex.js +12 -0
  136. package/node_modules/async/internal/wrapAsync.js +25 -0
  137. package/node_modules/async/log.js +41 -0
  138. package/node_modules/async/map.js +54 -0
  139. package/node_modules/async/mapLimit.js +37 -0
  140. package/node_modules/async/mapSeries.js +36 -0
  141. package/node_modules/async/mapValues.js +63 -0
  142. package/node_modules/async/mapValuesLimit.js +61 -0
  143. package/node_modules/async/mapValuesSeries.js +37 -0
  144. package/node_modules/async/memoize.js +101 -0
  145. package/node_modules/async/nextTick.js +51 -0
  146. package/node_modules/async/package.json +80 -0
  147. package/node_modules/async/parallel.js +90 -0
  148. package/node_modules/async/parallelLimit.js +40 -0
  149. package/node_modules/async/priorityQueue.js +98 -0
  150. package/node_modules/async/queue.js +130 -0
  151. package/node_modules/async/race.js +70 -0
  152. package/node_modules/async/reduce.js +78 -0
  153. package/node_modules/async/reduceRight.js +44 -0
  154. package/node_modules/async/reflect.js +81 -0
  155. package/node_modules/async/reflectAll.js +105 -0
  156. package/node_modules/async/reject.js +45 -0
  157. package/node_modules/async/rejectLimit.js +37 -0
  158. package/node_modules/async/rejectSeries.js +35 -0
  159. package/node_modules/async/retry.js +156 -0
  160. package/node_modules/async/retryable.js +65 -0
  161. package/node_modules/async/select.js +45 -0
  162. package/node_modules/async/selectLimit.js +37 -0
  163. package/node_modules/async/selectSeries.js +35 -0
  164. package/node_modules/async/seq.js +91 -0
  165. package/node_modules/async/series.js +85 -0
  166. package/node_modules/async/setImmediate.js +45 -0
  167. package/node_modules/async/some.js +52 -0
  168. package/node_modules/async/someLimit.js +43 -0
  169. package/node_modules/async/someSeries.js +38 -0
  170. package/node_modules/async/sortBy.js +91 -0
  171. package/node_modules/async/timeout.js +89 -0
  172. package/node_modules/async/times.js +50 -0
  173. package/node_modules/async/timesLimit.js +42 -0
  174. package/node_modules/async/timesSeries.js +32 -0
  175. package/node_modules/async/transform.js +87 -0
  176. package/node_modules/async/tryEach.js +81 -0
  177. package/node_modules/async/unmemoize.js +25 -0
  178. package/node_modules/async/until.js +41 -0
  179. package/node_modules/async/waterfall.js +113 -0
  180. package/node_modules/async/whilst.js +72 -0
  181. package/node_modules/async/wrapSync.js +110 -0
  182. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  183. package/node_modules/balanced-match/LICENSE.md +21 -0
  184. package/node_modules/balanced-match/README.md +97 -0
  185. package/node_modules/balanced-match/index.js +62 -0
  186. package/node_modules/balanced-match/package.json +48 -0
  187. package/node_modules/brace-expansion/LICENSE +21 -0
  188. package/node_modules/brace-expansion/README.md +129 -0
  189. package/node_modules/brace-expansion/index.js +201 -0
  190. package/node_modules/brace-expansion/package.json +47 -0
  191. package/node_modules/buffer-crc32/LICENSE +19 -0
  192. package/node_modules/buffer-crc32/README.md +47 -0
  193. package/node_modules/buffer-crc32/index.js +111 -0
  194. package/node_modules/buffer-crc32/package.json +39 -0
  195. package/node_modules/concat-map/.travis.yml +4 -0
  196. package/node_modules/concat-map/LICENSE +18 -0
  197. package/node_modules/concat-map/README.markdown +62 -0
  198. package/node_modules/concat-map/example/map.js +6 -0
  199. package/node_modules/concat-map/index.js +13 -0
  200. package/node_modules/concat-map/package.json +43 -0
  201. package/node_modules/concat-map/test/map.js +39 -0
  202. package/node_modules/fd-slicer/.npmignore +2 -0
  203. package/node_modules/fd-slicer/.travis.yml +7 -0
  204. package/node_modules/fd-slicer/CHANGELOG.md +49 -0
  205. package/node_modules/fd-slicer/LICENSE +21 -0
  206. package/node_modules/fd-slicer/README.md +199 -0
  207. package/node_modules/fd-slicer/index.js +296 -0
  208. package/node_modules/fd-slicer/package.json +36 -0
  209. package/node_modules/fd-slicer/test/test.js +350 -0
  210. package/node_modules/fs.realpath/LICENSE +43 -0
  211. package/node_modules/fs.realpath/README.md +33 -0
  212. package/node_modules/fs.realpath/index.js +66 -0
  213. package/node_modules/fs.realpath/old.js +303 -0
  214. package/node_modules/fs.realpath/package.json +26 -0
  215. package/node_modules/geoip-country/EULA +108 -0
  216. package/node_modules/geoip-country/LICENSE +48 -0
  217. package/node_modules/geoip-country/README.md +129 -0
  218. package/node_modules/geoip-country/data/geoip-country.dat +0 -0
  219. package/node_modules/geoip-country/data/geoip-country6.dat +0 -0
  220. package/node_modules/geoip-country/lib/fsWatcher.js +78 -0
  221. package/node_modules/geoip-country/lib/geoip.js +491 -0
  222. package/node_modules/geoip-country/lib/utils.js +97 -0
  223. package/node_modules/geoip-country/node_modules/iconv-lite/Changelog.md +184 -0
  224. package/node_modules/geoip-country/node_modules/iconv-lite/LICENSE +21 -0
  225. package/node_modules/geoip-country/node_modules/iconv-lite/README.md +166 -0
  226. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  227. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  228. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/index.js +23 -0
  229. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/internal.js +188 -0
  230. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  231. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  232. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  233. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  234. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  235. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  236. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  237. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  238. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  239. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  240. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  241. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/utf16.js +177 -0
  242. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/utf32.js +281 -0
  243. package/node_modules/geoip-country/node_modules/iconv-lite/encodings/utf7.js +290 -0
  244. package/node_modules/geoip-country/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  245. package/node_modules/geoip-country/node_modules/iconv-lite/lib/extend-node.js +217 -0
  246. package/node_modules/geoip-country/node_modules/iconv-lite/lib/index.d.ts +41 -0
  247. package/node_modules/geoip-country/node_modules/iconv-lite/lib/index.js +153 -0
  248. package/node_modules/geoip-country/node_modules/iconv-lite/lib/streams.js +121 -0
  249. package/node_modules/geoip-country/node_modules/iconv-lite/package.json +45 -0
  250. package/node_modules/geoip-country/node_modules/rimraf/LICENSE +15 -0
  251. package/node_modules/geoip-country/node_modules/rimraf/README.md +101 -0
  252. package/node_modules/geoip-country/node_modules/rimraf/bin.js +50 -0
  253. package/node_modules/geoip-country/node_modules/rimraf/package.json +29 -0
  254. package/node_modules/geoip-country/node_modules/rimraf/rimraf.js +372 -0
  255. package/node_modules/geoip-country/package.json +54 -0
  256. package/node_modules/geoip-country/scripts/release.sh +6 -0
  257. package/node_modules/geoip-country/scripts/update-package.js +10 -0
  258. package/node_modules/geoip-country/scripts/updatedb.js +606 -0
  259. package/node_modules/geoip-country/test/geo-lookup.js +56 -0
  260. package/node_modules/geoip-country/test/tests.js +50 -0
  261. package/node_modules/glob/LICENSE +21 -0
  262. package/node_modules/glob/README.md +378 -0
  263. package/node_modules/glob/common.js +238 -0
  264. package/node_modules/glob/glob.js +790 -0
  265. package/node_modules/glob/package.json +55 -0
  266. package/node_modules/glob/sync.js +486 -0
  267. package/node_modules/inflight/LICENSE +15 -0
  268. package/node_modules/inflight/README.md +37 -0
  269. package/node_modules/inflight/inflight.js +54 -0
  270. package/node_modules/inflight/package.json +29 -0
  271. package/node_modules/inherits/LICENSE +16 -0
  272. package/node_modules/inherits/README.md +42 -0
  273. package/node_modules/inherits/inherits.js +9 -0
  274. package/node_modules/inherits/inherits_browser.js +27 -0
  275. package/node_modules/inherits/package.json +29 -0
  276. package/node_modules/ip-address/LICENSE +19 -0
  277. package/node_modules/ip-address/README.md +96 -0
  278. package/node_modules/ip-address/ip-address.js +8 -0
  279. package/node_modules/ip-address/lib/common.js +39 -0
  280. package/node_modules/ip-address/lib/ipv4.js +320 -0
  281. package/node_modules/ip-address/lib/ipv6.js +971 -0
  282. package/node_modules/ip-address/lib/v4/constants.js +6 -0
  283. package/node_modules/ip-address/lib/v6/attributes.js +106 -0
  284. package/node_modules/ip-address/lib/v6/constants.js +79 -0
  285. package/node_modules/ip-address/lib/v6/helpers.js +64 -0
  286. package/node_modules/ip-address/lib/v6/html.js +107 -0
  287. package/node_modules/ip-address/lib/v6/regular-expressions.js +159 -0
  288. package/node_modules/ip-address/package.json +50 -0
  289. package/node_modules/jsbn/.npmignore +2 -0
  290. package/node_modules/jsbn/CHANGELOG.md +16 -0
  291. package/node_modules/jsbn/LICENSE +40 -0
  292. package/node_modules/jsbn/README.md +173 -0
  293. package/node_modules/jsbn/example.html +11 -0
  294. package/node_modules/jsbn/example.js +5 -0
  295. package/node_modules/jsbn/index.js +1361 -0
  296. package/node_modules/jsbn/package.json +21 -0
  297. package/node_modules/jsbn/test/es6-import.js +3 -0
  298. package/node_modules/lazy/.npmignore +1 -0
  299. package/node_modules/lazy/README.md +185 -0
  300. package/node_modules/lazy/lazy.js +349 -0
  301. package/node_modules/lazy/lazy.js~ +348 -0
  302. package/node_modules/lazy/package.json +32 -0
  303. package/node_modules/lazy/package.json~ +32 -0
  304. package/node_modules/lazy/test/bucket.js +37 -0
  305. package/node_modules/lazy/test/complex.js +52 -0
  306. package/node_modules/lazy/test/custom.js +32 -0
  307. package/node_modules/lazy/test/em.js +33 -0
  308. package/node_modules/lazy/test/filter.js +27 -0
  309. package/node_modules/lazy/test/foldr.js +26 -0
  310. package/node_modules/lazy/test/forEach.js +31 -0
  311. package/node_modules/lazy/test/head.js +26 -0
  312. package/node_modules/lazy/test/join.js +26 -0
  313. package/node_modules/lazy/test/lines.js +89 -0
  314. package/node_modules/lazy/test/map.js +29 -0
  315. package/node_modules/lazy/test/pipe.js +38 -0
  316. package/node_modules/lazy/test/product.js +26 -0
  317. package/node_modules/lazy/test/range.js +272 -0
  318. package/node_modules/lazy/test/skip.js +27 -0
  319. package/node_modules/lazy/test/sum.js +26 -0
  320. package/node_modules/lazy/test/tail.js +27 -0
  321. package/node_modules/lazy/test/take.js +26 -0
  322. package/node_modules/lazy/test/takeWhile.js +26 -0
  323. package/node_modules/lodash/LICENSE +47 -0
  324. package/node_modules/lodash/README.md +39 -0
  325. package/node_modules/lodash/_DataView.js +7 -0
  326. package/node_modules/lodash/_Hash.js +32 -0
  327. package/node_modules/lodash/_LazyWrapper.js +28 -0
  328. package/node_modules/lodash/_ListCache.js +32 -0
  329. package/node_modules/lodash/_LodashWrapper.js +22 -0
  330. package/node_modules/lodash/_Map.js +7 -0
  331. package/node_modules/lodash/_MapCache.js +32 -0
  332. package/node_modules/lodash/_Promise.js +7 -0
  333. package/node_modules/lodash/_Set.js +7 -0
  334. package/node_modules/lodash/_SetCache.js +27 -0
  335. package/node_modules/lodash/_Stack.js +27 -0
  336. package/node_modules/lodash/_Symbol.js +6 -0
  337. package/node_modules/lodash/_Uint8Array.js +6 -0
  338. package/node_modules/lodash/_WeakMap.js +7 -0
  339. package/node_modules/lodash/_apply.js +21 -0
  340. package/node_modules/lodash/_arrayAggregator.js +22 -0
  341. package/node_modules/lodash/_arrayEach.js +22 -0
  342. package/node_modules/lodash/_arrayEachRight.js +21 -0
  343. package/node_modules/lodash/_arrayEvery.js +23 -0
  344. package/node_modules/lodash/_arrayFilter.js +25 -0
  345. package/node_modules/lodash/_arrayIncludes.js +17 -0
  346. package/node_modules/lodash/_arrayIncludesWith.js +22 -0
  347. package/node_modules/lodash/_arrayLikeKeys.js +49 -0
  348. package/node_modules/lodash/_arrayMap.js +21 -0
  349. package/node_modules/lodash/_arrayPush.js +20 -0
  350. package/node_modules/lodash/_arrayReduce.js +26 -0
  351. package/node_modules/lodash/_arrayReduceRight.js +24 -0
  352. package/node_modules/lodash/_arraySample.js +15 -0
  353. package/node_modules/lodash/_arraySampleSize.js +17 -0
  354. package/node_modules/lodash/_arrayShuffle.js +15 -0
  355. package/node_modules/lodash/_arraySome.js +23 -0
  356. package/node_modules/lodash/_asciiSize.js +12 -0
  357. package/node_modules/lodash/_asciiToArray.js +12 -0
  358. package/node_modules/lodash/_asciiWords.js +15 -0
  359. package/node_modules/lodash/_assignMergeValue.js +20 -0
  360. package/node_modules/lodash/_assignValue.js +28 -0
  361. package/node_modules/lodash/_assocIndexOf.js +21 -0
  362. package/node_modules/lodash/_baseAggregator.js +21 -0
  363. package/node_modules/lodash/_baseAssign.js +17 -0
  364. package/node_modules/lodash/_baseAssignIn.js +17 -0
  365. package/node_modules/lodash/_baseAssignValue.js +25 -0
  366. package/node_modules/lodash/_baseAt.js +23 -0
  367. package/node_modules/lodash/_baseClamp.js +22 -0
  368. package/node_modules/lodash/_baseClone.js +166 -0
  369. package/node_modules/lodash/_baseConforms.js +18 -0
  370. package/node_modules/lodash/_baseConformsTo.js +27 -0
  371. package/node_modules/lodash/_baseCreate.js +30 -0
  372. package/node_modules/lodash/_baseDelay.js +21 -0
  373. package/node_modules/lodash/_baseDifference.js +67 -0
  374. package/node_modules/lodash/_baseEach.js +14 -0
  375. package/node_modules/lodash/_baseEachRight.js +14 -0
  376. package/node_modules/lodash/_baseEvery.js +21 -0
  377. package/node_modules/lodash/_baseExtremum.js +32 -0
  378. package/node_modules/lodash/_baseFill.js +32 -0
  379. package/node_modules/lodash/_baseFilter.js +21 -0
  380. package/node_modules/lodash/_baseFindIndex.js +24 -0
  381. package/node_modules/lodash/_baseFindKey.js +23 -0
  382. package/node_modules/lodash/_baseFlatten.js +38 -0
  383. package/node_modules/lodash/_baseFor.js +16 -0
  384. package/node_modules/lodash/_baseForOwn.js +16 -0
  385. package/node_modules/lodash/_baseForOwnRight.js +16 -0
  386. package/node_modules/lodash/_baseForRight.js +15 -0
  387. package/node_modules/lodash/_baseFunctions.js +19 -0
  388. package/node_modules/lodash/_baseGet.js +24 -0
  389. package/node_modules/lodash/_baseGetAllKeys.js +20 -0
  390. package/node_modules/lodash/_baseGetTag.js +28 -0
  391. package/node_modules/lodash/_baseGt.js +14 -0
  392. package/node_modules/lodash/_baseHas.js +19 -0
  393. package/node_modules/lodash/_baseHasIn.js +13 -0
  394. package/node_modules/lodash/_baseInRange.js +18 -0
  395. package/node_modules/lodash/_baseIndexOf.js +20 -0
  396. package/node_modules/lodash/_baseIndexOfWith.js +23 -0
  397. package/node_modules/lodash/_baseIntersection.js +74 -0
  398. package/node_modules/lodash/_baseInverter.js +21 -0
  399. package/node_modules/lodash/_baseInvoke.js +24 -0
  400. package/node_modules/lodash/_baseIsArguments.js +18 -0
  401. package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  402. package/node_modules/lodash/_baseIsDate.js +18 -0
  403. package/node_modules/lodash/_baseIsEqual.js +28 -0
  404. package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  405. package/node_modules/lodash/_baseIsMap.js +18 -0
  406. package/node_modules/lodash/_baseIsMatch.js +62 -0
  407. package/node_modules/lodash/_baseIsNaN.js +12 -0
  408. package/node_modules/lodash/_baseIsNative.js +47 -0
  409. package/node_modules/lodash/_baseIsRegExp.js +18 -0
  410. package/node_modules/lodash/_baseIsSet.js +18 -0
  411. package/node_modules/lodash/_baseIsTypedArray.js +60 -0
  412. package/node_modules/lodash/_baseIteratee.js +31 -0
  413. package/node_modules/lodash/_baseKeys.js +30 -0
  414. package/node_modules/lodash/_baseKeysIn.js +33 -0
  415. package/node_modules/lodash/_baseLodash.js +10 -0
  416. package/node_modules/lodash/_baseLt.js +14 -0
  417. package/node_modules/lodash/_baseMap.js +22 -0
  418. package/node_modules/lodash/_baseMatches.js +22 -0
  419. package/node_modules/lodash/_baseMatchesProperty.js +33 -0
  420. package/node_modules/lodash/_baseMean.js +20 -0
  421. package/node_modules/lodash/_baseMerge.js +42 -0
  422. package/node_modules/lodash/_baseMergeDeep.js +94 -0
  423. package/node_modules/lodash/_baseNth.js +20 -0
  424. package/node_modules/lodash/_baseOrderBy.js +49 -0
  425. package/node_modules/lodash/_basePick.js +19 -0
  426. package/node_modules/lodash/_basePickBy.js +30 -0
  427. package/node_modules/lodash/_baseProperty.js +14 -0
  428. package/node_modules/lodash/_basePropertyDeep.js +16 -0
  429. package/node_modules/lodash/_basePropertyOf.js +14 -0
  430. package/node_modules/lodash/_basePullAll.js +51 -0
  431. package/node_modules/lodash/_basePullAt.js +37 -0
  432. package/node_modules/lodash/_baseRandom.js +18 -0
  433. package/node_modules/lodash/_baseRange.js +28 -0
  434. package/node_modules/lodash/_baseReduce.js +23 -0
  435. package/node_modules/lodash/_baseRepeat.js +35 -0
  436. package/node_modules/lodash/_baseRest.js +17 -0
  437. package/node_modules/lodash/_baseSample.js +15 -0
  438. package/node_modules/lodash/_baseSampleSize.js +18 -0
  439. package/node_modules/lodash/_baseSet.js +51 -0
  440. package/node_modules/lodash/_baseSetData.js +17 -0
  441. package/node_modules/lodash/_baseSetToString.js +22 -0
  442. package/node_modules/lodash/_baseShuffle.js +15 -0
  443. package/node_modules/lodash/_baseSlice.js +31 -0
  444. package/node_modules/lodash/_baseSome.js +22 -0
  445. package/node_modules/lodash/_baseSortBy.js +21 -0
  446. package/node_modules/lodash/_baseSortedIndex.js +42 -0
  447. package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  448. package/node_modules/lodash/_baseSortedUniq.js +30 -0
  449. package/node_modules/lodash/_baseSum.js +24 -0
  450. package/node_modules/lodash/_baseTimes.js +20 -0
  451. package/node_modules/lodash/_baseToNumber.js +24 -0
  452. package/node_modules/lodash/_baseToPairs.js +18 -0
  453. package/node_modules/lodash/_baseToString.js +37 -0
  454. package/node_modules/lodash/_baseTrim.js +19 -0
  455. package/node_modules/lodash/_baseUnary.js +14 -0
  456. package/node_modules/lodash/_baseUniq.js +72 -0
  457. package/node_modules/lodash/_baseUnset.js +20 -0
  458. package/node_modules/lodash/_baseUpdate.js +18 -0
  459. package/node_modules/lodash/_baseValues.js +19 -0
  460. package/node_modules/lodash/_baseWhile.js +26 -0
  461. package/node_modules/lodash/_baseWrapperValue.js +25 -0
  462. package/node_modules/lodash/_baseXor.js +36 -0
  463. package/node_modules/lodash/_baseZipObject.js +23 -0
  464. package/node_modules/lodash/_cacheHas.js +13 -0
  465. package/node_modules/lodash/_castArrayLikeObject.js +14 -0
  466. package/node_modules/lodash/_castFunction.js +14 -0
  467. package/node_modules/lodash/_castPath.js +21 -0
  468. package/node_modules/lodash/_castRest.js +14 -0
  469. package/node_modules/lodash/_castSlice.js +18 -0
  470. package/node_modules/lodash/_charsEndIndex.js +19 -0
  471. package/node_modules/lodash/_charsStartIndex.js +20 -0
  472. package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  473. package/node_modules/lodash/_cloneBuffer.js +35 -0
  474. package/node_modules/lodash/_cloneDataView.js +16 -0
  475. package/node_modules/lodash/_cloneRegExp.js +17 -0
  476. package/node_modules/lodash/_cloneSymbol.js +18 -0
  477. package/node_modules/lodash/_cloneTypedArray.js +16 -0
  478. package/node_modules/lodash/_compareAscending.js +41 -0
  479. package/node_modules/lodash/_compareMultiple.js +44 -0
  480. package/node_modules/lodash/_composeArgs.js +39 -0
  481. package/node_modules/lodash/_composeArgsRight.js +41 -0
  482. package/node_modules/lodash/_copyArray.js +20 -0
  483. package/node_modules/lodash/_copyObject.js +40 -0
  484. package/node_modules/lodash/_copySymbols.js +16 -0
  485. package/node_modules/lodash/_copySymbolsIn.js +16 -0
  486. package/node_modules/lodash/_coreJsData.js +6 -0
  487. package/node_modules/lodash/_countHolders.js +21 -0
  488. package/node_modules/lodash/_createAggregator.js +23 -0
  489. package/node_modules/lodash/_createAssigner.js +37 -0
  490. package/node_modules/lodash/_createBaseEach.js +32 -0
  491. package/node_modules/lodash/_createBaseFor.js +25 -0
  492. package/node_modules/lodash/_createBind.js +28 -0
  493. package/node_modules/lodash/_createCaseFirst.js +33 -0
  494. package/node_modules/lodash/_createCompounder.js +24 -0
  495. package/node_modules/lodash/_createCtor.js +37 -0
  496. package/node_modules/lodash/_createCurry.js +46 -0
  497. package/node_modules/lodash/_createFind.js +25 -0
  498. package/node_modules/lodash/_createFlow.js +78 -0
  499. package/node_modules/lodash/_createHybrid.js +92 -0
  500. package/node_modules/lodash/_createInverter.js +17 -0
  501. package/node_modules/lodash/_createMathOperation.js +38 -0
  502. package/node_modules/lodash/_createOver.js +27 -0
  503. package/node_modules/lodash/_createPadding.js +33 -0
  504. package/node_modules/lodash/_createPartial.js +43 -0
  505. package/node_modules/lodash/_createRange.js +30 -0
  506. package/node_modules/lodash/_createRecurry.js +56 -0
  507. package/node_modules/lodash/_createRelationalOperation.js +20 -0
  508. package/node_modules/lodash/_createRound.js +35 -0
  509. package/node_modules/lodash/_createSet.js +19 -0
  510. package/node_modules/lodash/_createToPairs.js +30 -0
  511. package/node_modules/lodash/_createWrap.js +106 -0
  512. package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  513. package/node_modules/lodash/_customDefaultsMerge.js +28 -0
  514. package/node_modules/lodash/_customOmitClone.js +16 -0
  515. package/node_modules/lodash/_deburrLetter.js +71 -0
  516. package/node_modules/lodash/_defineProperty.js +11 -0
  517. package/node_modules/lodash/_equalArrays.js +84 -0
  518. package/node_modules/lodash/_equalByTag.js +112 -0
  519. package/node_modules/lodash/_equalObjects.js +90 -0
  520. package/node_modules/lodash/_escapeHtmlChar.js +21 -0
  521. package/node_modules/lodash/_escapeStringChar.js +22 -0
  522. package/node_modules/lodash/_flatRest.js +16 -0
  523. package/node_modules/lodash/_freeGlobal.js +4 -0
  524. package/node_modules/lodash/_getAllKeys.js +16 -0
  525. package/node_modules/lodash/_getAllKeysIn.js +17 -0
  526. package/node_modules/lodash/_getData.js +15 -0
  527. package/node_modules/lodash/_getFuncName.js +31 -0
  528. package/node_modules/lodash/_getHolder.js +13 -0
  529. package/node_modules/lodash/_getMapData.js +18 -0
  530. package/node_modules/lodash/_getMatchData.js +24 -0
  531. package/node_modules/lodash/_getNative.js +17 -0
  532. package/node_modules/lodash/_getPrototype.js +6 -0
  533. package/node_modules/lodash/_getRawTag.js +46 -0
  534. package/node_modules/lodash/_getSymbols.js +30 -0
  535. package/node_modules/lodash/_getSymbolsIn.js +25 -0
  536. package/node_modules/lodash/_getTag.js +58 -0
  537. package/node_modules/lodash/_getValue.js +13 -0
  538. package/node_modules/lodash/_getView.js +33 -0
  539. package/node_modules/lodash/_getWrapDetails.js +17 -0
  540. package/node_modules/lodash/_hasPath.js +39 -0
  541. package/node_modules/lodash/_hasUnicode.js +26 -0
  542. package/node_modules/lodash/_hasUnicodeWord.js +15 -0
  543. package/node_modules/lodash/_hashClear.js +15 -0
  544. package/node_modules/lodash/_hashDelete.js +17 -0
  545. package/node_modules/lodash/_hashGet.js +30 -0
  546. package/node_modules/lodash/_hashHas.js +23 -0
  547. package/node_modules/lodash/_hashSet.js +23 -0
  548. package/node_modules/lodash/_initCloneArray.js +26 -0
  549. package/node_modules/lodash/_initCloneByTag.js +77 -0
  550. package/node_modules/lodash/_initCloneObject.js +18 -0
  551. package/node_modules/lodash/_insertWrapDetails.js +23 -0
  552. package/node_modules/lodash/_isFlattenable.js +20 -0
  553. package/node_modules/lodash/_isIndex.js +25 -0
  554. package/node_modules/lodash/_isIterateeCall.js +30 -0
  555. package/node_modules/lodash/_isKey.js +29 -0
  556. package/node_modules/lodash/_isKeyable.js +15 -0
  557. package/node_modules/lodash/_isLaziable.js +28 -0
  558. package/node_modules/lodash/_isMaskable.js +14 -0
  559. package/node_modules/lodash/_isMasked.js +20 -0
  560. package/node_modules/lodash/_isPrototype.js +18 -0
  561. package/node_modules/lodash/_isStrictComparable.js +15 -0
  562. package/node_modules/lodash/_iteratorToArray.js +18 -0
  563. package/node_modules/lodash/_lazyClone.js +23 -0
  564. package/node_modules/lodash/_lazyReverse.js +23 -0
  565. package/node_modules/lodash/_lazyValue.js +69 -0
  566. package/node_modules/lodash/_listCacheClear.js +13 -0
  567. package/node_modules/lodash/_listCacheDelete.js +35 -0
  568. package/node_modules/lodash/_listCacheGet.js +19 -0
  569. package/node_modules/lodash/_listCacheHas.js +16 -0
  570. package/node_modules/lodash/_listCacheSet.js +26 -0
  571. package/node_modules/lodash/_mapCacheClear.js +21 -0
  572. package/node_modules/lodash/_mapCacheDelete.js +18 -0
  573. package/node_modules/lodash/_mapCacheGet.js +16 -0
  574. package/node_modules/lodash/_mapCacheHas.js +16 -0
  575. package/node_modules/lodash/_mapCacheSet.js +22 -0
  576. package/node_modules/lodash/_mapToArray.js +18 -0
  577. package/node_modules/lodash/_matchesStrictComparable.js +20 -0
  578. package/node_modules/lodash/_memoizeCapped.js +26 -0
  579. package/node_modules/lodash/_mergeData.js +90 -0
  580. package/node_modules/lodash/_metaMap.js +6 -0
  581. package/node_modules/lodash/_nativeCreate.js +6 -0
  582. package/node_modules/lodash/_nativeKeys.js +6 -0
  583. package/node_modules/lodash/_nativeKeysIn.js +20 -0
  584. package/node_modules/lodash/_nodeUtil.js +30 -0
  585. package/node_modules/lodash/_objectToString.js +22 -0
  586. package/node_modules/lodash/_overArg.js +15 -0
  587. package/node_modules/lodash/_overRest.js +36 -0
  588. package/node_modules/lodash/_parent.js +16 -0
  589. package/node_modules/lodash/_reEscape.js +4 -0
  590. package/node_modules/lodash/_reEvaluate.js +4 -0
  591. package/node_modules/lodash/_reInterpolate.js +4 -0
  592. package/node_modules/lodash/_realNames.js +4 -0
  593. package/node_modules/lodash/_reorder.js +29 -0
  594. package/node_modules/lodash/_replaceHolders.js +29 -0
  595. package/node_modules/lodash/_root.js +9 -0
  596. package/node_modules/lodash/_safeGet.js +21 -0
  597. package/node_modules/lodash/_setCacheAdd.js +19 -0
  598. package/node_modules/lodash/_setCacheHas.js +14 -0
  599. package/node_modules/lodash/_setData.js +20 -0
  600. package/node_modules/lodash/_setToArray.js +18 -0
  601. package/node_modules/lodash/_setToPairs.js +18 -0
  602. package/node_modules/lodash/_setToString.js +14 -0
  603. package/node_modules/lodash/_setWrapToString.js +21 -0
  604. package/node_modules/lodash/_shortOut.js +37 -0
  605. package/node_modules/lodash/_shuffleSelf.js +28 -0
  606. package/node_modules/lodash/_stackClear.js +15 -0
  607. package/node_modules/lodash/_stackDelete.js +18 -0
  608. package/node_modules/lodash/_stackGet.js +14 -0
  609. package/node_modules/lodash/_stackHas.js +14 -0
  610. package/node_modules/lodash/_stackSet.js +34 -0
  611. package/node_modules/lodash/_strictIndexOf.js +23 -0
  612. package/node_modules/lodash/_strictLastIndexOf.js +21 -0
  613. package/node_modules/lodash/_stringSize.js +18 -0
  614. package/node_modules/lodash/_stringToArray.js +18 -0
  615. package/node_modules/lodash/_stringToPath.js +27 -0
  616. package/node_modules/lodash/_toKey.js +21 -0
  617. package/node_modules/lodash/_toSource.js +26 -0
  618. package/node_modules/lodash/_trimmedEndIndex.js +19 -0
  619. package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  620. package/node_modules/lodash/_unicodeSize.js +44 -0
  621. package/node_modules/lodash/_unicodeToArray.js +40 -0
  622. package/node_modules/lodash/_unicodeWords.js +69 -0
  623. package/node_modules/lodash/_updateWrapDetails.js +46 -0
  624. package/node_modules/lodash/_wrapperClone.js +23 -0
  625. package/node_modules/lodash/add.js +22 -0
  626. package/node_modules/lodash/after.js +42 -0
  627. package/node_modules/lodash/array.js +67 -0
  628. package/node_modules/lodash/ary.js +29 -0
  629. package/node_modules/lodash/assign.js +58 -0
  630. package/node_modules/lodash/assignIn.js +40 -0
  631. package/node_modules/lodash/assignInWith.js +38 -0
  632. package/node_modules/lodash/assignWith.js +37 -0
  633. package/node_modules/lodash/at.js +23 -0
  634. package/node_modules/lodash/attempt.js +35 -0
  635. package/node_modules/lodash/before.js +40 -0
  636. package/node_modules/lodash/bind.js +57 -0
  637. package/node_modules/lodash/bindAll.js +41 -0
  638. package/node_modules/lodash/bindKey.js +68 -0
  639. package/node_modules/lodash/camelCase.js +29 -0
  640. package/node_modules/lodash/capitalize.js +23 -0
  641. package/node_modules/lodash/castArray.js +44 -0
  642. package/node_modules/lodash/ceil.js +26 -0
  643. package/node_modules/lodash/chain.js +38 -0
  644. package/node_modules/lodash/chunk.js +50 -0
  645. package/node_modules/lodash/clamp.js +39 -0
  646. package/node_modules/lodash/clone.js +36 -0
  647. package/node_modules/lodash/cloneDeep.js +29 -0
  648. package/node_modules/lodash/cloneDeepWith.js +40 -0
  649. package/node_modules/lodash/cloneWith.js +42 -0
  650. package/node_modules/lodash/collection.js +30 -0
  651. package/node_modules/lodash/commit.js +33 -0
  652. package/node_modules/lodash/compact.js +31 -0
  653. package/node_modules/lodash/concat.js +43 -0
  654. package/node_modules/lodash/cond.js +60 -0
  655. package/node_modules/lodash/conforms.js +35 -0
  656. package/node_modules/lodash/conformsTo.js +32 -0
  657. package/node_modules/lodash/constant.js +26 -0
  658. package/node_modules/lodash/core.js +3877 -0
  659. package/node_modules/lodash/core.min.js +29 -0
  660. package/node_modules/lodash/countBy.js +40 -0
  661. package/node_modules/lodash/create.js +43 -0
  662. package/node_modules/lodash/curry.js +57 -0
  663. package/node_modules/lodash/curryRight.js +54 -0
  664. package/node_modules/lodash/date.js +3 -0
  665. package/node_modules/lodash/debounce.js +191 -0
  666. package/node_modules/lodash/deburr.js +45 -0
  667. package/node_modules/lodash/defaultTo.js +25 -0
  668. package/node_modules/lodash/defaults.js +64 -0
  669. package/node_modules/lodash/defaultsDeep.js +30 -0
  670. package/node_modules/lodash/defer.js +26 -0
  671. package/node_modules/lodash/delay.js +28 -0
  672. package/node_modules/lodash/difference.js +33 -0
  673. package/node_modules/lodash/differenceBy.js +44 -0
  674. package/node_modules/lodash/differenceWith.js +40 -0
  675. package/node_modules/lodash/divide.js +22 -0
  676. package/node_modules/lodash/drop.js +38 -0
  677. package/node_modules/lodash/dropRight.js +39 -0
  678. package/node_modules/lodash/dropRightWhile.js +45 -0
  679. package/node_modules/lodash/dropWhile.js +45 -0
  680. package/node_modules/lodash/each.js +1 -0
  681. package/node_modules/lodash/eachRight.js +1 -0
  682. package/node_modules/lodash/endsWith.js +43 -0
  683. package/node_modules/lodash/entries.js +1 -0
  684. package/node_modules/lodash/entriesIn.js +1 -0
  685. package/node_modules/lodash/eq.js +37 -0
  686. package/node_modules/lodash/escape.js +43 -0
  687. package/node_modules/lodash/escapeRegExp.js +32 -0
  688. package/node_modules/lodash/every.js +56 -0
  689. package/node_modules/lodash/extend.js +1 -0
  690. package/node_modules/lodash/extendWith.js +1 -0
  691. package/node_modules/lodash/fill.js +45 -0
  692. package/node_modules/lodash/filter.js +52 -0
  693. package/node_modules/lodash/find.js +42 -0
  694. package/node_modules/lodash/findIndex.js +55 -0
  695. package/node_modules/lodash/findKey.js +44 -0
  696. package/node_modules/lodash/findLast.js +25 -0
  697. package/node_modules/lodash/findLastIndex.js +59 -0
  698. package/node_modules/lodash/findLastKey.js +44 -0
  699. package/node_modules/lodash/first.js +1 -0
  700. package/node_modules/lodash/flake.lock +40 -0
  701. package/node_modules/lodash/flake.nix +20 -0
  702. package/node_modules/lodash/flatMap.js +29 -0
  703. package/node_modules/lodash/flatMapDeep.js +31 -0
  704. package/node_modules/lodash/flatMapDepth.js +31 -0
  705. package/node_modules/lodash/flatten.js +22 -0
  706. package/node_modules/lodash/flattenDeep.js +25 -0
  707. package/node_modules/lodash/flattenDepth.js +33 -0
  708. package/node_modules/lodash/flip.js +28 -0
  709. package/node_modules/lodash/floor.js +26 -0
  710. package/node_modules/lodash/flow.js +27 -0
  711. package/node_modules/lodash/flowRight.js +26 -0
  712. package/node_modules/lodash/forEach.js +41 -0
  713. package/node_modules/lodash/forEachRight.js +31 -0
  714. package/node_modules/lodash/forIn.js +39 -0
  715. package/node_modules/lodash/forInRight.js +37 -0
  716. package/node_modules/lodash/forOwn.js +36 -0
  717. package/node_modules/lodash/forOwnRight.js +34 -0
  718. package/node_modules/lodash/fp/F.js +1 -0
  719. package/node_modules/lodash/fp/T.js +1 -0
  720. package/node_modules/lodash/fp/__.js +1 -0
  721. package/node_modules/lodash/fp/_baseConvert.js +569 -0
  722. package/node_modules/lodash/fp/_convertBrowser.js +18 -0
  723. package/node_modules/lodash/fp/_falseOptions.js +7 -0
  724. package/node_modules/lodash/fp/_mapping.js +358 -0
  725. package/node_modules/lodash/fp/_util.js +16 -0
  726. package/node_modules/lodash/fp/add.js +5 -0
  727. package/node_modules/lodash/fp/after.js +5 -0
  728. package/node_modules/lodash/fp/all.js +1 -0
  729. package/node_modules/lodash/fp/allPass.js +1 -0
  730. package/node_modules/lodash/fp/always.js +1 -0
  731. package/node_modules/lodash/fp/any.js +1 -0
  732. package/node_modules/lodash/fp/anyPass.js +1 -0
  733. package/node_modules/lodash/fp/apply.js +1 -0
  734. package/node_modules/lodash/fp/array.js +2 -0
  735. package/node_modules/lodash/fp/ary.js +5 -0
  736. package/node_modules/lodash/fp/assign.js +5 -0
  737. package/node_modules/lodash/fp/assignAll.js +5 -0
  738. package/node_modules/lodash/fp/assignAllWith.js +5 -0
  739. package/node_modules/lodash/fp/assignIn.js +5 -0
  740. package/node_modules/lodash/fp/assignInAll.js +5 -0
  741. package/node_modules/lodash/fp/assignInAllWith.js +5 -0
  742. package/node_modules/lodash/fp/assignInWith.js +5 -0
  743. package/node_modules/lodash/fp/assignWith.js +5 -0
  744. package/node_modules/lodash/fp/assoc.js +1 -0
  745. package/node_modules/lodash/fp/assocPath.js +1 -0
  746. package/node_modules/lodash/fp/at.js +5 -0
  747. package/node_modules/lodash/fp/attempt.js +5 -0
  748. package/node_modules/lodash/fp/before.js +5 -0
  749. package/node_modules/lodash/fp/bind.js +5 -0
  750. package/node_modules/lodash/fp/bindAll.js +5 -0
  751. package/node_modules/lodash/fp/bindKey.js +5 -0
  752. package/node_modules/lodash/fp/camelCase.js +5 -0
  753. package/node_modules/lodash/fp/capitalize.js +5 -0
  754. package/node_modules/lodash/fp/castArray.js +5 -0
  755. package/node_modules/lodash/fp/ceil.js +5 -0
  756. package/node_modules/lodash/fp/chain.js +5 -0
  757. package/node_modules/lodash/fp/chunk.js +5 -0
  758. package/node_modules/lodash/fp/clamp.js +5 -0
  759. package/node_modules/lodash/fp/clone.js +5 -0
  760. package/node_modules/lodash/fp/cloneDeep.js +5 -0
  761. package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  762. package/node_modules/lodash/fp/cloneWith.js +5 -0
  763. package/node_modules/lodash/fp/collection.js +2 -0
  764. package/node_modules/lodash/fp/commit.js +5 -0
  765. package/node_modules/lodash/fp/compact.js +5 -0
  766. package/node_modules/lodash/fp/complement.js +1 -0
  767. package/node_modules/lodash/fp/compose.js +1 -0
  768. package/node_modules/lodash/fp/concat.js +5 -0
  769. package/node_modules/lodash/fp/cond.js +5 -0
  770. package/node_modules/lodash/fp/conforms.js +1 -0
  771. package/node_modules/lodash/fp/conformsTo.js +5 -0
  772. package/node_modules/lodash/fp/constant.js +5 -0
  773. package/node_modules/lodash/fp/contains.js +1 -0
  774. package/node_modules/lodash/fp/convert.js +18 -0
  775. package/node_modules/lodash/fp/countBy.js +5 -0
  776. package/node_modules/lodash/fp/create.js +5 -0
  777. package/node_modules/lodash/fp/curry.js +5 -0
  778. package/node_modules/lodash/fp/curryN.js +5 -0
  779. package/node_modules/lodash/fp/curryRight.js +5 -0
  780. package/node_modules/lodash/fp/curryRightN.js +5 -0
  781. package/node_modules/lodash/fp/date.js +2 -0
  782. package/node_modules/lodash/fp/debounce.js +5 -0
  783. package/node_modules/lodash/fp/deburr.js +5 -0
  784. package/node_modules/lodash/fp/defaultTo.js +5 -0
  785. package/node_modules/lodash/fp/defaults.js +5 -0
  786. package/node_modules/lodash/fp/defaultsAll.js +5 -0
  787. package/node_modules/lodash/fp/defaultsDeep.js +5 -0
  788. package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  789. package/node_modules/lodash/fp/defer.js +5 -0
  790. package/node_modules/lodash/fp/delay.js +5 -0
  791. package/node_modules/lodash/fp/difference.js +5 -0
  792. package/node_modules/lodash/fp/differenceBy.js +5 -0
  793. package/node_modules/lodash/fp/differenceWith.js +5 -0
  794. package/node_modules/lodash/fp/dissoc.js +1 -0
  795. package/node_modules/lodash/fp/dissocPath.js +1 -0
  796. package/node_modules/lodash/fp/divide.js +5 -0
  797. package/node_modules/lodash/fp/drop.js +5 -0
  798. package/node_modules/lodash/fp/dropLast.js +1 -0
  799. package/node_modules/lodash/fp/dropLastWhile.js +1 -0
  800. package/node_modules/lodash/fp/dropRight.js +5 -0
  801. package/node_modules/lodash/fp/dropRightWhile.js +5 -0
  802. package/node_modules/lodash/fp/dropWhile.js +5 -0
  803. package/node_modules/lodash/fp/each.js +1 -0
  804. package/node_modules/lodash/fp/eachRight.js +1 -0
  805. package/node_modules/lodash/fp/endsWith.js +5 -0
  806. package/node_modules/lodash/fp/entries.js +1 -0
  807. package/node_modules/lodash/fp/entriesIn.js +1 -0
  808. package/node_modules/lodash/fp/eq.js +5 -0
  809. package/node_modules/lodash/fp/equals.js +1 -0
  810. package/node_modules/lodash/fp/escape.js +5 -0
  811. package/node_modules/lodash/fp/escapeRegExp.js +5 -0
  812. package/node_modules/lodash/fp/every.js +5 -0
  813. package/node_modules/lodash/fp/extend.js +1 -0
  814. package/node_modules/lodash/fp/extendAll.js +1 -0
  815. package/node_modules/lodash/fp/extendAllWith.js +1 -0
  816. package/node_modules/lodash/fp/extendWith.js +1 -0
  817. package/node_modules/lodash/fp/fill.js +5 -0
  818. package/node_modules/lodash/fp/filter.js +5 -0
  819. package/node_modules/lodash/fp/find.js +5 -0
  820. package/node_modules/lodash/fp/findFrom.js +5 -0
  821. package/node_modules/lodash/fp/findIndex.js +5 -0
  822. package/node_modules/lodash/fp/findIndexFrom.js +5 -0
  823. package/node_modules/lodash/fp/findKey.js +5 -0
  824. package/node_modules/lodash/fp/findLast.js +5 -0
  825. package/node_modules/lodash/fp/findLastFrom.js +5 -0
  826. package/node_modules/lodash/fp/findLastIndex.js +5 -0
  827. package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  828. package/node_modules/lodash/fp/findLastKey.js +5 -0
  829. package/node_modules/lodash/fp/first.js +1 -0
  830. package/node_modules/lodash/fp/flatMap.js +5 -0
  831. package/node_modules/lodash/fp/flatMapDeep.js +5 -0
  832. package/node_modules/lodash/fp/flatMapDepth.js +5 -0
  833. package/node_modules/lodash/fp/flatten.js +5 -0
  834. package/node_modules/lodash/fp/flattenDeep.js +5 -0
  835. package/node_modules/lodash/fp/flattenDepth.js +5 -0
  836. package/node_modules/lodash/fp/flip.js +5 -0
  837. package/node_modules/lodash/fp/floor.js +5 -0
  838. package/node_modules/lodash/fp/flow.js +5 -0
  839. package/node_modules/lodash/fp/flowRight.js +5 -0
  840. package/node_modules/lodash/fp/forEach.js +5 -0
  841. package/node_modules/lodash/fp/forEachRight.js +5 -0
  842. package/node_modules/lodash/fp/forIn.js +5 -0
  843. package/node_modules/lodash/fp/forInRight.js +5 -0
  844. package/node_modules/lodash/fp/forOwn.js +5 -0
  845. package/node_modules/lodash/fp/forOwnRight.js +5 -0
  846. package/node_modules/lodash/fp/fromPairs.js +5 -0
  847. package/node_modules/lodash/fp/function.js +2 -0
  848. package/node_modules/lodash/fp/functions.js +5 -0
  849. package/node_modules/lodash/fp/functionsIn.js +5 -0
  850. package/node_modules/lodash/fp/get.js +5 -0
  851. package/node_modules/lodash/fp/getOr.js +5 -0
  852. package/node_modules/lodash/fp/groupBy.js +5 -0
  853. package/node_modules/lodash/fp/gt.js +5 -0
  854. package/node_modules/lodash/fp/gte.js +5 -0
  855. package/node_modules/lodash/fp/has.js +5 -0
  856. package/node_modules/lodash/fp/hasIn.js +5 -0
  857. package/node_modules/lodash/fp/head.js +5 -0
  858. package/node_modules/lodash/fp/identical.js +1 -0
  859. package/node_modules/lodash/fp/identity.js +5 -0
  860. package/node_modules/lodash/fp/inRange.js +5 -0
  861. package/node_modules/lodash/fp/includes.js +5 -0
  862. package/node_modules/lodash/fp/includesFrom.js +5 -0
  863. package/node_modules/lodash/fp/indexBy.js +1 -0
  864. package/node_modules/lodash/fp/indexOf.js +5 -0
  865. package/node_modules/lodash/fp/indexOfFrom.js +5 -0
  866. package/node_modules/lodash/fp/init.js +1 -0
  867. package/node_modules/lodash/fp/initial.js +5 -0
  868. package/node_modules/lodash/fp/intersection.js +5 -0
  869. package/node_modules/lodash/fp/intersectionBy.js +5 -0
  870. package/node_modules/lodash/fp/intersectionWith.js +5 -0
  871. package/node_modules/lodash/fp/invert.js +5 -0
  872. package/node_modules/lodash/fp/invertBy.js +5 -0
  873. package/node_modules/lodash/fp/invertObj.js +1 -0
  874. package/node_modules/lodash/fp/invoke.js +5 -0
  875. package/node_modules/lodash/fp/invokeArgs.js +5 -0
  876. package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  877. package/node_modules/lodash/fp/invokeMap.js +5 -0
  878. package/node_modules/lodash/fp/isArguments.js +5 -0
  879. package/node_modules/lodash/fp/isArray.js +5 -0
  880. package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  881. package/node_modules/lodash/fp/isArrayLike.js +5 -0
  882. package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  883. package/node_modules/lodash/fp/isBoolean.js +5 -0
  884. package/node_modules/lodash/fp/isBuffer.js +5 -0
  885. package/node_modules/lodash/fp/isDate.js +5 -0
  886. package/node_modules/lodash/fp/isElement.js +5 -0
  887. package/node_modules/lodash/fp/isEmpty.js +5 -0
  888. package/node_modules/lodash/fp/isEqual.js +5 -0
  889. package/node_modules/lodash/fp/isEqualWith.js +5 -0
  890. package/node_modules/lodash/fp/isError.js +5 -0
  891. package/node_modules/lodash/fp/isFinite.js +5 -0
  892. package/node_modules/lodash/fp/isFunction.js +5 -0
  893. package/node_modules/lodash/fp/isInteger.js +5 -0
  894. package/node_modules/lodash/fp/isLength.js +5 -0
  895. package/node_modules/lodash/fp/isMap.js +5 -0
  896. package/node_modules/lodash/fp/isMatch.js +5 -0
  897. package/node_modules/lodash/fp/isMatchWith.js +5 -0
  898. package/node_modules/lodash/fp/isNaN.js +5 -0
  899. package/node_modules/lodash/fp/isNative.js +5 -0
  900. package/node_modules/lodash/fp/isNil.js +5 -0
  901. package/node_modules/lodash/fp/isNull.js +5 -0
  902. package/node_modules/lodash/fp/isNumber.js +5 -0
  903. package/node_modules/lodash/fp/isObject.js +5 -0
  904. package/node_modules/lodash/fp/isObjectLike.js +5 -0
  905. package/node_modules/lodash/fp/isPlainObject.js +5 -0
  906. package/node_modules/lodash/fp/isRegExp.js +5 -0
  907. package/node_modules/lodash/fp/isSafeInteger.js +5 -0
  908. package/node_modules/lodash/fp/isSet.js +5 -0
  909. package/node_modules/lodash/fp/isString.js +5 -0
  910. package/node_modules/lodash/fp/isSymbol.js +5 -0
  911. package/node_modules/lodash/fp/isTypedArray.js +5 -0
  912. package/node_modules/lodash/fp/isUndefined.js +5 -0
  913. package/node_modules/lodash/fp/isWeakMap.js +5 -0
  914. package/node_modules/lodash/fp/isWeakSet.js +5 -0
  915. package/node_modules/lodash/fp/iteratee.js +5 -0
  916. package/node_modules/lodash/fp/join.js +5 -0
  917. package/node_modules/lodash/fp/juxt.js +1 -0
  918. package/node_modules/lodash/fp/kebabCase.js +5 -0
  919. package/node_modules/lodash/fp/keyBy.js +5 -0
  920. package/node_modules/lodash/fp/keys.js +5 -0
  921. package/node_modules/lodash/fp/keysIn.js +5 -0
  922. package/node_modules/lodash/fp/lang.js +2 -0
  923. package/node_modules/lodash/fp/last.js +5 -0
  924. package/node_modules/lodash/fp/lastIndexOf.js +5 -0
  925. package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  926. package/node_modules/lodash/fp/lowerCase.js +5 -0
  927. package/node_modules/lodash/fp/lowerFirst.js +5 -0
  928. package/node_modules/lodash/fp/lt.js +5 -0
  929. package/node_modules/lodash/fp/lte.js +5 -0
  930. package/node_modules/lodash/fp/map.js +5 -0
  931. package/node_modules/lodash/fp/mapKeys.js +5 -0
  932. package/node_modules/lodash/fp/mapValues.js +5 -0
  933. package/node_modules/lodash/fp/matches.js +1 -0
  934. package/node_modules/lodash/fp/matchesProperty.js +5 -0
  935. package/node_modules/lodash/fp/math.js +2 -0
  936. package/node_modules/lodash/fp/max.js +5 -0
  937. package/node_modules/lodash/fp/maxBy.js +5 -0
  938. package/node_modules/lodash/fp/mean.js +5 -0
  939. package/node_modules/lodash/fp/meanBy.js +5 -0
  940. package/node_modules/lodash/fp/memoize.js +5 -0
  941. package/node_modules/lodash/fp/merge.js +5 -0
  942. package/node_modules/lodash/fp/mergeAll.js +5 -0
  943. package/node_modules/lodash/fp/mergeAllWith.js +5 -0
  944. package/node_modules/lodash/fp/mergeWith.js +5 -0
  945. package/node_modules/lodash/fp/method.js +5 -0
  946. package/node_modules/lodash/fp/methodOf.js +5 -0
  947. package/node_modules/lodash/fp/min.js +5 -0
  948. package/node_modules/lodash/fp/minBy.js +5 -0
  949. package/node_modules/lodash/fp/mixin.js +5 -0
  950. package/node_modules/lodash/fp/multiply.js +5 -0
  951. package/node_modules/lodash/fp/nAry.js +1 -0
  952. package/node_modules/lodash/fp/negate.js +5 -0
  953. package/node_modules/lodash/fp/next.js +5 -0
  954. package/node_modules/lodash/fp/noop.js +5 -0
  955. package/node_modules/lodash/fp/now.js +5 -0
  956. package/node_modules/lodash/fp/nth.js +5 -0
  957. package/node_modules/lodash/fp/nthArg.js +5 -0
  958. package/node_modules/lodash/fp/number.js +2 -0
  959. package/node_modules/lodash/fp/object.js +2 -0
  960. package/node_modules/lodash/fp/omit.js +5 -0
  961. package/node_modules/lodash/fp/omitAll.js +1 -0
  962. package/node_modules/lodash/fp/omitBy.js +5 -0
  963. package/node_modules/lodash/fp/once.js +5 -0
  964. package/node_modules/lodash/fp/orderBy.js +5 -0
  965. package/node_modules/lodash/fp/over.js +5 -0
  966. package/node_modules/lodash/fp/overArgs.js +5 -0
  967. package/node_modules/lodash/fp/overEvery.js +5 -0
  968. package/node_modules/lodash/fp/overSome.js +5 -0
  969. package/node_modules/lodash/fp/pad.js +5 -0
  970. package/node_modules/lodash/fp/padChars.js +5 -0
  971. package/node_modules/lodash/fp/padCharsEnd.js +5 -0
  972. package/node_modules/lodash/fp/padCharsStart.js +5 -0
  973. package/node_modules/lodash/fp/padEnd.js +5 -0
  974. package/node_modules/lodash/fp/padStart.js +5 -0
  975. package/node_modules/lodash/fp/parseInt.js +5 -0
  976. package/node_modules/lodash/fp/partial.js +5 -0
  977. package/node_modules/lodash/fp/partialRight.js +5 -0
  978. package/node_modules/lodash/fp/partition.js +5 -0
  979. package/node_modules/lodash/fp/path.js +1 -0
  980. package/node_modules/lodash/fp/pathEq.js +1 -0
  981. package/node_modules/lodash/fp/pathOr.js +1 -0
  982. package/node_modules/lodash/fp/paths.js +1 -0
  983. package/node_modules/lodash/fp/pick.js +5 -0
  984. package/node_modules/lodash/fp/pickAll.js +1 -0
  985. package/node_modules/lodash/fp/pickBy.js +5 -0
  986. package/node_modules/lodash/fp/pipe.js +1 -0
  987. package/node_modules/lodash/fp/placeholder.js +6 -0
  988. package/node_modules/lodash/fp/plant.js +5 -0
  989. package/node_modules/lodash/fp/pluck.js +1 -0
  990. package/node_modules/lodash/fp/prop.js +1 -0
  991. package/node_modules/lodash/fp/propEq.js +1 -0
  992. package/node_modules/lodash/fp/propOr.js +1 -0
  993. package/node_modules/lodash/fp/property.js +1 -0
  994. package/node_modules/lodash/fp/propertyOf.js +5 -0
  995. package/node_modules/lodash/fp/props.js +1 -0
  996. package/node_modules/lodash/fp/pull.js +5 -0
  997. package/node_modules/lodash/fp/pullAll.js +5 -0
  998. package/node_modules/lodash/fp/pullAllBy.js +5 -0
  999. package/node_modules/lodash/fp/pullAllWith.js +5 -0
  1000. package/node_modules/lodash/fp/pullAt.js +5 -0
  1001. package/node_modules/lodash/fp/random.js +5 -0
  1002. package/node_modules/lodash/fp/range.js +5 -0
  1003. package/node_modules/lodash/fp/rangeRight.js +5 -0
  1004. package/node_modules/lodash/fp/rangeStep.js +5 -0
  1005. package/node_modules/lodash/fp/rangeStepRight.js +5 -0
  1006. package/node_modules/lodash/fp/rearg.js +5 -0
  1007. package/node_modules/lodash/fp/reduce.js +5 -0
  1008. package/node_modules/lodash/fp/reduceRight.js +5 -0
  1009. package/node_modules/lodash/fp/reject.js +5 -0
  1010. package/node_modules/lodash/fp/remove.js +5 -0
  1011. package/node_modules/lodash/fp/repeat.js +5 -0
  1012. package/node_modules/lodash/fp/replace.js +5 -0
  1013. package/node_modules/lodash/fp/rest.js +5 -0
  1014. package/node_modules/lodash/fp/restFrom.js +5 -0
  1015. package/node_modules/lodash/fp/result.js +5 -0
  1016. package/node_modules/lodash/fp/reverse.js +5 -0
  1017. package/node_modules/lodash/fp/round.js +5 -0
  1018. package/node_modules/lodash/fp/sample.js +5 -0
  1019. package/node_modules/lodash/fp/sampleSize.js +5 -0
  1020. package/node_modules/lodash/fp/seq.js +2 -0
  1021. package/node_modules/lodash/fp/set.js +5 -0
  1022. package/node_modules/lodash/fp/setWith.js +5 -0
  1023. package/node_modules/lodash/fp/shuffle.js +5 -0
  1024. package/node_modules/lodash/fp/size.js +5 -0
  1025. package/node_modules/lodash/fp/slice.js +5 -0
  1026. package/node_modules/lodash/fp/snakeCase.js +5 -0
  1027. package/node_modules/lodash/fp/some.js +5 -0
  1028. package/node_modules/lodash/fp/sortBy.js +5 -0
  1029. package/node_modules/lodash/fp/sortedIndex.js +5 -0
  1030. package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  1031. package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  1032. package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  1033. package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  1034. package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  1035. package/node_modules/lodash/fp/sortedUniq.js +5 -0
  1036. package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  1037. package/node_modules/lodash/fp/split.js +5 -0
  1038. package/node_modules/lodash/fp/spread.js +5 -0
  1039. package/node_modules/lodash/fp/spreadFrom.js +5 -0
  1040. package/node_modules/lodash/fp/startCase.js +5 -0
  1041. package/node_modules/lodash/fp/startsWith.js +5 -0
  1042. package/node_modules/lodash/fp/string.js +2 -0
  1043. package/node_modules/lodash/fp/stubArray.js +5 -0
  1044. package/node_modules/lodash/fp/stubFalse.js +5 -0
  1045. package/node_modules/lodash/fp/stubObject.js +5 -0
  1046. package/node_modules/lodash/fp/stubString.js +5 -0
  1047. package/node_modules/lodash/fp/stubTrue.js +5 -0
  1048. package/node_modules/lodash/fp/subtract.js +5 -0
  1049. package/node_modules/lodash/fp/sum.js +5 -0
  1050. package/node_modules/lodash/fp/sumBy.js +5 -0
  1051. package/node_modules/lodash/fp/symmetricDifference.js +1 -0
  1052. package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  1053. package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  1054. package/node_modules/lodash/fp/tail.js +5 -0
  1055. package/node_modules/lodash/fp/take.js +5 -0
  1056. package/node_modules/lodash/fp/takeLast.js +1 -0
  1057. package/node_modules/lodash/fp/takeLastWhile.js +1 -0
  1058. package/node_modules/lodash/fp/takeRight.js +5 -0
  1059. package/node_modules/lodash/fp/takeRightWhile.js +5 -0
  1060. package/node_modules/lodash/fp/takeWhile.js +5 -0
  1061. package/node_modules/lodash/fp/tap.js +5 -0
  1062. package/node_modules/lodash/fp/template.js +5 -0
  1063. package/node_modules/lodash/fp/templateSettings.js +5 -0
  1064. package/node_modules/lodash/fp/throttle.js +5 -0
  1065. package/node_modules/lodash/fp/thru.js +5 -0
  1066. package/node_modules/lodash/fp/times.js +5 -0
  1067. package/node_modules/lodash/fp/toArray.js +5 -0
  1068. package/node_modules/lodash/fp/toFinite.js +5 -0
  1069. package/node_modules/lodash/fp/toInteger.js +5 -0
  1070. package/node_modules/lodash/fp/toIterator.js +5 -0
  1071. package/node_modules/lodash/fp/toJSON.js +5 -0
  1072. package/node_modules/lodash/fp/toLength.js +5 -0
  1073. package/node_modules/lodash/fp/toLower.js +5 -0
  1074. package/node_modules/lodash/fp/toNumber.js +5 -0
  1075. package/node_modules/lodash/fp/toPairs.js +5 -0
  1076. package/node_modules/lodash/fp/toPairsIn.js +5 -0
  1077. package/node_modules/lodash/fp/toPath.js +5 -0
  1078. package/node_modules/lodash/fp/toPlainObject.js +5 -0
  1079. package/node_modules/lodash/fp/toSafeInteger.js +5 -0
  1080. package/node_modules/lodash/fp/toString.js +5 -0
  1081. package/node_modules/lodash/fp/toUpper.js +5 -0
  1082. package/node_modules/lodash/fp/transform.js +5 -0
  1083. package/node_modules/lodash/fp/trim.js +5 -0
  1084. package/node_modules/lodash/fp/trimChars.js +5 -0
  1085. package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  1086. package/node_modules/lodash/fp/trimCharsStart.js +5 -0
  1087. package/node_modules/lodash/fp/trimEnd.js +5 -0
  1088. package/node_modules/lodash/fp/trimStart.js +5 -0
  1089. package/node_modules/lodash/fp/truncate.js +5 -0
  1090. package/node_modules/lodash/fp/unapply.js +1 -0
  1091. package/node_modules/lodash/fp/unary.js +5 -0
  1092. package/node_modules/lodash/fp/unescape.js +5 -0
  1093. package/node_modules/lodash/fp/union.js +5 -0
  1094. package/node_modules/lodash/fp/unionBy.js +5 -0
  1095. package/node_modules/lodash/fp/unionWith.js +5 -0
  1096. package/node_modules/lodash/fp/uniq.js +5 -0
  1097. package/node_modules/lodash/fp/uniqBy.js +5 -0
  1098. package/node_modules/lodash/fp/uniqWith.js +5 -0
  1099. package/node_modules/lodash/fp/uniqueId.js +5 -0
  1100. package/node_modules/lodash/fp/unnest.js +1 -0
  1101. package/node_modules/lodash/fp/unset.js +5 -0
  1102. package/node_modules/lodash/fp/unzip.js +5 -0
  1103. package/node_modules/lodash/fp/unzipWith.js +5 -0
  1104. package/node_modules/lodash/fp/update.js +5 -0
  1105. package/node_modules/lodash/fp/updateWith.js +5 -0
  1106. package/node_modules/lodash/fp/upperCase.js +5 -0
  1107. package/node_modules/lodash/fp/upperFirst.js +5 -0
  1108. package/node_modules/lodash/fp/useWith.js +1 -0
  1109. package/node_modules/lodash/fp/util.js +2 -0
  1110. package/node_modules/lodash/fp/value.js +5 -0
  1111. package/node_modules/lodash/fp/valueOf.js +5 -0
  1112. package/node_modules/lodash/fp/values.js +5 -0
  1113. package/node_modules/lodash/fp/valuesIn.js +5 -0
  1114. package/node_modules/lodash/fp/where.js +1 -0
  1115. package/node_modules/lodash/fp/whereEq.js +1 -0
  1116. package/node_modules/lodash/fp/without.js +5 -0
  1117. package/node_modules/lodash/fp/words.js +5 -0
  1118. package/node_modules/lodash/fp/wrap.js +5 -0
  1119. package/node_modules/lodash/fp/wrapperAt.js +5 -0
  1120. package/node_modules/lodash/fp/wrapperChain.js +5 -0
  1121. package/node_modules/lodash/fp/wrapperLodash.js +5 -0
  1122. package/node_modules/lodash/fp/wrapperReverse.js +5 -0
  1123. package/node_modules/lodash/fp/wrapperValue.js +5 -0
  1124. package/node_modules/lodash/fp/xor.js +5 -0
  1125. package/node_modules/lodash/fp/xorBy.js +5 -0
  1126. package/node_modules/lodash/fp/xorWith.js +5 -0
  1127. package/node_modules/lodash/fp/zip.js +5 -0
  1128. package/node_modules/lodash/fp/zipAll.js +5 -0
  1129. package/node_modules/lodash/fp/zipObj.js +1 -0
  1130. package/node_modules/lodash/fp/zipObject.js +5 -0
  1131. package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  1132. package/node_modules/lodash/fp/zipWith.js +5 -0
  1133. package/node_modules/lodash/fp.js +2 -0
  1134. package/node_modules/lodash/fromPairs.js +28 -0
  1135. package/node_modules/lodash/function.js +25 -0
  1136. package/node_modules/lodash/functions.js +31 -0
  1137. package/node_modules/lodash/functionsIn.js +31 -0
  1138. package/node_modules/lodash/get.js +33 -0
  1139. package/node_modules/lodash/groupBy.js +41 -0
  1140. package/node_modules/lodash/gt.js +29 -0
  1141. package/node_modules/lodash/gte.js +30 -0
  1142. package/node_modules/lodash/has.js +35 -0
  1143. package/node_modules/lodash/hasIn.js +34 -0
  1144. package/node_modules/lodash/head.js +23 -0
  1145. package/node_modules/lodash/identity.js +21 -0
  1146. package/node_modules/lodash/inRange.js +55 -0
  1147. package/node_modules/lodash/includes.js +53 -0
  1148. package/node_modules/lodash/index.js +1 -0
  1149. package/node_modules/lodash/indexOf.js +42 -0
  1150. package/node_modules/lodash/initial.js +22 -0
  1151. package/node_modules/lodash/intersection.js +30 -0
  1152. package/node_modules/lodash/intersectionBy.js +45 -0
  1153. package/node_modules/lodash/intersectionWith.js +41 -0
  1154. package/node_modules/lodash/invert.js +42 -0
  1155. package/node_modules/lodash/invertBy.js +56 -0
  1156. package/node_modules/lodash/invoke.js +24 -0
  1157. package/node_modules/lodash/invokeMap.js +41 -0
  1158. package/node_modules/lodash/isArguments.js +36 -0
  1159. package/node_modules/lodash/isArray.js +26 -0
  1160. package/node_modules/lodash/isArrayBuffer.js +27 -0
  1161. package/node_modules/lodash/isArrayLike.js +33 -0
  1162. package/node_modules/lodash/isArrayLikeObject.js +33 -0
  1163. package/node_modules/lodash/isBoolean.js +29 -0
  1164. package/node_modules/lodash/isBuffer.js +38 -0
  1165. package/node_modules/lodash/isDate.js +27 -0
  1166. package/node_modules/lodash/isElement.js +25 -0
  1167. package/node_modules/lodash/isEmpty.js +77 -0
  1168. package/node_modules/lodash/isEqual.js +35 -0
  1169. package/node_modules/lodash/isEqualWith.js +41 -0
  1170. package/node_modules/lodash/isError.js +36 -0
  1171. package/node_modules/lodash/isFinite.js +36 -0
  1172. package/node_modules/lodash/isFunction.js +37 -0
  1173. package/node_modules/lodash/isInteger.js +33 -0
  1174. package/node_modules/lodash/isLength.js +35 -0
  1175. package/node_modules/lodash/isMap.js +27 -0
  1176. package/node_modules/lodash/isMatch.js +36 -0
  1177. package/node_modules/lodash/isMatchWith.js +41 -0
  1178. package/node_modules/lodash/isNaN.js +38 -0
  1179. package/node_modules/lodash/isNative.js +40 -0
  1180. package/node_modules/lodash/isNil.js +25 -0
  1181. package/node_modules/lodash/isNull.js +22 -0
  1182. package/node_modules/lodash/isNumber.js +38 -0
  1183. package/node_modules/lodash/isObject.js +31 -0
  1184. package/node_modules/lodash/isObjectLike.js +29 -0
  1185. package/node_modules/lodash/isPlainObject.js +62 -0
  1186. package/node_modules/lodash/isRegExp.js +27 -0
  1187. package/node_modules/lodash/isSafeInteger.js +37 -0
  1188. package/node_modules/lodash/isSet.js +27 -0
  1189. package/node_modules/lodash/isString.js +30 -0
  1190. package/node_modules/lodash/isSymbol.js +29 -0
  1191. package/node_modules/lodash/isTypedArray.js +27 -0
  1192. package/node_modules/lodash/isUndefined.js +22 -0
  1193. package/node_modules/lodash/isWeakMap.js +28 -0
  1194. package/node_modules/lodash/isWeakSet.js +28 -0
  1195. package/node_modules/lodash/iteratee.js +53 -0
  1196. package/node_modules/lodash/join.js +26 -0
  1197. package/node_modules/lodash/kebabCase.js +28 -0
  1198. package/node_modules/lodash/keyBy.js +36 -0
  1199. package/node_modules/lodash/keys.js +37 -0
  1200. package/node_modules/lodash/keysIn.js +32 -0
  1201. package/node_modules/lodash/lang.js +58 -0
  1202. package/node_modules/lodash/last.js +20 -0
  1203. package/node_modules/lodash/lastIndexOf.js +46 -0
  1204. package/node_modules/lodash/lodash.js +17209 -0
  1205. package/node_modules/lodash/lodash.min.js +140 -0
  1206. package/node_modules/lodash/lowerCase.js +27 -0
  1207. package/node_modules/lodash/lowerFirst.js +22 -0
  1208. package/node_modules/lodash/lt.js +29 -0
  1209. package/node_modules/lodash/lte.js +30 -0
  1210. package/node_modules/lodash/map.js +53 -0
  1211. package/node_modules/lodash/mapKeys.js +36 -0
  1212. package/node_modules/lodash/mapValues.js +43 -0
  1213. package/node_modules/lodash/matches.js +46 -0
  1214. package/node_modules/lodash/matchesProperty.js +44 -0
  1215. package/node_modules/lodash/math.js +17 -0
  1216. package/node_modules/lodash/max.js +29 -0
  1217. package/node_modules/lodash/maxBy.js +34 -0
  1218. package/node_modules/lodash/mean.js +22 -0
  1219. package/node_modules/lodash/meanBy.js +31 -0
  1220. package/node_modules/lodash/memoize.js +73 -0
  1221. package/node_modules/lodash/merge.js +39 -0
  1222. package/node_modules/lodash/mergeWith.js +39 -0
  1223. package/node_modules/lodash/method.js +34 -0
  1224. package/node_modules/lodash/methodOf.js +33 -0
  1225. package/node_modules/lodash/min.js +29 -0
  1226. package/node_modules/lodash/minBy.js +34 -0
  1227. package/node_modules/lodash/mixin.js +74 -0
  1228. package/node_modules/lodash/multiply.js +22 -0
  1229. package/node_modules/lodash/negate.js +40 -0
  1230. package/node_modules/lodash/next.js +35 -0
  1231. package/node_modules/lodash/noop.js +17 -0
  1232. package/node_modules/lodash/now.js +23 -0
  1233. package/node_modules/lodash/nth.js +29 -0
  1234. package/node_modules/lodash/nthArg.js +32 -0
  1235. package/node_modules/lodash/number.js +5 -0
  1236. package/node_modules/lodash/object.js +49 -0
  1237. package/node_modules/lodash/omit.js +57 -0
  1238. package/node_modules/lodash/omitBy.js +29 -0
  1239. package/node_modules/lodash/once.js +25 -0
  1240. package/node_modules/lodash/orderBy.js +47 -0
  1241. package/node_modules/lodash/over.js +24 -0
  1242. package/node_modules/lodash/overArgs.js +61 -0
  1243. package/node_modules/lodash/overEvery.js +34 -0
  1244. package/node_modules/lodash/overSome.js +37 -0
  1245. package/node_modules/lodash/package.json +17 -0
  1246. package/node_modules/lodash/pad.js +49 -0
  1247. package/node_modules/lodash/padEnd.js +39 -0
  1248. package/node_modules/lodash/padStart.js +39 -0
  1249. package/node_modules/lodash/parseInt.js +43 -0
  1250. package/node_modules/lodash/partial.js +50 -0
  1251. package/node_modules/lodash/partialRight.js +49 -0
  1252. package/node_modules/lodash/partition.js +43 -0
  1253. package/node_modules/lodash/pick.js +25 -0
  1254. package/node_modules/lodash/pickBy.js +37 -0
  1255. package/node_modules/lodash/plant.js +48 -0
  1256. package/node_modules/lodash/property.js +32 -0
  1257. package/node_modules/lodash/propertyOf.js +30 -0
  1258. package/node_modules/lodash/pull.js +29 -0
  1259. package/node_modules/lodash/pullAll.js +29 -0
  1260. package/node_modules/lodash/pullAllBy.js +33 -0
  1261. package/node_modules/lodash/pullAllWith.js +32 -0
  1262. package/node_modules/lodash/pullAt.js +43 -0
  1263. package/node_modules/lodash/random.js +82 -0
  1264. package/node_modules/lodash/range.js +46 -0
  1265. package/node_modules/lodash/rangeRight.js +41 -0
  1266. package/node_modules/lodash/rearg.js +33 -0
  1267. package/node_modules/lodash/reduce.js +51 -0
  1268. package/node_modules/lodash/reduceRight.js +36 -0
  1269. package/node_modules/lodash/reject.js +46 -0
  1270. package/node_modules/lodash/release.md +48 -0
  1271. package/node_modules/lodash/remove.js +53 -0
  1272. package/node_modules/lodash/repeat.js +37 -0
  1273. package/node_modules/lodash/replace.js +29 -0
  1274. package/node_modules/lodash/rest.js +40 -0
  1275. package/node_modules/lodash/result.js +56 -0
  1276. package/node_modules/lodash/reverse.js +34 -0
  1277. package/node_modules/lodash/round.js +26 -0
  1278. package/node_modules/lodash/sample.js +24 -0
  1279. package/node_modules/lodash/sampleSize.js +37 -0
  1280. package/node_modules/lodash/seq.js +16 -0
  1281. package/node_modules/lodash/set.js +35 -0
  1282. package/node_modules/lodash/setWith.js +32 -0
  1283. package/node_modules/lodash/shuffle.js +25 -0
  1284. package/node_modules/lodash/size.js +46 -0
  1285. package/node_modules/lodash/slice.js +37 -0
  1286. package/node_modules/lodash/snakeCase.js +28 -0
  1287. package/node_modules/lodash/some.js +51 -0
  1288. package/node_modules/lodash/sortBy.js +48 -0
  1289. package/node_modules/lodash/sortedIndex.js +24 -0
  1290. package/node_modules/lodash/sortedIndexBy.js +33 -0
  1291. package/node_modules/lodash/sortedIndexOf.js +31 -0
  1292. package/node_modules/lodash/sortedLastIndex.js +25 -0
  1293. package/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1294. package/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1295. package/node_modules/lodash/sortedUniq.js +24 -0
  1296. package/node_modules/lodash/sortedUniqBy.js +26 -0
  1297. package/node_modules/lodash/split.js +52 -0
  1298. package/node_modules/lodash/spread.js +63 -0
  1299. package/node_modules/lodash/startCase.js +29 -0
  1300. package/node_modules/lodash/startsWith.js +39 -0
  1301. package/node_modules/lodash/string.js +33 -0
  1302. package/node_modules/lodash/stubArray.js +23 -0
  1303. package/node_modules/lodash/stubFalse.js +18 -0
  1304. package/node_modules/lodash/stubObject.js +23 -0
  1305. package/node_modules/lodash/stubString.js +18 -0
  1306. package/node_modules/lodash/stubTrue.js +18 -0
  1307. package/node_modules/lodash/subtract.js +22 -0
  1308. package/node_modules/lodash/sum.js +24 -0
  1309. package/node_modules/lodash/sumBy.js +33 -0
  1310. package/node_modules/lodash/tail.js +22 -0
  1311. package/node_modules/lodash/take.js +37 -0
  1312. package/node_modules/lodash/takeRight.js +39 -0
  1313. package/node_modules/lodash/takeRightWhile.js +45 -0
  1314. package/node_modules/lodash/takeWhile.js +45 -0
  1315. package/node_modules/lodash/tap.js +29 -0
  1316. package/node_modules/lodash/template.js +272 -0
  1317. package/node_modules/lodash/templateSettings.js +67 -0
  1318. package/node_modules/lodash/throttle.js +69 -0
  1319. package/node_modules/lodash/thru.js +28 -0
  1320. package/node_modules/lodash/times.js +51 -0
  1321. package/node_modules/lodash/toArray.js +58 -0
  1322. package/node_modules/lodash/toFinite.js +42 -0
  1323. package/node_modules/lodash/toInteger.js +36 -0
  1324. package/node_modules/lodash/toIterator.js +23 -0
  1325. package/node_modules/lodash/toJSON.js +1 -0
  1326. package/node_modules/lodash/toLength.js +38 -0
  1327. package/node_modules/lodash/toLower.js +28 -0
  1328. package/node_modules/lodash/toNumber.js +64 -0
  1329. package/node_modules/lodash/toPairs.js +30 -0
  1330. package/node_modules/lodash/toPairsIn.js +30 -0
  1331. package/node_modules/lodash/toPath.js +33 -0
  1332. package/node_modules/lodash/toPlainObject.js +32 -0
  1333. package/node_modules/lodash/toSafeInteger.js +37 -0
  1334. package/node_modules/lodash/toString.js +28 -0
  1335. package/node_modules/lodash/toUpper.js +28 -0
  1336. package/node_modules/lodash/transform.js +65 -0
  1337. package/node_modules/lodash/trim.js +47 -0
  1338. package/node_modules/lodash/trimEnd.js +41 -0
  1339. package/node_modules/lodash/trimStart.js +43 -0
  1340. package/node_modules/lodash/truncate.js +111 -0
  1341. package/node_modules/lodash/unary.js +22 -0
  1342. package/node_modules/lodash/unescape.js +34 -0
  1343. package/node_modules/lodash/union.js +26 -0
  1344. package/node_modules/lodash/unionBy.js +39 -0
  1345. package/node_modules/lodash/unionWith.js +34 -0
  1346. package/node_modules/lodash/uniq.js +25 -0
  1347. package/node_modules/lodash/uniqBy.js +31 -0
  1348. package/node_modules/lodash/uniqWith.js +28 -0
  1349. package/node_modules/lodash/uniqueId.js +28 -0
  1350. package/node_modules/lodash/unset.js +34 -0
  1351. package/node_modules/lodash/unzip.js +45 -0
  1352. package/node_modules/lodash/unzipWith.js +39 -0
  1353. package/node_modules/lodash/update.js +35 -0
  1354. package/node_modules/lodash/updateWith.js +33 -0
  1355. package/node_modules/lodash/upperCase.js +27 -0
  1356. package/node_modules/lodash/upperFirst.js +22 -0
  1357. package/node_modules/lodash/util.js +34 -0
  1358. package/node_modules/lodash/value.js +1 -0
  1359. package/node_modules/lodash/valueOf.js +1 -0
  1360. package/node_modules/lodash/values.js +34 -0
  1361. package/node_modules/lodash/valuesIn.js +32 -0
  1362. package/node_modules/lodash/without.js +31 -0
  1363. package/node_modules/lodash/words.js +35 -0
  1364. package/node_modules/lodash/wrap.js +30 -0
  1365. package/node_modules/lodash/wrapperAt.js +48 -0
  1366. package/node_modules/lodash/wrapperChain.js +34 -0
  1367. package/node_modules/lodash/wrapperLodash.js +147 -0
  1368. package/node_modules/lodash/wrapperReverse.js +44 -0
  1369. package/node_modules/lodash/wrapperValue.js +21 -0
  1370. package/node_modules/lodash/xor.js +28 -0
  1371. package/node_modules/lodash/xorBy.js +39 -0
  1372. package/node_modules/lodash/xorWith.js +34 -0
  1373. package/node_modules/lodash/zip.js +22 -0
  1374. package/node_modules/lodash/zipObject.js +24 -0
  1375. package/node_modules/lodash/zipObjectDeep.js +23 -0
  1376. package/node_modules/lodash/zipWith.js +32 -0
  1377. package/node_modules/lodash.find/LICENSE +47 -0
  1378. package/node_modules/lodash.find/README.md +18 -0
  1379. package/node_modules/lodash.find/index.js +2453 -0
  1380. package/node_modules/lodash.find/package.json +17 -0
  1381. package/node_modules/lodash.max/LICENSE +47 -0
  1382. package/node_modules/lodash.max/README.md +18 -0
  1383. package/node_modules/lodash.max/index.js +160 -0
  1384. package/node_modules/lodash.max/package.json +17 -0
  1385. package/node_modules/lodash.merge/LICENSE +47 -0
  1386. package/node_modules/lodash.merge/README.md +18 -0
  1387. package/node_modules/lodash.merge/index.js +1977 -0
  1388. package/node_modules/lodash.merge/package.json +16 -0
  1389. package/node_modules/lodash.padstart/LICENSE +47 -0
  1390. package/node_modules/lodash.padstart/README.md +18 -0
  1391. package/node_modules/lodash.padstart/index.js +554 -0
  1392. package/node_modules/lodash.padstart/package.json +17 -0
  1393. package/node_modules/lodash.repeat/LICENSE +47 -0
  1394. package/node_modules/lodash.repeat/README.md +18 -0
  1395. package/node_modules/lodash.repeat/index.js +523 -0
  1396. package/node_modules/lodash.repeat/package.json +17 -0
  1397. package/node_modules/minimatch/LICENSE +15 -0
  1398. package/node_modules/minimatch/README.md +230 -0
  1399. package/node_modules/minimatch/minimatch.js +947 -0
  1400. package/node_modules/minimatch/package.json +33 -0
  1401. package/node_modules/once/LICENSE +15 -0
  1402. package/node_modules/once/README.md +79 -0
  1403. package/node_modules/once/once.js +42 -0
  1404. package/node_modules/once/package.json +33 -0
  1405. package/node_modules/path-is-absolute/index.js +20 -0
  1406. package/node_modules/path-is-absolute/license +21 -0
  1407. package/node_modules/path-is-absolute/package.json +43 -0
  1408. package/node_modules/path-is-absolute/readme.md +59 -0
  1409. package/node_modules/pend/LICENSE +23 -0
  1410. package/node_modules/pend/README.md +41 -0
  1411. package/node_modules/pend/index.js +55 -0
  1412. package/node_modules/pend/package.json +18 -0
  1413. package/node_modules/pend/test.js +137 -0
  1414. package/node_modules/safer-buffer/LICENSE +21 -0
  1415. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1416. package/node_modules/safer-buffer/Readme.md +156 -0
  1417. package/node_modules/safer-buffer/dangerous.js +58 -0
  1418. package/node_modules/safer-buffer/package.json +34 -0
  1419. package/node_modules/safer-buffer/safer.js +77 -0
  1420. package/node_modules/safer-buffer/tests.js +406 -0
  1421. package/node_modules/sprintf-js/CHANGELOG.md +17 -0
  1422. package/node_modules/sprintf-js/CONTRIBUTORS.md +25 -0
  1423. package/node_modules/sprintf-js/LICENSE +24 -0
  1424. package/node_modules/sprintf-js/README.md +143 -0
  1425. package/node_modules/sprintf-js/dist/.gitattributes +4 -0
  1426. package/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
  1427. package/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  1428. package/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
  1429. package/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  1430. package/node_modules/sprintf-js/package.json +32 -0
  1431. package/node_modules/sprintf-js/src/angular-sprintf.js +24 -0
  1432. package/node_modules/sprintf-js/src/sprintf.js +231 -0
  1433. package/node_modules/wrappy/LICENSE +15 -0
  1434. package/node_modules/wrappy/README.md +36 -0
  1435. package/node_modules/wrappy/package.json +29 -0
  1436. package/node_modules/wrappy/wrappy.js +33 -0
  1437. package/node_modules/yauzl/LICENSE +21 -0
  1438. package/node_modules/yauzl/README.md +658 -0
  1439. package/node_modules/yauzl/index.js +796 -0
  1440. package/node_modules/yauzl/package.json +40 -0
  1441. package/package.json +218 -131
  1442. package/config.js +0 -173
  1443. package/dist/assets/android-chrome-192x192.png +0 -0
  1444. package/dist/assets/android-chrome-512x512.png +0 -0
  1445. package/dist/assets/apple-touch-icon.png +0 -0
  1446. package/dist/assets/asset-manifest.json +0 -229
  1447. package/dist/assets/browserconfig.xml +0 -9
  1448. package/dist/assets/favicon-16x16.png +0 -0
  1449. package/dist/assets/favicon-32x32.png +0 -0
  1450. package/dist/assets/mstile-144x144.png +0 -0
  1451. package/dist/assets/mstile-150x150.png +0 -0
  1452. package/dist/assets/mstile-310x150.png +0 -0
  1453. package/dist/assets/mstile-310x310.png +0 -0
  1454. package/dist/assets/mstile-70x70.png +0 -0
  1455. package/dist/assets/static/js/main.23c749ec.js +0 -339
  1456. package/dist/assets/static/media/ABOUT.d02918c9.md +0 -13
  1457. package/dist/assets/static/media/Roboto-500.64e69384.woff +0 -0
  1458. package/dist/assets/static/media/Roboto-500.7f8f0146.eot +0 -0
  1459. package/dist/assets/static/media/Roboto-500.916656a2.ttf +0 -0
  1460. package/dist/assets/static/media/Roboto-500.abd255e8.svg +0 -305
  1461. package/dist/assets/static/media/Roboto-700.8d11d1e1.ttf +0 -0
  1462. package/dist/assets/static/media/Roboto-700.9c9c164e.svg +0 -310
  1463. package/dist/assets/static/media/Roboto-700.c65552c8.eot +0 -0
  1464. package/dist/assets/static/media/Roboto-700.ee82bda2.woff +0 -0
  1465. package/dist/assets/static/media/Roboto-700italic.1dc5bfed.eot +0 -0
  1466. package/dist/assets/static/media/Roboto-700italic.686da014.woff +0 -0
  1467. package/dist/assets/static/media/Roboto-700italic.896656dc.ttf +0 -0
  1468. package/dist/assets/static/media/Roboto-700italic.cacb9681.svg +0 -325
  1469. package/dist/assets/static/media/Roboto-italic.09ed2f27.svg +0 -323
  1470. package/dist/assets/static/media/Roboto-italic.c1421604.woff +0 -0
  1471. package/dist/assets/static/media/Roboto-italic.c38ecad2.ttf +0 -0
  1472. package/dist/assets/static/media/Roboto-italic.f7677a07.eot +0 -0
  1473. package/dist/assets/static/media/Roboto-regular.5107f918.eot +0 -0
  1474. package/dist/assets/static/media/Roboto-regular.6a307cf2.woff +0 -0
  1475. package/dist/assets/static/media/Roboto-regular.81dc9b21.ttf +0 -0
  1476. package/dist/assets/static/media/Roboto-regular.bcf2ba9e.svg +0 -308
  1477. package/run/db/README.md +0 -3
  1478. package/run/temp/README.md +0 -3
  1479. package/server/.eslintrc.js +0 -15
  1480. package/server/app.js +0 -88
  1481. package/server/bin/enforce-prerequisites.js +0 -63
  1482. package/server/bin/migrations/fix-is-admin-flag.js +0 -49
  1483. package/server/bin/migrations/per-user-rtorrent-instances.js +0 -76
  1484. package/server/bin/migrations/run.js +0 -8
  1485. package/server/bin/start.js +0 -16
  1486. package/server/bin/web-server.js +0 -98
  1487. package/server/config/passport.js +0 -36
  1488. package/server/constants/clientGatewayServiceEvents.js +0 -12
  1489. package/server/constants/diskUsageServiceEvents.js +0 -5
  1490. package/server/constants/fileListPropMap.js +0 -34
  1491. package/server/constants/historyServiceEvents.js +0 -17
  1492. package/server/constants/notificationServiceEvents.js +0 -5
  1493. package/server/constants/taxonomyServiceEvents.js +0 -5
  1494. package/server/constants/torrentListPropMap.js +0 -247
  1495. package/server/constants/torrentServiceEvents.js +0 -5
  1496. package/server/constants/transferSummaryPropMap.js +0 -33
  1497. package/server/middleware/appendUserServices.js +0 -6
  1498. package/server/middleware/booleanCoerce.js +0 -9
  1499. package/server/middleware/clientActivityStream.js +0 -150
  1500. package/server/middleware/eventStream.js +0 -27
  1501. package/server/middleware/requireAdmin.js +0 -6
  1502. package/server/models/ClientRequest.js +0 -389
  1503. package/server/models/Feed.js +0 -74
  1504. package/server/models/Filesystem.js +0 -45
  1505. package/server/models/HistoryEra.js +0 -205
  1506. package/server/models/ServerEvent.js +0 -32
  1507. package/server/models/TemporaryStorage.js +0 -20
  1508. package/server/models/Users.js +0 -188
  1509. package/server/models/client.js +0 -435
  1510. package/server/models/settings.js +0 -138
  1511. package/server/routes/api.js +0 -86
  1512. package/server/routes/auth.js +0 -213
  1513. package/server/routes/client.js +0 -120
  1514. package/server/services/BaseService.js +0 -22
  1515. package/server/services/clientGatewayService.js +0 -265
  1516. package/server/services/clientRequestManager.js +0 -83
  1517. package/server/services/diskUsageService.js +0 -155
  1518. package/server/services/feedService.js +0 -363
  1519. package/server/services/historyService.js +0 -212
  1520. package/server/services/index.js +0 -127
  1521. package/server/services/notificationService.js +0 -125
  1522. package/server/services/taxonomyService.js +0 -133
  1523. package/server/services/torrentService.js +0 -283
  1524. package/server/util/ajaxUtil.js +0 -21
  1525. package/server/util/clientResponseUtil.js +0 -127
  1526. package/server/util/fileUtil.js +0 -47
  1527. package/server/util/mediainfo.js +0 -38
  1528. package/server/util/methodCallUtil.js +0 -28
  1529. package/server/util/minifyUtil.js +0 -0
  1530. package/server/util/numberUtils.js +0 -6
  1531. package/server/util/rTorrentDeserializer.js +0 -109
  1532. package/server/util/rTorrentPropMap.js +0 -12
  1533. package/server/util/scgiUtil.js +0 -43
  1534. package/server/util/torrentFileUtil.js +0 -24
  1535. package/server/views/error.pug +0 -6
  1536. package/server/views/layout.pug +0 -6
  1537. package/shared/config/paths.js +0 -30
  1538. package/shared/constants/clientSettingsMap.js +0 -101
  1539. package/shared/constants/diffActionTypes.js +0 -7
  1540. package/shared/constants/historySnapshotTypes.js +0 -12
  1541. package/shared/constants/serverEventTypes.js +0 -19
  1542. package/shared/constants/torrentFilePropsMap.js +0 -6
  1543. package/shared/constants/torrentPeerPropsMap.js +0 -32
  1544. package/shared/constants/torrentStatusMap.js +0 -19
  1545. package/shared/constants/torrentTrackerPropsMap.js +0 -6
  1546. package/shared/util/formatUtil.js +0 -71
  1547. package/shared/util/objectUtil.js +0 -72
  1548. package/shared/util/regEx.js +0 -7
  1549. package/shared/util/stringUtil.js +0 -16
  1550. /package/dist/assets/{safari-pinned-tab.svg → icon.svg} +0 -0
  1551. /package/dist/assets/static/{images/flags/ad.png → media/ad.1b24595d.png} +0 -0
  1552. /package/dist/assets/static/{images/flags/ae.png → media/ae.4dd8f55e.png} +0 -0
  1553. /package/dist/assets/static/{images/flags/af.png → media/af.4ce660eb.png} +0 -0
  1554. /package/dist/assets/static/{images/flags/ag.png → media/ag.fd9409e4.png} +0 -0
  1555. /package/dist/assets/static/{images/flags/al.png → media/al.a297aacf.png} +0 -0
  1556. /package/dist/assets/static/{images/flags/am.png → media/am.c84ee0cf.png} +0 -0
  1557. /package/dist/assets/static/{images/flags/ao.png → media/ao.a7c9214e.png} +0 -0
  1558. /package/dist/assets/static/{images/flags/ar.png → media/ar.7e57ef92.png} +0 -0
  1559. /package/dist/assets/static/{images/flags/at.png → media/at.5aa9728a.png} +0 -0
  1560. /package/dist/assets/static/{images/flags/au.png → media/au.155b51d8.png} +0 -0
  1561. /package/dist/assets/static/{images/flags/az.png → media/az.63afef5b.png} +0 -0
  1562. /package/dist/assets/static/{images/flags/ba.png → media/ba.5ce8f273.png} +0 -0
  1563. /package/dist/assets/static/{images/flags/bb.png → media/bb.f369fc62.png} +0 -0
  1564. /package/dist/assets/static/{images/flags/bd.png → media/bd.516278fc.png} +0 -0
  1565. /package/dist/assets/static/{images/flags/be.png → media/be.08ec4a8d.png} +0 -0
  1566. /package/dist/assets/static/{images/flags/bf.png → media/bf.50bfcb31.png} +0 -0
  1567. /package/dist/assets/static/{images/flags/bg.png → media/bg.d9346b96.png} +0 -0
  1568. /package/dist/assets/static/{images/flags/bh.png → media/bh.f06d5914.png} +0 -0
  1569. /package/dist/assets/static/{images/flags/bi.png → media/bi.4923e3a3.png} +0 -0
  1570. /package/dist/assets/static/{images/flags/bj.png → media/bj.019fa79b.png} +0 -0
  1571. /package/dist/assets/static/{images/flags/bn.png → media/bn.077671e2.png} +0 -0
  1572. /package/dist/assets/static/{images/flags/bo.png → media/bo.8fb15fc6.png} +0 -0
  1573. /package/dist/assets/static/{images/flags/br.png → media/br.ec051f0c.png} +0 -0
  1574. /package/dist/assets/static/{images/flags/bs.png → media/bs.a74a126f.png} +0 -0
  1575. /package/dist/assets/static/{images/flags/bt.png → media/bt.4217b804.png} +0 -0
  1576. /package/dist/assets/static/{images/flags/bw.png → media/bw.21fe1567.png} +0 -0
  1577. /package/dist/assets/static/{images/flags/by.png → media/by.d247fe16.png} +0 -0
  1578. /package/dist/assets/static/{images/flags/bz.png → media/bz.98ec59f6.png} +0 -0
  1579. /package/dist/assets/static/{images/flags/ca.png → media/ca.25743e11.png} +0 -0
  1580. /package/dist/assets/static/{images/flags/cd.png → media/cd.a5bfda53.png} +0 -0
  1581. /package/dist/assets/static/{images/flags/cf.png → media/cf.de7d5d92.png} +0 -0
  1582. /package/dist/assets/static/{images/flags/cg.png → media/cg.a47b626b.png} +0 -0
  1583. /package/dist/assets/static/{images/flags/ch.png → media/ch.445f47a1.png} +0 -0
  1584. /package/dist/assets/static/{images/flags/ci.png → media/ci.a6009c5b.png} +0 -0
  1585. /package/dist/assets/static/{images/flags/cl.png → media/cl.de1d715e.png} +0 -0
  1586. /package/dist/assets/static/{images/flags/cm.png → media/cm.3ce8a86a.png} +0 -0
  1587. /package/dist/assets/static/{images/flags/cn.png → media/cn.e6a26073.png} +0 -0
  1588. /package/dist/assets/static/{images/flags/co.png → media/co.e9244faa.png} +0 -0
  1589. /package/dist/assets/static/{images/flags/cr.png → media/cr.c895e035.png} +0 -0
  1590. /package/dist/assets/static/{images/flags/cu.png → media/cu.e486c055.png} +0 -0
  1591. /package/dist/assets/static/{images/flags/cv.png → media/cv.a9585acf.png} +0 -0
  1592. /package/dist/assets/static/{images/flags/cw.png → media/cw.df13039d.png} +0 -0
  1593. /package/dist/assets/static/{images/flags/cy.png → media/cy.b31f43a9.png} +0 -0
  1594. /package/dist/assets/static/{images/flags/cz.png → media/cz.8ec5948b.png} +0 -0
  1595. /package/dist/assets/static/{images/flags/de.png → media/de.d12f391a.png} +0 -0
  1596. /package/dist/assets/static/{images/flags/dj.png → media/dj.154c3580.png} +0 -0
  1597. /package/dist/assets/static/{images/flags/dk.png → media/dk.da382fe2.png} +0 -0
  1598. /package/dist/assets/static/{images/flags/dm.png → media/dm.f452e6cd.png} +0 -0
  1599. /package/dist/assets/static/{images/flags/do.png → media/do.c6bd7637.png} +0 -0
  1600. /package/dist/assets/static/{images/flags/dz.png → media/dz.672a69c0.png} +0 -0
  1601. /package/dist/assets/static/{images/flags/ec.png → media/ec.349d9bd7.png} +0 -0
  1602. /package/dist/assets/static/{images/flags/ee.png → media/ee.2396205f.png} +0 -0
  1603. /package/dist/assets/static/{images/flags/eg.png → media/eg.ccbf3f45.png} +0 -0
  1604. /package/dist/assets/static/{images/flags/eh.png → media/eh.af65674a.png} +0 -0
  1605. /package/dist/assets/static/{images/flags/er.png → media/er.21afb638.png} +0 -0
  1606. /package/dist/assets/static/{images/flags/es.png → media/es.2a6eaee4.png} +0 -0
  1607. /package/dist/assets/static/{images/flags/et.png → media/et.8beb65c8.png} +0 -0
  1608. /package/dist/assets/static/{images/flags/fi.png → media/fi.331f70fd.png} +0 -0
  1609. /package/dist/assets/static/{images/flags/fj.png → media/fj.7724d800.png} +0 -0
  1610. /package/dist/assets/static/{images/flags/fm.png → media/fm.eeaf71e9.png} +0 -0
  1611. /package/dist/assets/static/{images/flags/fr.png → media/fr.5d5ab008.png} +0 -0
  1612. /package/dist/assets/static/{images/flags/ga.png → media/ga.77ed474c.png} +0 -0
  1613. /package/dist/assets/static/{images/flags/gb.png → media/gb.e00065bf.png} +0 -0
  1614. /package/dist/assets/static/{images/flags/gd.png → media/gd.b4522267.png} +0 -0
  1615. /package/dist/assets/static/{images/flags/ge.png → media/ge.91a7654d.png} +0 -0
  1616. /package/dist/assets/static/{images/flags/gh.png → media/gh.4759f92f.png} +0 -0
  1617. /package/dist/assets/static/{images/flags/gm.png → media/gm.81cd9f75.png} +0 -0
  1618. /package/dist/assets/static/{images/flags/gn.png → media/gn.9f3d376e.png} +0 -0
  1619. /package/dist/assets/static/{images/flags/gq.png → media/gq.e8ad58be.png} +0 -0
  1620. /package/dist/assets/static/{images/flags/gr.png → media/gr.26f3ac0b.png} +0 -0
  1621. /package/dist/assets/static/{images/flags/gt.png → media/gt.9d81c52e.png} +0 -0
  1622. /package/dist/assets/static/{images/flags/gw.png → media/gw.dc906982.png} +0 -0
  1623. /package/dist/assets/static/{images/flags/gy.png → media/gy.a4f62b6c.png} +0 -0
  1624. /package/dist/assets/static/{images/flags/hk.png → media/hk.56555c3f.png} +0 -0
  1625. /package/dist/assets/static/{images/flags/hn.png → media/hn.64ee6aad.png} +0 -0
  1626. /package/dist/assets/static/{images/flags/hr.png → media/hr.93ebecd3.png} +0 -0
  1627. /package/dist/assets/static/{images/flags/ht.png → media/ht.42ca1596.png} +0 -0
  1628. /package/dist/assets/static/{images/flags/hu.png → media/hu.bb30f05d.png} +0 -0
  1629. /package/dist/assets/static/{images/flags/id.png → media/id.2cb49f2d.png} +0 -0
  1630. /package/dist/assets/static/{images/flags/ie.png → media/ie.b4dd1f19.png} +0 -0
  1631. /package/dist/assets/static/{images/flags/il.png → media/il.cd1d1faf.png} +0 -0
  1632. /package/dist/assets/static/{images/flags/in.png → media/in.2df03847.png} +0 -0
  1633. /package/dist/assets/static/{images/flags/iq.png → media/iq.a9b670ab.png} +0 -0
  1634. /package/dist/assets/static/{images/flags/ir.png → media/ir.9a3de085.png} +0 -0
  1635. /package/dist/assets/static/{images/flags/is.png → media/is.d88f4fc9.png} +0 -0
  1636. /package/dist/assets/static/{images/flags/it.png → media/it.b73713e3.png} +0 -0
  1637. /package/dist/assets/static/{images/flags/je.png → media/je.0353f56a.png} +0 -0
  1638. /package/dist/assets/static/{images/flags/jm.png → media/jm.20330ef4.png} +0 -0
  1639. /package/dist/assets/static/{images/flags/jo.png → media/jo.eb66f1d1.png} +0 -0
  1640. /package/dist/assets/static/{images/flags/jp.png → media/jp.63e382ae.png} +0 -0
  1641. /package/dist/assets/static/{images/flags/ke.png → media/ke.ab2e43b8.png} +0 -0
  1642. /package/dist/assets/static/{images/flags/kg.png → media/kg.2c47c2af.png} +0 -0
  1643. /package/dist/assets/static/{images/flags/kh.png → media/kh.4732c810.png} +0 -0
  1644. /package/dist/assets/static/{images/flags/ki.png → media/ki.5fba09fd.png} +0 -0
  1645. /package/dist/assets/static/{images/flags/km.png → media/km.7bbed3e9.png} +0 -0
  1646. /package/dist/assets/static/{images/flags/kn.png → media/kn.a9595a16.png} +0 -0
  1647. /package/dist/assets/static/{images/flags/kp.png → media/kp.8a4dc30a.png} +0 -0
  1648. /package/dist/assets/static/{images/flags/kr.png → media/kr.5273be1d.png} +0 -0
  1649. /package/dist/assets/static/{images/flags/ks.png → media/ks.99f78645.png} +0 -0
  1650. /package/dist/assets/static/{images/flags/kw.png → media/kw.af3521bc.png} +0 -0
  1651. /package/dist/assets/static/{images/flags/kz.png → media/kz.ea47ef79.png} +0 -0
  1652. /package/dist/assets/static/{images/flags/la.png → media/la.78a598d7.png} +0 -0
  1653. /package/dist/assets/static/{images/flags/lb.png → media/lb.7a7c15a9.png} +0 -0
  1654. /package/dist/assets/static/{images/flags/lc.png → media/lc.6083a4ff.png} +0 -0
  1655. /package/dist/assets/static/{images/flags/li.png → media/li.61c564a4.png} +0 -0
  1656. /package/dist/assets/static/{images/flags/lk.png → media/lk.6fa85802.png} +0 -0
  1657. /package/dist/assets/static/{images/flags/lr.png → media/lr.8063f7db.png} +0 -0
  1658. /package/dist/assets/static/{images/flags/ls.png → media/ls.901ddb71.png} +0 -0
  1659. /package/dist/assets/static/{images/flags/lt.png → media/lt.9209ace3.png} +0 -0
  1660. /package/dist/assets/static/{images/flags/lu.png → media/lu.c9872bc1.png} +0 -0
  1661. /package/dist/assets/static/{images/flags/lv.png → media/lv.7bcacf0a.png} +0 -0
  1662. /package/dist/assets/static/{images/flags/ly.png → media/ly.2830aa63.png} +0 -0
  1663. /package/dist/assets/static/{images/flags/ma.png → media/ma.ce5f697b.png} +0 -0
  1664. /package/dist/assets/static/{images/flags/mc.png → media/mc.4bd5d57a.png} +0 -0
  1665. /package/dist/assets/static/{images/flags/md.png → media/md.fb4b5bdf.png} +0 -0
  1666. /package/dist/assets/static/{images/flags/me.png → media/me.1f1d1772.png} +0 -0
  1667. /package/dist/assets/static/{images/flags/mg.png → media/mg.89101bd2.png} +0 -0
  1668. /package/dist/assets/static/{images/flags/mh.png → media/mh.ff11dff7.png} +0 -0
  1669. /package/dist/assets/static/{images/flags/mk.png → media/mk.8420e604.png} +0 -0
  1670. /package/dist/assets/static/{images/flags/ml.png → media/ml.4db47c66.png} +0 -0
  1671. /package/dist/assets/static/{images/flags/mm.png → media/mm.8e4ac30a.png} +0 -0
  1672. /package/dist/assets/static/{images/flags/mn.png → media/mn.dc1daa04.png} +0 -0
  1673. /package/dist/assets/static/{images/flags/mr.png → media/mr.7cbca6d0.png} +0 -0
  1674. /package/dist/assets/static/{images/flags/mt.png → media/mt.28a4b863.png} +0 -0
  1675. /package/dist/assets/static/{images/flags/mu.png → media/mu.d93db6c7.png} +0 -0
  1676. /package/dist/assets/static/{images/flags/mv.png → media/mv.7d026bf1.png} +0 -0
  1677. /package/dist/assets/static/{images/flags/mw.png → media/mw.960cd4fb.png} +0 -0
  1678. /package/dist/assets/static/{images/flags/mx.png → media/mx.39b78eb2.png} +0 -0
  1679. /package/dist/assets/static/{images/flags/my.png → media/my.916a8392.png} +0 -0
  1680. /package/dist/assets/static/{images/flags/mz.png → media/mz.facb4ea3.png} +0 -0
  1681. /package/dist/assets/static/{images/flags/na.png → media/na.472666a9.png} +0 -0
  1682. /package/dist/assets/static/{images/flags/ne.png → media/ne.d774701f.png} +0 -0
  1683. /package/dist/assets/static/{images/flags/ng.png → media/ng.7b06a49f.png} +0 -0
  1684. /package/dist/assets/static/{images/flags/ni.png → media/ni.7140131c.png} +0 -0
  1685. /package/dist/assets/static/{images/flags/nl.png → media/nl.4c04aa96.png} +0 -0
  1686. /package/dist/assets/static/{images/flags/no.png → media/no.c19eb00d.png} +0 -0
  1687. /package/dist/assets/static/{images/flags/np.png → media/np.54fb4f2f.png} +0 -0
  1688. /package/dist/assets/static/{images/flags/nr.png → media/nr.7527cc38.png} +0 -0
  1689. /package/dist/assets/static/{images/flags/nz.png → media/nz.738be05b.png} +0 -0
  1690. /package/dist/assets/static/{images/flags/om.png → media/om.b25e0a17.png} +0 -0
  1691. /package/dist/assets/static/{images/flags/pa.png → media/pa.b28a9059.png} +0 -0
  1692. /package/dist/assets/static/{images/flags/pe.png → media/pe.c1fc1d96.png} +0 -0
  1693. /package/dist/assets/static/{images/flags/pg.png → media/pg.380115db.png} +0 -0
  1694. /package/dist/assets/static/{images/flags/ph.png → media/ph.02199ddc.png} +0 -0
  1695. /package/dist/assets/static/{images/flags/pk.png → media/pk.094f9517.png} +0 -0
  1696. /package/dist/assets/static/{images/flags/pl.png → media/pl.41521283.png} +0 -0
  1697. /package/dist/assets/static/{images/flags/pt.png → media/pt.1f82dc04.png} +0 -0
  1698. /package/dist/assets/static/{images/flags/pw.png → media/pw.a26c2316.png} +0 -0
  1699. /package/dist/assets/static/{images/flags/py.png → media/py.926c65ed.png} +0 -0
  1700. /package/dist/assets/static/{images/flags/qa.png → media/qa.c6a3c20e.png} +0 -0
  1701. /package/dist/assets/static/{images/flags/ro.png → media/ro.a36876c9.png} +0 -0
  1702. /package/dist/assets/static/{images/flags/rs.png → media/rs.c6629de8.png} +0 -0
  1703. /package/dist/assets/static/{images/flags/ru.png → media/ru.a9b948c1.png} +0 -0
  1704. /package/dist/assets/static/{images/flags/rw.png → media/rw.e8aecba0.png} +0 -0
  1705. /package/dist/assets/static/{images/flags/sa.png → media/sa.859049c8.png} +0 -0
  1706. /package/dist/assets/static/{images/flags/sb.png → media/sb.4ad27b27.png} +0 -0
  1707. /package/dist/assets/static/{images/flags/sc.png → media/sc.3293efde.png} +0 -0
  1708. /package/dist/assets/static/{images/flags/sd.png → media/sd.19c94faa.png} +0 -0
  1709. /package/dist/assets/static/{images/flags/se.png → media/se.195b3f93.png} +0 -0
  1710. /package/dist/assets/static/{images/flags/sg.png → media/sg.19d81907.png} +0 -0
  1711. /package/dist/assets/static/{images/flags/si.png → media/si.367c5443.png} +0 -0
  1712. /package/dist/assets/static/{images/flags/sk.png → media/sk.4e5b8a39.png} +0 -0
  1713. /package/dist/assets/static/{images/flags/sl.png → media/sl.4b174b1c.png} +0 -0
  1714. /package/dist/assets/static/{images/flags/sm.png → media/sm.2cba3dac.png} +0 -0
  1715. /package/dist/assets/static/{images/flags/sn.png → media/sn.a4c1041d.png} +0 -0
  1716. /package/dist/assets/static/{images/flags/so.png → media/so.b455e3bf.png} +0 -0
  1717. /package/dist/assets/static/{images/flags/sr.png → media/sr.5adc1c00.png} +0 -0
  1718. /package/dist/assets/static/{images/flags/st.png → media/st.5ae44155.png} +0 -0
  1719. /package/dist/assets/static/{images/flags/sv.png → media/sv.43aa6cdf.png} +0 -0
  1720. /package/dist/assets/static/{images/flags/sy.png → media/sy.0fbd24f7.png} +0 -0
  1721. /package/dist/assets/static/{images/flags/sz.png → media/sz.ff204912.png} +0 -0
  1722. /package/dist/assets/static/{images/flags/td.png → media/td.c7aa2a4e.png} +0 -0
  1723. /package/dist/assets/static/{images/flags/tg.png → media/tg.857c3bec.png} +0 -0
  1724. /package/dist/assets/static/{images/flags/th.png → media/th.683600c7.png} +0 -0
  1725. /package/dist/assets/static/{images/flags/tj.png → media/tj.d20c5570.png} +0 -0
  1726. /package/dist/assets/static/{images/flags/tl.png → media/tl.5edd8ea7.png} +0 -0
  1727. /package/dist/assets/static/{images/flags/tm.png → media/tm.15960215.png} +0 -0
  1728. /package/dist/assets/static/{images/flags/tn.png → media/tn.40df718e.png} +0 -0
  1729. /package/dist/assets/static/{images/flags/to.png → media/to.c3b054df.png} +0 -0
  1730. /package/dist/assets/static/{images/flags/tr.png → media/tr.adeace6d.png} +0 -0
  1731. /package/dist/assets/static/{images/flags/tt.png → media/tt.839bd7f1.png} +0 -0
  1732. /package/dist/assets/static/{images/flags/tv.png → media/tv.628cae3e.png} +0 -0
  1733. /package/dist/assets/static/{images/flags/tw.png → media/tw.4e885914.png} +0 -0
  1734. /package/dist/assets/static/{images/flags/tz.png → media/tz.b2f0dc37.png} +0 -0
  1735. /package/dist/assets/static/{images/flags/ua.png → media/ua.6b103313.png} +0 -0
  1736. /package/dist/assets/static/{images/flags/ug.png → media/ug.c84042fc.png} +0 -0
  1737. /package/dist/assets/static/{images/flags/us.png → media/us.8523c31d.png} +0 -0
  1738. /package/dist/assets/static/{images/flags/uy.png → media/uy.a943f85e.png} +0 -0
  1739. /package/dist/assets/static/{images/flags/uz.png → media/uz.25552673.png} +0 -0
  1740. /package/dist/assets/static/{images/flags/va.png → media/va.a29e1b53.png} +0 -0
  1741. /package/dist/assets/static/{images/flags/vc.png → media/vc.7480bd37.png} +0 -0
  1742. /package/dist/assets/static/{images/flags/ve.png → media/ve.fd4273c2.png} +0 -0
  1743. /package/dist/assets/static/{images/flags/vn.png → media/vn.7d2eff1b.png} +0 -0
  1744. /package/dist/assets/static/{images/flags/vu.png → media/vu.48b64cf3.png} +0 -0
  1745. /package/dist/assets/static/{images/flags/ws.png → media/ws.f3d9202f.png} +0 -0
  1746. /package/dist/assets/static/{images/flags/ye.png → media/ye.311a0e50.png} +0 -0
  1747. /package/dist/assets/static/{images/flags/za.png → media/za.090a856f.png} +0 -0
  1748. /package/dist/assets/static/{images/flags/zm.png → media/zm.8371e197.png} +0 -0
  1749. /package/dist/assets/static/{images/flags/zw.png → media/zw.a6809447.png} +0 -0
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[963],{9455:(t,e)=>{"use strict";e.A=function(t,e){if(t&&e){var n=Array.isArray(e)?e:e.split(","),r=t.name||"",o=(t.type||"").toLowerCase(),i=o.replace(/\/.*$/,"");return n.some((function(t){var e=t.trim().toLowerCase();return"."===e.charAt(0)?r.toLowerCase().endsWith(e):e.endsWith("/*")?i===e.replace(/\/.*$/,""):o===e}))}return!0}},5419:t=>{t.exports=function(t,e,n,r){var o=new Blob(void 0!==r?[r,t]:[t],{type:n||"application/octet-stream"});if(void 0!==window.navigator.msSaveBlob)window.navigator.msSaveBlob(o,e);else{var i=window.URL&&window.URL.createObjectURL?window.URL.createObjectURL(o):window.webkitURL.createObjectURL(o),a=document.createElement("a");a.style.display="none",a.href=i,a.setAttribute("download",e),void 0===a.download&&a.setAttribute("target","_blank"),document.body.appendChild(a),a.click(),setTimeout((function(){document.body.removeChild(a),window.URL.revokeObjectURL(i)}),200)}}},6089:(t,e,n)=>{var r=n(4116),o=n(3488),i=n(4394);t.exports=function(t,e,n){var a=0,s=null==t?a:t.length;if("number"==typeof e&&e==e&&s<=2147483647){for(;a<s;){var c=a+s>>>1,l=t[c];null!==l&&!i(l)&&(n?l<=e:l<e)?a=c+1:s=c}return s}return r(t,e,o,n)}},4116:(t,e,n)=>{var r=n(4394),o=Math.floor,i=Math.min;t.exports=function(t,e,n,a){var s=0,c=null==t?0:t.length;if(0===c)return 0;for(var l=(e=n(e))!=e,u=null===e,f=r(e),h=void 0===e;s<c;){var p=o((s+c)/2),d=n(t[p]),v=void 0!==d,m=null===d,g=d==d,y=r(d);if(l)var b=a||g;else b=h?g&&(a||v):u?g&&v&&(a||!m):f?g&&v&&!m&&(a||!y):!m&&!y&&(a?d<=e:d<e);b?s=p+1:c=p}return i(c,4294967294)}},3488:t=>{t.exports=function(t){return t}},9107:(t,e,n)=>{var r=n(6089);t.exports=function(t,e){return r(t,e)}},5216:()=>{},2694:(t,e,n)=>{"use strict";var r=n(6925);function o(){}function i(){}i.resetWarningCache=o,t.exports=function(){function t(t,e,n,o,i,a){if(a!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function e(){return t}t.isRequired=t;var n={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},5556:(t,e,n)=>{t.exports=n(2694)()},6925:t=>{"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},5497:(t,e,n)=>{"use strict";n.d(e,{Ay:()=>ut,VB:()=>ht});var r=n(6540),o=n(5556),i=n.n(o);function a(t,e,n,r){return new(n||(n=Promise))((function(o,i){function a(t){try{c(r.next(t))}catch(t){i(t)}}function s(t){try{c(r.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?o(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(a,s)}c((r=r.apply(t,e||[])).next())}))}function s(t,e){var n,r,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&s[0]?r.return:s[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,s[1])).done)return o;switch(r=0,o&&(s=[2&s[0],o.value]),s[0]){case 0:case 1:o=s;break;case 4:return a.label++,{value:s[1],done:!1};case 5:a.label++,r=s[1],s=[0];continue;case 7:s=a.ops.pop(),a.trys.pop();continue;default:if(!(o=a.trys,(o=o.length>0&&o[o.length-1])||6!==s[0]&&2!==s[0])){a=0;continue}if(3===s[0]&&(!o||s[1]>o[0]&&s[1]<o[3])){a.label=s[1];break}if(6===s[0]&&a.label<o[1]){a.label=o[1],o=s;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(s);break}o[2]&&a.ops.pop(),a.trys.pop();continue}s=e.call(t,a)}catch(t){s=[6,t],r=0}finally{n=o=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}Object.create;function c(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,i=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a}function l(t,e,n){if(n||2===arguments.length)for(var r,o=0,i=e.length;o<i;o++)!r&&o in e||(r||(r=Array.prototype.slice.call(e,0,o)),r[o]=e[o]);return t.concat(r||Array.prototype.slice.call(e))}Object.create;"function"==typeof SuppressedError&&SuppressedError;var u=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function f(t,e){var n=function(t){var e=t.name;if(e&&-1!==e.lastIndexOf(".")&&!t.type){var n=e.split(".").pop().toLowerCase(),r=u.get(n);r&&Object.defineProperty(t,"type",{value:r,writable:!1,configurable:!1,enumerable:!0})}return t}(t);if("string"!=typeof n.path){var r=t.webkitRelativePath;Object.defineProperty(n,"path",{value:"string"==typeof e?e:"string"==typeof r&&r.length>0?r:t.name,writable:!1,configurable:!1,enumerable:!0})}return n}var h=[".DS_Store","Thumbs.db"];function p(t){return"object"==typeof t&&null!==t}function d(t){return y(t.target.files).map((function(t){return f(t)}))}function v(t){return a(this,void 0,void 0,(function(){return s(this,(function(e){switch(e.label){case 0:return[4,Promise.all(t.map((function(t){return t.getFile()})))];case 1:return[2,e.sent().map((function(t){return f(t)}))]}}))}))}function m(t,e){return a(this,void 0,void 0,(function(){var n;return s(this,(function(r){switch(r.label){case 0:return t.items?(n=y(t.items).filter((function(t){return"file"===t.kind})),"drop"!==e?[2,n]:[4,Promise.all(n.map(b))]):[3,2];case 1:return[2,g(w(r.sent()))];case 2:return[2,g(y(t.files).map((function(t){return f(t)})))]}}))}))}function g(t){return t.filter((function(t){return-1===h.indexOf(t.name)}))}function y(t){if(null===t)return[];for(var e=[],n=0;n<t.length;n++){var r=t[n];e.push(r)}return e}function b(t){if("function"!=typeof t.webkitGetAsEntry)return _(t);var e=t.webkitGetAsEntry();return e&&e.isDirectory?O(e):_(t)}function w(t){return t.reduce((function(t,e){return l(l([],c(t),!1),c(Array.isArray(e)?w(e):[e]),!1)}),[])}function _(t){var e=t.getAsFile();if(!e)return Promise.reject("".concat(t," is not a File"));var n=f(e);return Promise.resolve(n)}function x(t){return a(this,void 0,void 0,(function(){return s(this,(function(e){return[2,t.isDirectory?O(t):M(t)]}))}))}function O(t){var e=t.createReader();return new Promise((function(t,n){var r=[];!function o(){var i=this;e.readEntries((function(e){return a(i,void 0,void 0,(function(){var i,a,c;return s(this,(function(s){switch(s.label){case 0:if(e.length)return[3,5];s.label=1;case 1:return s.trys.push([1,3,,4]),[4,Promise.all(r)];case 2:return i=s.sent(),t(i),[3,4];case 3:return a=s.sent(),n(a),[3,4];case 4:return[3,6];case 5:c=Promise.all(e.map(x)),r.push(c),o(),s.label=6;case 6:return[2]}}))}))}),(function(t){n(t)}))}()}))}function M(t){return a(this,void 0,void 0,(function(){return s(this,(function(e){return[2,new Promise((function(e,n){t.file((function(n){var r=f(n,t.fullPath);e(r)}),(function(t){n(t)}))}))]}))}))}var A=n(9455);function S(t){return function(t){if(Array.isArray(t))return T(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||R(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function $(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function k(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?$(Object(n),!0).forEach((function(e){E(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):$(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function E(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function D(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==n)return;var r,o,i=[],a=!0,s=!1;try{for(n=n.call(t);!(a=(r=n.next()).done)&&(i.push(r.value),!e||i.length!==e);a=!0);}catch(t){s=!0,o=t}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}(t,e)||R(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(t,e){if(t){if("string"==typeof t)return T(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?T(t,e):void 0}}function T(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}var C="file-invalid-type",z="file-too-large",j="file-too-small",I="too-many-files",P=function(t){t=Array.isArray(t)&&1===t.length?t[0]:t;var e=Array.isArray(t)?"one of ".concat(t.join(", ")):t;return{code:C,message:"File type must be ".concat(e)}},N=function(t){return{code:z,message:"File is larger than ".concat(t," ").concat(1===t?"byte":"bytes")}},F=function(t){return{code:j,message:"File is smaller than ".concat(t," ").concat(1===t?"byte":"bytes")}},L={code:I,message:"Too many files"};function H(t,e){var n="application/x-moz-file"===t.type||(0,A.A)(t,e);return[n,n?null:P(e)]}function W(t,e,n){if(q(t.size))if(q(e)&&q(n)){if(t.size>n)return[!1,N(n)];if(t.size<e)return[!1,F(e)]}else{if(q(e)&&t.size<e)return[!1,F(e)];if(q(n)&&t.size>n)return[!1,N(n)]}return[!0,null]}function q(t){return null!=t}function U(t){return"function"==typeof t.isPropagationStopped?t.isPropagationStopped():void 0!==t.cancelBubble&&t.cancelBubble}function B(t){return t.dataTransfer?Array.prototype.some.call(t.dataTransfer.types,(function(t){return"Files"===t||"application/x-moz-file"===t})):!!t.target&&!!t.target.files}function V(t){t.preventDefault()}function K(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return e.some((function(e){return!U(t)&&e&&e.apply(void 0,[t].concat(r)),U(t)}))}}function Y(t){return"audio/*"===t||"video/*"===t||"image/*"===t||"text/*"===t||/\w+\/[-+.\w]+/g.test(t)}function G(t){return/^.*\.[\w]+$/.test(t)}var X=["children"],Z=["open"],Q=["refKey","role","onKeyDown","onFocus","onBlur","onClick","onDragEnter","onDragOver","onDragLeave","onDrop"],J=["refKey","onChange","onClick"];function tt(t){return function(t){if(Array.isArray(t))return rt(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||nt(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function et(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==n)return;var r,o,i=[],a=!0,s=!1;try{for(n=n.call(t);!(a=(r=n.next()).done)&&(i.push(r.value),!e||i.length!==e);a=!0);}catch(t){s=!0,o=t}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}(t,e)||nt(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function nt(t,e){if(t){if("string"==typeof t)return rt(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?rt(t,e):void 0}}function rt(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function ot(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function it(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?ot(Object(n),!0).forEach((function(e){at(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function at(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function st(t,e){if(null==t)return{};var n,r,o=function(t,e){if(null==t)return{};var n,r,o={},i=Object.keys(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}var ct=(0,r.forwardRef)((function(t,e){var n=t.children,o=ht(st(t,X)),i=o.open,a=st(o,Z);return(0,r.useImperativeHandle)(e,(function(){return{open:i}}),[i]),r.createElement(r.Fragment,null,n(it(it({},a),{},{open:i})))}));ct.displayName="Dropzone";var lt={disabled:!1,getFilesFromEvent:function(t){return a(this,void 0,void 0,(function(){return s(this,(function(e){return p(t)&&p(t.dataTransfer)?[2,m(t.dataTransfer,t.type)]:function(t){return p(t)&&p(t.target)}(t)?[2,d(t)]:Array.isArray(t)&&t.every((function(t){return"getFile"in t&&"function"==typeof t.getFile}))?[2,v(t)]:[2,[]]}))}))},maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};ct.defaultProps=lt,ct.propTypes={children:i().func,accept:i().objectOf(i().arrayOf(i().string)),multiple:i().bool,preventDropOnDocument:i().bool,noClick:i().bool,noKeyboard:i().bool,noDrag:i().bool,noDragEventsBubbling:i().bool,minSize:i().number,maxSize:i().number,maxFiles:i().number,disabled:i().bool,getFilesFromEvent:i().func,onFileDialogCancel:i().func,onFileDialogOpen:i().func,useFsAccessApi:i().bool,autoFocus:i().bool,onDragEnter:i().func,onDragLeave:i().func,onDragOver:i().func,onDrop:i().func,onDropAccepted:i().func,onDropRejected:i().func,onError:i().func,validator:i().func};const ut=ct;var ft={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function ht(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=it(it({},lt),t),n=e.accept,o=e.disabled,i=e.getFilesFromEvent,a=e.maxSize,s=e.minSize,c=e.multiple,l=e.maxFiles,u=e.onDragEnter,f=e.onDragLeave,h=e.onDragOver,p=e.onDrop,d=e.onDropAccepted,v=e.onDropRejected,m=e.onFileDialogCancel,g=e.onFileDialogOpen,y=e.useFsAccessApi,b=e.autoFocus,w=e.preventDropOnDocument,_=e.noClick,x=e.noKeyboard,O=e.noDrag,M=e.noDragEventsBubbling,A=e.onError,$=e.validator,R=(0,r.useMemo)((function(){return function(t){if(q(t))return Object.entries(t).reduce((function(t,e){var n=D(e,2),r=n[0],o=n[1];return[].concat(S(t),[r],S(o))}),[]).filter((function(t){return Y(t)||G(t)})).join(",")}(n)}),[n]),T=(0,r.useMemo)((function(){return function(t){return q(t)?[{description:"Files",accept:Object.entries(t).filter((function(t){var e=D(t,2),n=e[0],r=e[1],o=!0;return Y(n)||(console.warn('Skipped "'.concat(n,'" because it is not a valid MIME type. Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types for a list of valid MIME types.')),o=!1),Array.isArray(r)&&r.every(G)||(console.warn('Skipped "'.concat(n,'" because an invalid file extension was provided.')),o=!1),o})).reduce((function(t,e){var n=D(e,2),r=n[0],o=n[1];return k(k({},t),{},E({},r,o))}),{})}]:t}(n)}),[n]),C=(0,r.useMemo)((function(){return"function"==typeof g?g:dt}),[g]),z=(0,r.useMemo)((function(){return"function"==typeof m?m:dt}),[m]),j=(0,r.useRef)(null),I=(0,r.useRef)(null),P=et((0,r.useReducer)(pt,ft),2),N=P[0],F=P[1],X=N.isFocused,Z=N.isFileDialogActive,nt=(0,r.useRef)("undefined"!=typeof window&&window.isSecureContext&&y&&"showOpenFilePicker"in window),rt=function(){!nt.current&&Z&&setTimeout((function(){I.current&&(I.current.files.length||(F({type:"closeDialog"}),z()))}),300)};(0,r.useEffect)((function(){return window.addEventListener("focus",rt,!1),function(){window.removeEventListener("focus",rt,!1)}}),[I,Z,z,nt]);var ot=(0,r.useRef)([]),ct=function(t){j.current&&j.current.contains(t.target)||(t.preventDefault(),ot.current=[])};(0,r.useEffect)((function(){return w&&(document.addEventListener("dragover",V,!1),document.addEventListener("drop",ct,!1)),function(){w&&(document.removeEventListener("dragover",V),document.removeEventListener("drop",ct))}}),[j,w]),(0,r.useEffect)((function(){return!o&&b&&j.current&&j.current.focus(),function(){}}),[j,b,o]);var ut=(0,r.useCallback)((function(t){A?A(t):console.error(t)}),[A]),ht=(0,r.useCallback)((function(t){t.preventDefault(),t.persist(),$t(t),ot.current=[].concat(tt(ot.current),[t.target]),B(t)&&Promise.resolve(i(t)).then((function(e){if(!U(t)||M){var n=e.length,r=n>0&&function(t){var e=t.files,n=t.accept,r=t.minSize,o=t.maxSize,i=t.multiple,a=t.maxFiles,s=t.validator;return!(!i&&e.length>1||i&&a>=1&&e.length>a)&&e.every((function(t){var e=D(H(t,n),1)[0],i=D(W(t,r,o),1)[0],a=s?s(t):null;return e&&i&&!a}))}({files:e,accept:R,minSize:s,maxSize:a,multiple:c,maxFiles:l,validator:$});F({isDragAccept:r,isDragReject:n>0&&!r,isDragActive:!0,type:"setDraggedFiles"}),u&&u(t)}})).catch((function(t){return ut(t)}))}),[i,u,ut,M,R,s,a,c,l,$]),vt=(0,r.useCallback)((function(t){t.preventDefault(),t.persist(),$t(t);var e=B(t);if(e&&t.dataTransfer)try{t.dataTransfer.dropEffect="copy"}catch(t){}return e&&h&&h(t),!1}),[h,M]),mt=(0,r.useCallback)((function(t){t.preventDefault(),t.persist(),$t(t);var e=ot.current.filter((function(t){return j.current&&j.current.contains(t)})),n=e.indexOf(t.target);-1!==n&&e.splice(n,1),ot.current=e,e.length>0||(F({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),B(t)&&f&&f(t))}),[j,f,M]),gt=(0,r.useCallback)((function(t,e){var n=[],r=[];t.forEach((function(t){var e=et(H(t,R),2),o=e[0],i=e[1],c=et(W(t,s,a),2),l=c[0],u=c[1],f=$?$(t):null;if(o&&l&&!f)n.push(t);else{var h=[i,u];f&&(h=h.concat(f)),r.push({file:t,errors:h.filter((function(t){return t}))})}})),(!c&&n.length>1||c&&l>=1&&n.length>l)&&(n.forEach((function(t){r.push({file:t,errors:[L]})})),n.splice(0)),F({acceptedFiles:n,fileRejections:r,type:"setFiles"}),p&&p(n,r,e),r.length>0&&v&&v(r,e),n.length>0&&d&&d(n,e)}),[F,c,R,s,a,l,p,d,v,$]),yt=(0,r.useCallback)((function(t){t.preventDefault(),t.persist(),$t(t),ot.current=[],B(t)&&Promise.resolve(i(t)).then((function(e){U(t)&&!M||gt(e,t)})).catch((function(t){return ut(t)})),F({type:"reset"})}),[i,gt,ut,M]),bt=(0,r.useCallback)((function(){if(nt.current){F({type:"openDialog"}),C();var t={multiple:c,types:T};window.showOpenFilePicker(t).then((function(t){return i(t)})).then((function(t){gt(t,null),F({type:"closeDialog"})})).catch((function(t){var e;(e=t)instanceof DOMException&&("AbortError"===e.name||e.code===e.ABORT_ERR)?(z(t),F({type:"closeDialog"})):!function(t){return t instanceof DOMException&&("SecurityError"===t.name||t.code===t.SECURITY_ERR)}(t)?ut(t):(nt.current=!1,I.current?(I.current.value=null,I.current.click()):ut(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided.")))}))}else I.current&&(F({type:"openDialog"}),C(),I.current.value=null,I.current.click())}),[F,C,z,y,gt,ut,T,c]),wt=(0,r.useCallback)((function(t){j.current&&j.current.isEqualNode(t.target)&&(" "!==t.key&&"Enter"!==t.key&&32!==t.keyCode&&13!==t.keyCode||(t.preventDefault(),bt()))}),[j,bt]),_t=(0,r.useCallback)((function(){F({type:"focus"})}),[]),xt=(0,r.useCallback)((function(){F({type:"blur"})}),[]),Ot=(0,r.useCallback)((function(){_||(!function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window.navigator.userAgent;return function(t){return-1!==t.indexOf("MSIE")||-1!==t.indexOf("Trident/")}(t)||function(t){return-1!==t.indexOf("Edge/")}(t)}()?bt():setTimeout(bt,0))}),[_,bt]),Mt=function(t){return o?null:t},At=function(t){return x?null:Mt(t)},St=function(t){return O?null:Mt(t)},$t=function(t){M&&t.stopPropagation()},kt=(0,r.useMemo)((function(){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.refKey,n=void 0===e?"ref":e,r=t.role,i=t.onKeyDown,a=t.onFocus,s=t.onBlur,c=t.onClick,l=t.onDragEnter,u=t.onDragOver,f=t.onDragLeave,h=t.onDrop,p=st(t,Q);return it(it(at({onKeyDown:At(K(i,wt)),onFocus:At(K(a,_t)),onBlur:At(K(s,xt)),onClick:Mt(K(c,Ot)),onDragEnter:St(K(l,ht)),onDragOver:St(K(u,vt)),onDragLeave:St(K(f,mt)),onDrop:St(K(h,yt)),role:"string"==typeof r&&""!==r?r:"presentation"},n,j),o||x?{}:{tabIndex:0}),p)}}),[j,wt,_t,xt,Ot,ht,vt,mt,yt,x,O,o]),Et=(0,r.useCallback)((function(t){t.stopPropagation()}),[]),Dt=(0,r.useMemo)((function(){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.refKey,n=void 0===e?"ref":e,r=t.onChange,o=t.onClick,i=st(t,J);return it(it({},at({accept:R,multiple:c,type:"file",style:{display:"none"},onChange:Mt(K(r,yt)),onClick:Mt(K(o,Et)),tabIndex:-1},n,I)),i)}}),[I,n,c,yt,o]);return it(it({},N),{},{isFocused:X&&!o,getRootProps:kt,getInputProps:Dt,rootRef:j,inputRef:I,open:Mt(bt)})}function pt(t,e){switch(e.type){case"focus":return it(it({},t),{},{isFocused:!0});case"blur":return it(it({},t),{},{isFocused:!1});case"openDialog":return it(it({},ft),{},{isFileDialogActive:!0});case"closeDialog":return it(it({},t),{},{isFileDialogActive:!1});case"setDraggedFiles":return it(it({},t),{},{isDragActive:e.isDragActive,isDragAccept:e.isDragAccept,isDragReject:e.isDragReject});case"setFiles":return it(it({},t),{},{acceptedFiles:e.acceptedFiles,fileRejections:e.fileRejections});case"reset":return it({},ft);default:return t}}function dt(){}},1304:(t,e,n)=>{"use strict";n.d(e,{A:()=>j});var r=n(8168),o=n(8587),i=n(7387),a=n(6540),s=n(5556),c=n.n(s),l=function(){if("undefined"!=typeof Map)return Map;function t(t,e){var n=-1;return t.some((function(t,r){return t[0]===e&&(n=r,!0)})),n}return function(){function e(){this.__entries__=[]}return Object.defineProperty(e.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),e.prototype.get=function(e){var n=t(this.__entries__,e),r=this.__entries__[n];return r&&r[1]},e.prototype.set=function(e,n){var r=t(this.__entries__,e);~r?this.__entries__[r][1]=n:this.__entries__.push([e,n])},e.prototype.delete=function(e){var n=this.__entries__,r=t(n,e);~r&&n.splice(r,1)},e.prototype.has=function(e){return!!~t(this.__entries__,e)},e.prototype.clear=function(){this.__entries__.splice(0)},e.prototype.forEach=function(t,e){void 0===e&&(e=null);for(var n=0,r=this.__entries__;n<r.length;n++){var o=r[n];t.call(e,o[1],o[0])}},e}()}(),u="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,f=void 0!==n.g&&n.g.Math===Math?n.g:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),h="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(f):function(t){return setTimeout((function(){return t(Date.now())}),1e3/60)};var p=["top","right","bottom","left","width","height","size","weight"],d="undefined"!=typeof MutationObserver,v=function(){function t(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(t,e){var n=!1,r=!1,o=0;function i(){n&&(n=!1,t()),r&&s()}function a(){h(i)}function s(){var t=Date.now();if(n){if(t-o<2)return;r=!0}else n=!0,r=!1,setTimeout(a,e);o=t}return s}(this.refresh.bind(this),20)}return t.prototype.addObserver=function(t){~this.observers_.indexOf(t)||this.observers_.push(t),this.connected_||this.connect_()},t.prototype.removeObserver=function(t){var e=this.observers_,n=e.indexOf(t);~n&&e.splice(n,1),!e.length&&this.connected_&&this.disconnect_()},t.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},t.prototype.updateObservers_=function(){var t=this.observers_.filter((function(t){return t.gatherActive(),t.hasActive()}));return t.forEach((function(t){return t.broadcastActive()})),t.length>0},t.prototype.connect_=function(){u&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),d?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},t.prototype.disconnect_=function(){u&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},t.prototype.onTransitionEnd_=function(t){var e=t.propertyName,n=void 0===e?"":e;p.some((function(t){return!!~n.indexOf(t)}))&&this.refresh()},t.getInstance=function(){return this.instance_||(this.instance_=new t),this.instance_},t.instance_=null,t}(),m=function(t,e){for(var n=0,r=Object.keys(e);n<r.length;n++){var o=r[n];Object.defineProperty(t,o,{value:e[o],enumerable:!1,writable:!1,configurable:!0})}return t},g=function(t){return t&&t.ownerDocument&&t.ownerDocument.defaultView||f},y=M(0,0,0,0);function b(t){return parseFloat(t)||0}function w(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return e.reduce((function(e,n){return e+b(t["border-"+n+"-width"])}),0)}function _(t){var e=t.clientWidth,n=t.clientHeight;if(!e&&!n)return y;var r=g(t).getComputedStyle(t),o=function(t){for(var e={},n=0,r=["top","right","bottom","left"];n<r.length;n++){var o=r[n],i=t["padding-"+o];e[o]=b(i)}return e}(r),i=o.left+o.right,a=o.top+o.bottom,s=b(r.width),c=b(r.height);if("border-box"===r.boxSizing&&(Math.round(s+i)!==e&&(s-=w(r,"left","right")+i),Math.round(c+a)!==n&&(c-=w(r,"top","bottom")+a)),!function(t){return t===g(t).document.documentElement}(t)){var l=Math.round(s+i)-e,u=Math.round(c+a)-n;1!==Math.abs(l)&&(s-=l),1!==Math.abs(u)&&(c-=u)}return M(o.left,o.top,s,c)}var x="undefined"!=typeof SVGGraphicsElement?function(t){return t instanceof g(t).SVGGraphicsElement}:function(t){return t instanceof g(t).SVGElement&&"function"==typeof t.getBBox};function O(t){return u?x(t)?function(t){var e=t.getBBox();return M(0,0,e.width,e.height)}(t):_(t):y}function M(t,e,n,r){return{x:t,y:e,width:n,height:r}}var A=function(){function t(t){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=M(0,0,0,0),this.target=t}return t.prototype.isActive=function(){var t=O(this.target);return this.contentRect_=t,t.width!==this.broadcastWidth||t.height!==this.broadcastHeight},t.prototype.broadcastRect=function(){var t=this.contentRect_;return this.broadcastWidth=t.width,this.broadcastHeight=t.height,t},t}(),S=function(t,e){var n,r,o,i,a,s,c,l=(r=(n=e).x,o=n.y,i=n.width,a=n.height,s="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,c=Object.create(s.prototype),m(c,{x:r,y:o,width:i,height:a,top:o,right:r+i,bottom:a+o,left:r}),c);m(this,{target:t,contentRect:l})},$=function(){function t(t,e,n){if(this.activeObservations_=[],this.observations_=new l,"function"!=typeof t)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=t,this.controller_=e,this.callbackCtx_=n}return t.prototype.observe=function(t){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(t instanceof g(t).Element))throw new TypeError('parameter 1 is not of type "Element".');var e=this.observations_;e.has(t)||(e.set(t,new A(t)),this.controller_.addObserver(this),this.controller_.refresh())}},t.prototype.unobserve=function(t){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(t instanceof g(t).Element))throw new TypeError('parameter 1 is not of type "Element".');var e=this.observations_;e.has(t)&&(e.delete(t),e.size||this.controller_.removeObserver(this))}},t.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},t.prototype.gatherActive=function(){var t=this;this.clearActive(),this.observations_.forEach((function(e){e.isActive()&&t.activeObservations_.push(e)}))},t.prototype.broadcastActive=function(){if(this.hasActive()){var t=this.callbackCtx_,e=this.activeObservations_.map((function(t){return new S(t.target,t.broadcastRect())}));this.callback_.call(t,e,t),this.clearActive()}},t.prototype.clearActive=function(){this.activeObservations_.splice(0)},t.prototype.hasActive=function(){return this.activeObservations_.length>0},t}(),k="undefined"!=typeof WeakMap?new WeakMap:new l,E=function t(e){if(!(this instanceof t))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=v.getInstance(),r=new $(e,n,this);k.set(this,r)};["observe","unobserve","disconnect"].forEach((function(t){E.prototype[t]=function(){var e;return(e=k.get(this))[t].apply(e,arguments)}}));const D=void 0!==f.ResizeObserver?f.ResizeObserver:E;var R=["client","offset","scroll","bounds","margin"];function T(t){var e=[];return R.forEach((function(n){t[n]&&e.push(n)})),e}function C(t,e){var n={};if(e.indexOf("client")>-1&&(n.client={top:t.clientTop,left:t.clientLeft,width:t.clientWidth,height:t.clientHeight}),e.indexOf("offset")>-1&&(n.offset={top:t.offsetTop,left:t.offsetLeft,width:t.offsetWidth,height:t.offsetHeight}),e.indexOf("scroll")>-1&&(n.scroll={top:t.scrollTop,left:t.scrollLeft,width:t.scrollWidth,height:t.scrollHeight}),e.indexOf("bounds")>-1){var r=t.getBoundingClientRect();n.bounds={top:r.top,right:r.right,bottom:r.bottom,left:r.left,width:r.width,height:r.height}}if(e.indexOf("margin")>-1){var o=getComputedStyle(t);n.margin={top:o?parseInt(o.marginTop):0,right:o?parseInt(o.marginRight):0,bottom:o?parseInt(o.marginBottom):0,left:o?parseInt(o.marginLeft):0}}return n}var z=function(t){return function(e){var n,s;return s=n=function(n){function s(){for(var e,r=arguments.length,o=new Array(r),i=0;i<r;i++)o[i]=arguments[i];return(e=n.call.apply(n,[this].concat(o))||this).state={contentRect:{entry:{},client:{},offset:{},scroll:{},bounds:{},margin:{}}},e._animationFrameID=null,e._resizeObserver=null,e._node=null,e._window=null,e.measure=function(n){var r=C(e._node,t||T(e.props));n&&(r.entry=n[0].contentRect),e._animationFrameID=e._window.requestAnimationFrame((function(){null!==e._resizeObserver&&(e.setState({contentRect:r}),"function"==typeof e.props.onResize&&e.props.onResize(r))}))},e._handleRef=function(t){var n;null!==e._resizeObserver&&null!==e._node&&e._resizeObserver.unobserve(e._node),e._node=t,e._window=(n=e._node)&&n.ownerDocument&&n.ownerDocument.defaultView||window;var r=e.props.innerRef;r&&("function"==typeof r?r(e._node):r.current=e._node),null!==e._resizeObserver&&null!==e._node&&e._resizeObserver.observe(e._node)},e}(0,i.A)(s,n);var c=s.prototype;return c.componentDidMount=function(){this._resizeObserver=null!==this._window&&this._window.ResizeObserver?new this._window.ResizeObserver(this.measure):new D(this.measure),null!==this._node&&(this._resizeObserver.observe(this._node),"function"==typeof this.props.onResize&&this.props.onResize(C(this._node,t||T(this.props))))},c.componentWillUnmount=function(){null!==this._window&&this._window.cancelAnimationFrame(this._animationFrameID),null!==this._resizeObserver&&(this._resizeObserver.disconnect(),this._resizeObserver=null)},c.render=function(){var t=this.props,n=(t.innerRef,t.onResize,(0,o.A)(t,["innerRef","onResize"]));return(0,a.createElement)(e,(0,r.A)({},n,{measureRef:this._handleRef,measure:this.measure,contentRect:this.state.contentRect}))},s}(a.Component),n.propTypes={client:c().bool,offset:c().bool,scroll:c().bool,bounds:c().bool,margin:c().bool,innerRef:c().oneOfType([c().object,c().func]),onResize:c().func},s}}()((function(t){var e=t.measure,n=t.measureRef,r=t.contentRect;return(0,t.children)({measure:e,measureRef:n,contentRect:r})}));z.displayName="Measure",z.propTypes.children=c().func;const j=z},5162:(t,e,n)=>{"use strict";n.d(e,{A:()=>o});var r=n(6540);function o(t){var e=(0,r.useRef)(t&&t.current);return(0,r.useEffect)((function(){t&&(t.current=e.current)}),[t]),e}},9679:(t,e,n)=>{"use strict";n.d(e,{A:()=>s});var r=n(6540),o=n(2114);const i=function(t){var e=(0,r.useState)([!1,null]),n=e[0],i=e[1];return(0,o.A)(t,(function(t){return i([!0,t])}),{event:"keydown"},[n]),(0,o.A)(t,(function(t){return i([!1,t])}),{event:"keyup"},[n]),n};const a=function(t,e){var n,o=(n=(0,r.useRef)(!0)).current?(n.current=!1,!0):n.current;(0,r.useEffect)((function(){if(!o)return t()}),e)};const s=function(t,e,n,r){void 0===r&&(r=i);var o=r(t),s=o[0],c=o[1];a((function(){!s&&n?n(c):s&&e&&e(c)}),[s])}},3736:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var r=n(6540),o=n(2739),i=function(t){(function(t){return"touches"in t})(t)&&t.touches.length<2&&t.preventDefault&&t.preventDefault()};const a=function(t,e){var n=void 0===e?{}:e,a=n.isPreventDefault,s=void 0===a||a,c=n.delay,l=void 0===c?300:c,u=(0,r.useRef)(),f=(0,r.useRef)(),h=(0,r.useCallback)((function(e){s&&e.target&&((0,o.on)(e.target,"touchend",i,{passive:!1}),f.current=e.target),u.current=setTimeout((function(){return t(e)}),l)}),[t,l,s]),p=(0,r.useCallback)((function(){u.current&&clearTimeout(u.current),s&&f.current&&(0,o.AU)(f.current,"touchend",i)}),[s]);return{onMouseDown:function(t){return h(t)},onTouchStart:function(t){return h(t)},onMouseUp:p,onMouseLeave:p,onTouchEnd:p}}},4712:(t,e,n)=>{"use strict";n.d(e,{A:()=>c});var r=n(6540),o=n(4701);const i=function(t){var e=(0,r.useRef)(t);e.current=t,(0,o.A)((function(){return function(){return e.current()}}))};const a=function(t){var e=(0,r.useRef)(0),n=(0,r.useState)(t),o=n[0],a=n[1],s=(0,r.useCallback)((function(t){cancelAnimationFrame(e.current),e.current=requestAnimationFrame((function(){a(t)}))}),[]);return i((function(){cancelAnimationFrame(e.current)})),[o,s]};var s=n(2739);const c=function(t,e){void 0===t&&(t=1/0),void 0===e&&(e=1/0);var n=a({width:s.Bd?window.innerWidth:t,height:s.Bd?window.innerHeight:e}),o=n[0],i=n[1];return(0,r.useEffect)((function(){if(s.Bd){var t=function(){i({width:window.innerWidth,height:window.innerHeight})};return(0,s.on)(window,"resize",t),function(){(0,s.AU)(window,"resize",t)}}}),[]),o}},88:(t,e,n)=>{"use strict";n.d(e,{Y1:()=>w});var r=n(8168),o=n(9417),i=n(7387),a=Number.isNaN||function(t){return"number"==typeof t&&t!=t};function s(t,e){if(t.length!==e.length)return!1;for(var n=0;n<t.length;n++)if(r=t[n],o=e[n],!(r===o||a(r)&&a(o)))return!1;var r,o;return!0}const c=function(t,e){var n;void 0===e&&(e=s);var r,o=[],i=!1;return function(){for(var a=[],s=0;s<arguments.length;s++)a[s]=arguments[s];return i&&n===this&&e(a,o)||(r=t.apply(this,a),i=!0,n=this,o=a),r}};var l=n(6540),u="object"==typeof performance&&"function"==typeof performance.now?function(){return performance.now()}:function(){return Date.now()};function f(t){cancelAnimationFrame(t.id)}function h(t,e){var n=u();var r={id:requestAnimationFrame((function o(){u()-n>=e?t.call(null):r.id=requestAnimationFrame(o)}))};return r}var p=-1;function d(t){if(void 0===t&&(t=!1),-1===p||t){var e=document.createElement("div"),n=e.style;n.width="50px",n.height="50px",n.overflow="scroll",document.body.appendChild(e),p=e.offsetWidth-e.clientWidth,document.body.removeChild(e)}return p}var v=null;function m(t){if(void 0===t&&(t=!1),null===v||t){var e=document.createElement("div"),n=e.style;n.width="50px",n.height="50px",n.overflow="scroll",n.direction="rtl";var r=document.createElement("div"),o=r.style;return o.width="100px",o.height="100px",e.appendChild(r),document.body.appendChild(e),e.scrollLeft>0?v="positive-descending":(e.scrollLeft=1,v=0===e.scrollLeft?"negative":"positive-ascending"),document.body.removeChild(e),v}return v}var g=function(t,e){return t};function y(t){var e,n=t.getItemOffset,a=t.getEstimatedTotalSize,s=t.getItemSize,u=t.getOffsetForIndexAndAlignment,p=t.getStartIndexForOffset,v=t.getStopIndexForStartIndex,y=t.initInstanceProps,w=t.shouldResetStyleCacheOnItemSizeChange,_=t.validateProps;return e=function(t){function e(e){var r;return(r=t.call(this,e)||this)._instanceProps=y(r.props,(0,o.A)(r)),r._outerRef=void 0,r._resetIsScrollingTimeoutId=null,r.state={instance:(0,o.A)(r),isScrolling:!1,scrollDirection:"forward",scrollOffset:"number"==typeof r.props.initialScrollOffset?r.props.initialScrollOffset:0,scrollUpdateWasRequested:!1},r._callOnItemsRendered=void 0,r._callOnItemsRendered=c((function(t,e,n,o){return r.props.onItemsRendered({overscanStartIndex:t,overscanStopIndex:e,visibleStartIndex:n,visibleStopIndex:o})})),r._callOnScroll=void 0,r._callOnScroll=c((function(t,e,n){return r.props.onScroll({scrollDirection:t,scrollOffset:e,scrollUpdateWasRequested:n})})),r._getItemStyle=void 0,r._getItemStyle=function(t){var e,o=r.props,i=o.direction,a=o.itemSize,c=o.layout,l=r._getItemStyleCache(w&&a,w&&c,w&&i);if(l.hasOwnProperty(t))e=l[t];else{var u=n(r.props,t,r._instanceProps),f=s(r.props,t,r._instanceProps),h="horizontal"===i||"horizontal"===c,p="rtl"===i,d=h?u:0;l[t]=e={position:"absolute",left:p?void 0:d,right:p?d:void 0,top:h?0:u,height:h?"100%":f,width:h?f:"100%"}}return e},r._getItemStyleCache=void 0,r._getItemStyleCache=c((function(t,e,n){return{}})),r._onScrollHorizontal=function(t){var e=t.currentTarget,n=e.clientWidth,o=e.scrollLeft,i=e.scrollWidth;r.setState((function(t){if(t.scrollOffset===o)return null;var e=r.props.direction,a=o;if("rtl"===e)switch(m()){case"negative":a=-o;break;case"positive-descending":a=i-n-o}return a=Math.max(0,Math.min(a,i-n)),{isScrolling:!0,scrollDirection:t.scrollOffset<a?"forward":"backward",scrollOffset:a,scrollUpdateWasRequested:!1}}),r._resetIsScrollingDebounced)},r._onScrollVertical=function(t){var e=t.currentTarget,n=e.clientHeight,o=e.scrollHeight,i=e.scrollTop;r.setState((function(t){if(t.scrollOffset===i)return null;var e=Math.max(0,Math.min(i,o-n));return{isScrolling:!0,scrollDirection:t.scrollOffset<e?"forward":"backward",scrollOffset:e,scrollUpdateWasRequested:!1}}),r._resetIsScrollingDebounced)},r._outerRefSetter=function(t){var e=r.props.outerRef;r._outerRef=t,"function"==typeof e?e(t):null!=e&&"object"==typeof e&&e.hasOwnProperty("current")&&(e.current=t)},r._resetIsScrollingDebounced=function(){null!==r._resetIsScrollingTimeoutId&&f(r._resetIsScrollingTimeoutId),r._resetIsScrollingTimeoutId=h(r._resetIsScrolling,150)},r._resetIsScrolling=function(){r._resetIsScrollingTimeoutId=null,r.setState({isScrolling:!1},(function(){r._getItemStyleCache(-1,null)}))},r}(0,i.A)(e,t),e.getDerivedStateFromProps=function(t,e){return b(t,e),_(t),null};var x=e.prototype;return x.scrollTo=function(t){t=Math.max(0,t),this.setState((function(e){return e.scrollOffset===t?null:{scrollDirection:e.scrollOffset<t?"forward":"backward",scrollOffset:t,scrollUpdateWasRequested:!0}}),this._resetIsScrollingDebounced)},x.scrollToItem=function(t,e){void 0===e&&(e="auto");var n=this.props,r=n.itemCount,o=n.layout,i=this.state.scrollOffset;t=Math.max(0,Math.min(t,r-1));var a=0;if(this._outerRef){var s=this._outerRef;a="vertical"===o?s.scrollWidth>s.clientWidth?d():0:s.scrollHeight>s.clientHeight?d():0}this.scrollTo(u(this.props,t,e,i,this._instanceProps,a))},x.componentDidMount=function(){var t=this.props,e=t.direction,n=t.initialScrollOffset,r=t.layout;if("number"==typeof n&&null!=this._outerRef){var o=this._outerRef;"horizontal"===e||"horizontal"===r?o.scrollLeft=n:o.scrollTop=n}this._callPropsCallbacks()},x.componentDidUpdate=function(){var t=this.props,e=t.direction,n=t.layout,r=this.state,o=r.scrollOffset;if(r.scrollUpdateWasRequested&&null!=this._outerRef){var i=this._outerRef;if("horizontal"===e||"horizontal"===n)if("rtl"===e)switch(m()){case"negative":i.scrollLeft=-o;break;case"positive-ascending":i.scrollLeft=o;break;default:var a=i.clientWidth,s=i.scrollWidth;i.scrollLeft=s-a-o}else i.scrollLeft=o;else i.scrollTop=o}this._callPropsCallbacks()},x.componentWillUnmount=function(){null!==this._resetIsScrollingTimeoutId&&f(this._resetIsScrollingTimeoutId)},x.render=function(){var t=this.props,e=t.children,n=t.className,o=t.direction,i=t.height,s=t.innerRef,c=t.innerElementType,u=t.innerTagName,f=t.itemCount,h=t.itemData,p=t.itemKey,d=void 0===p?g:p,v=t.layout,m=t.outerElementType,y=t.outerTagName,b=t.style,w=t.useIsScrolling,_=t.width,x=this.state.isScrolling,O="horizontal"===o||"horizontal"===v,M=O?this._onScrollHorizontal:this._onScrollVertical,A=this._getRangeToRender(),S=A[0],$=A[1],k=[];if(f>0)for(var E=S;E<=$;E++)k.push((0,l.createElement)(e,{data:h,key:d(E,h),index:E,isScrolling:w?x:void 0,style:this._getItemStyle(E)}));var D=a(this.props,this._instanceProps);return(0,l.createElement)(m||y||"div",{className:n,onScroll:M,ref:this._outerRefSetter,style:(0,r.A)({position:"relative",height:i,width:_,overflow:"auto",WebkitOverflowScrolling:"touch",willChange:"transform",direction:o},b)},(0,l.createElement)(c||u||"div",{children:k,ref:s,style:{height:O?"100%":D,pointerEvents:x?"none":void 0,width:O?D:"100%"}}))},x._callPropsCallbacks=function(){if("function"==typeof this.props.onItemsRendered&&this.props.itemCount>0){var t=this._getRangeToRender(),e=t[0],n=t[1],r=t[2],o=t[3];this._callOnItemsRendered(e,n,r,o)}if("function"==typeof this.props.onScroll){var i=this.state,a=i.scrollDirection,s=i.scrollOffset,c=i.scrollUpdateWasRequested;this._callOnScroll(a,s,c)}},x._getRangeToRender=function(){var t=this.props,e=t.itemCount,n=t.overscanCount,r=this.state,o=r.isScrolling,i=r.scrollDirection,a=r.scrollOffset;if(0===e)return[0,0,0,0];var s=p(this.props,a,this._instanceProps),c=v(this.props,s,a,this._instanceProps),l=o&&"backward"!==i?1:Math.max(1,n),u=o&&"forward"!==i?1:Math.max(1,n);return[Math.max(0,s-l),Math.max(0,Math.min(e-1,c+u)),s,c]},e}(l.PureComponent),e.defaultProps={direction:"ltr",itemData:void 0,layout:"vertical",overscanCount:2,useIsScrolling:!1},e}var b=function(t,e){t.children,t.direction,t.height,t.layout,t.innerTagName,t.outerTagName,t.width,e.instance},w=y({getItemOffset:function(t,e){return e*t.itemSize},getItemSize:function(t,e){return t.itemSize},getEstimatedTotalSize:function(t){var e=t.itemCount;return t.itemSize*e},getOffsetForIndexAndAlignment:function(t,e,n,r,o,i){var a=t.direction,s=t.height,c=t.itemCount,l=t.itemSize,u=t.layout,f=t.width,h="horizontal"===a||"horizontal"===u?f:s,p=Math.max(0,c*l-h),d=Math.min(p,e*l),v=Math.max(0,e*l-h+l+i);switch("smart"===n&&(n=r>=v-h&&r<=d+h?"auto":"center"),n){case"start":return d;case"end":return v;case"center":var m=Math.round(v+(d-v)/2);return m<Math.ceil(h/2)?0:m>p+Math.floor(h/2)?p:m;default:return r>=v&&r<=d?r:r<v?v:d}},getStartIndexForOffset:function(t,e){var n=t.itemCount,r=t.itemSize;return Math.max(0,Math.min(n-1,Math.floor(e/r)))},getStopIndexForStartIndex:function(t,e,n){var r=t.direction,o=t.height,i=t.itemCount,a=t.itemSize,s=t.layout,c=t.width,l=e*a,u="horizontal"===r||"horizontal"===s?c:o,f=Math.ceil((u+n-l)/a);return Math.max(0,Math.min(i-1,e+f-1))},initInstanceProps:function(t){},shouldResetStyleCacheOnItemSizeChange:!0,validateProps:function(t){t.itemSize}})},846:(t,e,n)=>{"use strict";function r(t,e){let n;if(void 0===e)for(const e of t)null!=e&&(n<e||void 0===n&&e>=e)&&(n=e);else{let r=-1;for(let o of t)null!=(o=e(o,++r,t))&&(n<o||void 0===n&&o>=o)&&(n=o)}return n}n.d(e,{A:()=>r})},8239:(t,e,n)=>{"use strict";n.d(e,{A:()=>Pt});const r=Math.sqrt(50),o=Math.sqrt(10),i=Math.sqrt(2);function a(t,e,n){const s=(e-t)/Math.max(0,n),c=Math.floor(Math.log10(s)),l=s/Math.pow(10,c),u=l>=r?10:l>=o?5:l>=i?2:1;let f,h,p;return c<0?(p=Math.pow(10,-c)/u,f=Math.round(t*p),h=Math.round(e*p),f/p<t&&++f,h/p>e&&--h,p=-p):(p=Math.pow(10,c)*u,f=Math.round(t/p),h=Math.round(e/p),f*p<t&&++f,h*p>e&&--h),h<f&&.5<=n&&n<2?a(t,e,2*n):[f,h,p]}function s(t,e,n){return a(t=+t,e=+e,n=+n)[2]}function c(t,e){return null==t||null==e?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function l(t,e){return null==t||null==e?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function u(t){let e,n,r;function o(t,r,o=0,i=t.length){if(o<i){if(0!==e(r,r))return i;do{const e=o+i>>>1;n(t[e],r)<0?o=e+1:i=e}while(o<i)}return o}return 2!==t.length?(e=c,n=(e,n)=>c(t(e),n),r=(e,n)=>t(e)-n):(e=t===c||t===l?t:f,n=t,r=t),{left:o,center:function(t,e,n=0,i=t.length){const a=o(t,e,n,i-1);return a>n&&r(t[a-1],e)>-r(t[a],e)?a-1:a},right:function(t,r,o=0,i=t.length){if(o<i){if(0!==e(r,r))return i;do{const e=o+i>>>1;n(t[e],r)<=0?o=e+1:i=e}while(o<i)}return o}}}function f(){return 0}const h=u(c),p=h.right,d=(h.left,u((function(t){return null===t?NaN:+t})).center,p);function v(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function m(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function g(){}var y=.7,b=1/y,w="\\s*([+-]?\\d+)\\s*",_="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",x="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",O=/^#([0-9a-f]{3,8})$/,M=new RegExp(`^rgb\\(${w},${w},${w}\\)$`),A=new RegExp(`^rgb\\(${x},${x},${x}\\)$`),S=new RegExp(`^rgba\\(${w},${w},${w},${_}\\)$`),$=new RegExp(`^rgba\\(${x},${x},${x},${_}\\)$`),k=new RegExp(`^hsl\\(${_},${x},${x}\\)$`),E=new RegExp(`^hsla\\(${_},${x},${x},${_}\\)$`),D={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function R(){return this.rgb().formatHex()}function T(){return this.rgb().formatRgb()}function C(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=O.exec(t))?(n=e[1].length,e=parseInt(e[1],16),6===n?z(e):3===n?new P(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===n?j(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===n?j(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=M.exec(t))?new P(e[1],e[2],e[3],1):(e=A.exec(t))?new P(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=S.exec(t))?j(e[1],e[2],e[3],e[4]):(e=$.exec(t))?j(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=k.exec(t))?q(e[1],e[2]/100,e[3]/100,1):(e=E.exec(t))?q(e[1],e[2]/100,e[3]/100,e[4]):D.hasOwnProperty(t)?z(D[t]):"transparent"===t?new P(NaN,NaN,NaN,0):null}function z(t){return new P(t>>16&255,t>>8&255,255&t,1)}function j(t,e,n,r){return r<=0&&(t=e=n=NaN),new P(t,e,n,r)}function I(t,e,n,r){return 1===arguments.length?((o=t)instanceof g||(o=C(o)),o?new P((o=o.rgb()).r,o.g,o.b,o.opacity):new P):new P(t,e,n,null==r?1:r);var o}function P(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function N(){return`#${W(this.r)}${W(this.g)}${W(this.b)}`}function F(){const t=L(this.opacity);return`${1===t?"rgb(":"rgba("}${H(this.r)}, ${H(this.g)}, ${H(this.b)}${1===t?")":`, ${t})`}`}function L(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function H(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function W(t){return((t=H(t))<16?"0":"")+t.toString(16)}function q(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new B(t,e,n,r)}function U(t){if(t instanceof B)return new B(t.h,t.s,t.l,t.opacity);if(t instanceof g||(t=C(t)),!t)return new B;if(t instanceof B)return t;var e=(t=t.rgb()).r/255,n=t.g/255,r=t.b/255,o=Math.min(e,n,r),i=Math.max(e,n,r),a=NaN,s=i-o,c=(i+o)/2;return s?(a=e===i?(n-r)/s+6*(n<r):n===i?(r-e)/s+2:(e-n)/s+4,s/=c<.5?i+o:2-i-o,a*=60):s=c>0&&c<1?0:a,new B(a,s,c,t.opacity)}function B(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function V(t){return(t=(t||0)%360)<0?t+360:t}function K(t){return Math.max(0,Math.min(1,t||0))}function Y(t,e,n){return 255*(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)}function G(t,e,n,r,o){var i=t*t,a=i*t;return((1-3*t+3*i-a)*e+(4-6*i+3*a)*n+(1+3*t+3*i-3*a)*r+a*o)/6}v(g,C,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:R,formatHex:R,formatHex8:function(){return this.rgb().formatHex8()},formatHsl:function(){return U(this).formatHsl()},formatRgb:T,toString:T}),v(P,I,m(g,{brighter(t){return t=null==t?b:Math.pow(b,t),new P(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=null==t?y:Math.pow(y,t),new P(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new P(H(this.r),H(this.g),H(this.b),L(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:N,formatHex:N,formatHex8:function(){return`#${W(this.r)}${W(this.g)}${W(this.b)}${W(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:F,toString:F})),v(B,(function(t,e,n,r){return 1===arguments.length?U(t):new B(t,e,n,null==r?1:r)}),m(g,{brighter(t){return t=null==t?b:Math.pow(b,t),new B(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=null==t?y:Math.pow(y,t),new B(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,o=2*n-r;return new P(Y(t>=240?t-240:t+120,o,r),Y(t,o,r),Y(t<120?t+240:t-120,o,r),this.opacity)},clamp(){return new B(V(this.h),K(this.s),K(this.l),L(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const t=L(this.opacity);return`${1===t?"hsl(":"hsla("}${V(this.h)}, ${100*K(this.s)}%, ${100*K(this.l)}%${1===t?")":`, ${t})`}`}}));const X=t=>()=>t;function Z(t,e){return function(n){return t+n*e}}function Q(t){return 1==(t=+t)?J:function(e,n){return n-e?function(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}(e,n,t):X(isNaN(e)?n:e)}}function J(t,e){var n=e-t;return n?Z(t,n):X(isNaN(t)?e:t)}const tt=function t(e){var n=Q(e);function r(t,e){var r=n((t=I(t)).r,(e=I(e)).r),o=n(t.g,e.g),i=n(t.b,e.b),a=J(t.opacity,e.opacity);return function(e){return t.r=r(e),t.g=o(e),t.b=i(e),t.opacity=a(e),t+""}}return r.gamma=t,r}(1);function et(t){return function(e){var n,r,o=e.length,i=new Array(o),a=new Array(o),s=new Array(o);for(n=0;n<o;++n)r=I(e[n]),i[n]=r.r||0,a[n]=r.g||0,s[n]=r.b||0;return i=t(i),a=t(a),s=t(s),r.opacity=1,function(t){return r.r=i(t),r.g=a(t),r.b=s(t),r+""}}}et((function(t){var e=t.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),o=t[r],i=t[r+1],a=r>0?t[r-1]:2*o-i,s=r<e-1?t[r+2]:2*i-o;return G((n-r/e)*e,a,o,i,s)}})),et((function(t){var e=t.length;return function(n){var r=Math.floor(((n%=1)<0?++n:n)*e),o=t[(r+e-1)%e],i=t[r%e],a=t[(r+1)%e],s=t[(r+2)%e];return G((n-r/e)*e,o,i,a,s)}}));function nt(t,e){var n,r=e?e.length:0,o=t?Math.min(r,t.length):0,i=new Array(o),a=new Array(r);for(n=0;n<o;++n)i[n]=ut(t[n],e[n]);for(;n<r;++n)a[n]=e[n];return function(t){for(n=0;n<o;++n)a[n]=i[n](t);return a}}function rt(t,e){var n=new Date;return t=+t,e=+e,function(r){return n.setTime(t*(1-r)+e*r),n}}function ot(t,e){return t=+t,e=+e,function(n){return t*(1-n)+e*n}}function it(t,e){var n,r={},o={};for(n in null!==t&&"object"==typeof t||(t={}),null!==e&&"object"==typeof e||(e={}),e)n in t?r[n]=ut(t[n],e[n]):o[n]=e[n];return function(t){for(n in r)o[n]=r[n](t);return o}}var at=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,st=new RegExp(at.source,"g");function ct(t,e){var n,r,o,i=at.lastIndex=st.lastIndex=0,a=-1,s=[],c=[];for(t+="",e+="";(n=at.exec(t))&&(r=st.exec(e));)(o=r.index)>i&&(o=e.slice(i,o),s[a]?s[a]+=o:s[++a]=o),(n=n[0])===(r=r[0])?s[a]?s[a]+=r:s[++a]=r:(s[++a]=null,c.push({i:a,x:ot(n,r)})),i=st.lastIndex;return i<e.length&&(o=e.slice(i),s[a]?s[a]+=o:s[++a]=o),s.length<2?c[0]?function(t){return function(e){return t(e)+""}}(c[0].x):function(t){return function(){return t}}(e):(e=c.length,function(t){for(var n,r=0;r<e;++r)s[(n=c[r]).i]=n.x(t);return s.join("")})}function lt(t,e){e||(e=[]);var n,r=t?Math.min(e.length,t.length):0,o=e.slice();return function(i){for(n=0;n<r;++n)o[n]=t[n]*(1-i)+e[n]*i;return o}}function ut(t,e){var n,r,o=typeof e;return null==e||"boolean"===o?X(e):("number"===o?ot:"string"===o?(n=C(e))?(e=n,tt):ct:e instanceof C?tt:e instanceof Date?rt:(r=e,!ArrayBuffer.isView(r)||r instanceof DataView?Array.isArray(e)?nt:"function"!=typeof e.valueOf&&"function"!=typeof e.toString||isNaN(e)?it:ot:lt))(t,e)}function ft(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}}function ht(t){return+t}var pt=[0,1];function dt(t){return t}function vt(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:(n=isNaN(e)?NaN:.5,function(){return n});var n}function mt(t,e,n){var r=t[0],o=t[1],i=e[0],a=e[1];return o<r?(r=vt(o,r),i=n(a,i)):(r=vt(r,o),i=n(i,a)),function(t){return i(r(t))}}function gt(t,e,n){var r=Math.min(t.length,e.length)-1,o=new Array(r),i=new Array(r),a=-1;for(t[r]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++a<r;)o[a]=vt(t[a],t[a+1]),i[a]=n(e[a],e[a+1]);return function(e){var n=d(t,e,1,r)-1;return i[n](o[n](e))}}function yt(){var t,e,n,r,o,i,a=pt,s=pt,c=ut,l=dt;function u(){var t,e,n,c=Math.min(a.length,s.length);return l!==dt&&(t=a[0],e=a[c-1],t>e&&(n=t,t=e,e=n),l=function(n){return Math.max(t,Math.min(e,n))}),r=c>2?gt:mt,o=i=null,f}function f(e){return null==e||isNaN(e=+e)?n:(o||(o=r(a.map(t),s,c)))(t(l(e)))}return f.invert=function(n){return l(e((i||(i=r(s,a.map(t),ot)))(n)))},f.domain=function(t){return arguments.length?(a=Array.from(t,ht),u()):a.slice()},f.range=function(t){return arguments.length?(s=Array.from(t),u()):s.slice()},f.rangeRound=function(t){return s=Array.from(t),c=ft,u()},f.clamp=function(t){return arguments.length?(l=!!t||dt,u()):l!==dt},f.interpolate=function(t){return arguments.length?(c=t,u()):c},f.unknown=function(t){return arguments.length?(n=t,f):n},function(n,r){return t=n,e=r,u()}}function bt(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t)}return this}var wt,_t=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function xt(t){if(!(e=_t.exec(t)))throw new Error("invalid format: "+t);var e;return new Ot({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function Ot(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function Mt(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}function At(t){return(t=Mt(Math.abs(t)))?t[1]:NaN}function St(t,e){var n=Mt(t,e);if(!n)return t+"";var r=n[0],o=n[1];return o<0?"0."+new Array(-o).join("0")+r:r.length>o+1?r.slice(0,o+1)+"."+r.slice(o+1):r+new Array(o-r.length+2).join("0")}xt.prototype=Ot.prototype,Ot.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const $t={"%":(t,e)=>(100*t).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>St(100*t,e),r:St,s:function(t,e){var n=Mt(t,e);if(!n)return t+"";var r=n[0],o=n[1],i=o-(wt=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,a=r.length;return i===a?r:i>a?r+new Array(i-a+1).join("0"):i>0?r.slice(0,i)+"."+r.slice(i):"0."+new Array(1-i).join("0")+Mt(t,Math.max(0,e+i-1))[0]},X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function kt(t){return t}var Et,Dt,Rt,Tt=Array.prototype.map,Ct=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function zt(t){var e,n,r=void 0===t.grouping||void 0===t.thousands?kt:(e=Tt.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var o=t.length,i=[],a=0,s=e[0],c=0;o>0&&s>0&&(c+s+1>r&&(s=Math.max(1,r-c)),i.push(t.substring(o-=s,o+s)),!((c+=s+1)>r));)s=e[a=(a+1)%e.length];return i.reverse().join(n)}),o=void 0===t.currency?"":t.currency[0]+"",i=void 0===t.currency?"":t.currency[1]+"",a=void 0===t.decimal?".":t.decimal+"",s=void 0===t.numerals?kt:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(Tt.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",l=void 0===t.minus?"−":t.minus+"",u=void 0===t.nan?"NaN":t.nan+"";function f(t){var e=(t=xt(t)).fill,n=t.align,f=t.sign,h=t.symbol,p=t.zero,d=t.width,v=t.comma,m=t.precision,g=t.trim,y=t.type;"n"===y?(v=!0,y="g"):$t[y]||(void 0===m&&(m=12),g=!0,y="g"),(p||"0"===e&&"="===n)&&(p=!0,e="0",n="=");var b="$"===h?o:"#"===h&&/[boxX]/.test(y)?"0"+y.toLowerCase():"",w="$"===h?i:/[%p]/.test(y)?c:"",_=$t[y],x=/[defgprs%]/.test(y);function O(t){var o,i,c,h=b,O=w;if("c"===y)O=_(t)+O,t="";else{var M=(t=+t)<0||1/t<0;if(t=isNaN(t)?u:_(Math.abs(t),m),g&&(t=function(t){t:for(var e,n=t.length,r=1,o=-1;r<n;++r)switch(t[r]){case".":o=e=r;break;case"0":0===o&&(o=r),e=r;break;default:if(!+t[r])break t;o>0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t}(t)),M&&0==+t&&"+"!==f&&(M=!1),h=(M?"("===f?f:l:"-"===f||"("===f?"":f)+h,O=("s"===y?Ct[8+wt/3]:"")+O+(M&&"("===f?")":""),x)for(o=-1,i=t.length;++o<i;)if(48>(c=t.charCodeAt(o))||c>57){O=(46===c?a+t.slice(o+1):t.slice(o))+O,t=t.slice(0,o);break}}v&&!p&&(t=r(t,1/0));var A=h.length+t.length+O.length,S=A<d?new Array(d-A+1).join(e):"";switch(v&&p&&(t=r(S+t,S.length?d-O.length:1/0),S=""),n){case"<":t=h+t+O+S;break;case"=":t=h+S+t+O;break;case"^":t=S.slice(0,A=S.length>>1)+h+t+O+S.slice(A);break;default:t=S+h+t+O}return s(t)}return m=void 0===m?6:/[gprs]/.test(y)?Math.max(1,Math.min(21,m)):Math.max(0,Math.min(20,m)),O.toString=function(){return t+""},O}return{format:f,formatPrefix:function(t,e){var n=f(((t=xt(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(At(e)/3))),o=Math.pow(10,-r),i=Ct[8+r/3];return function(t){return n(o*t)+i}}}}function jt(t,e,n,r){var o,i=function(t,e,n){n=+n;const r=(e=+e)<(t=+t),o=r?s(e,t,n):s(t,e,n);return(r?-1:1)*(o<0?1/-o:o)}(t,e,n);switch((r=xt(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(t),Math.abs(e));return null!=r.precision||isNaN(o=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(At(e)/3)))-At(Math.abs(t)))}(i,a))||(r.precision=o),Rt(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,At(e)-At(t))+1}(i,Math.max(Math.abs(t),Math.abs(e))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=function(t){return Math.max(0,-At(Math.abs(t)))}(i))||(r.precision=o-2*("%"===r.type))}return Dt(r)}function It(t){var e=t.domain;return t.ticks=function(t){var n=e();return function(t,e,n){if(!((n=+n)>0))return[];if((t=+t)==(e=+e))return[t];const r=e<t,[o,i,s]=r?a(e,t,n):a(t,e,n);if(!(i>=o))return[];const c=i-o+1,l=new Array(c);if(r)if(s<0)for(let t=0;t<c;++t)l[t]=(i-t)/-s;else for(let t=0;t<c;++t)l[t]=(i-t)*s;else if(s<0)for(let t=0;t<c;++t)l[t]=(o+t)/-s;else for(let t=0;t<c;++t)l[t]=(o+t)*s;return l}(n[0],n[n.length-1],null==t?10:t)},t.tickFormat=function(t,n){var r=e();return jt(r[0],r[r.length-1],null==t?10:t,n)},t.nice=function(n){null==n&&(n=10);var r,o,i=e(),a=0,c=i.length-1,l=i[a],u=i[c],f=10;for(u<l&&(o=l,l=u,u=o,o=a,a=c,c=o);f-- >0;){if((o=s(l,u,n))===r)return i[a]=l,i[c]=u,e(i);if(o>0)l=Math.floor(l/o)*o,u=Math.ceil(u/o)*o;else{if(!(o<0))break;l=Math.ceil(l*o)/o,u=Math.floor(u*o)/o}r=o}return t},t}function Pt(){var t=yt()(dt,dt);return t.copy=function(){return e=t,Pt().domain(e.domain()).range(e.range()).interpolate(e.interpolate()).clamp(e.clamp()).unknown(e.unknown());var e},bt.apply(t,arguments),It(t)}Et=zt({thousands:",",grouping:[3],currency:["$",""]}),Dt=Et.format,Rt=Et.formatPrefix},4439:(t,e,n)=>{"use strict";n.d(e,{A:()=>l});var r=n(5917),o=n(8946),i=n(6343),a=n(8640),s=n(1509),c=n(9206);function l(t,e,n){var l=null,u=(0,o.A)(!0),f=null,h=i.A,p=null,d=(0,s.i)(v);function v(o){var i,a,s,c,v,m=(o=(0,r.A)(o)).length,g=!1,y=new Array(m),b=new Array(m);for(null==f&&(p=h(v=d())),i=0;i<=m;++i){if(!(i<m&&u(c=o[i],i,o))===g)if(g=!g)a=i,p.areaStart(),p.lineStart();else{for(p.lineEnd(),p.lineStart(),s=i-1;s>=a;--s)p.point(y[s],b[s]);p.lineEnd(),p.areaEnd()}g&&(y[i]=+t(c,i,o),b[i]=+e(c,i,o),p.point(l?+l(c,i,o):y[i],n?+n(c,i,o):b[i]))}if(v)return p=null,v+""||null}function m(){return(0,a.A)().defined(u).curve(h).context(f)}return t="function"==typeof t?t:void 0===t?c.x:(0,o.A)(+t),e="function"==typeof e?e:void 0===e?(0,o.A)(0):(0,o.A)(+e),n="function"==typeof n?n:void 0===n?c.y:(0,o.A)(+n),v.x=function(e){return arguments.length?(t="function"==typeof e?e:(0,o.A)(+e),l=null,v):t},v.x0=function(e){return arguments.length?(t="function"==typeof e?e:(0,o.A)(+e),v):t},v.x1=function(t){return arguments.length?(l=null==t?null:"function"==typeof t?t:(0,o.A)(+t),v):l},v.y=function(t){return arguments.length?(e="function"==typeof t?t:(0,o.A)(+t),n=null,v):e},v.y0=function(t){return arguments.length?(e="function"==typeof t?t:(0,o.A)(+t),v):e},v.y1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:(0,o.A)(+t),v):n},v.lineX0=v.lineY0=function(){return m().x(t).y(e)},v.lineY1=function(){return m().x(t).y(n)},v.lineX1=function(){return m().x(l).y(e)},v.defined=function(t){return arguments.length?(u="function"==typeof t?t:(0,o.A)(!!t),v):u},v.curve=function(t){return arguments.length?(h=t,null!=f&&(p=h(f)),v):h},v.context=function(t){return arguments.length?(null==t?f=p=null:p=h(f=t),v):f},v}},5917:(t,e,n)=>{"use strict";n.d(e,{A:()=>r});Array.prototype.slice;function r(t){return"object"==typeof t&&"length"in t?t:Array.from(t)}},8946:(t,e,n)=>{"use strict";function r(t){return function(){return t}}n.d(e,{A:()=>r})},6343:(t,e,n)=>{"use strict";function r(t){this._context=t}function o(t){return new r(t)}n.d(e,{A:()=>o}),r.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}}},1253:(t,e,n)=>{"use strict";function r(t){return t<0?-1:1}function o(t,e,n){var o=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(o||i<0&&-0),s=(n-t._y1)/(i||o<0&&-0),c=(a*i+s*o)/(o+i);return(r(a)+r(s))*Math.min(Math.abs(a),Math.abs(s),.5*Math.abs(c))||0}function i(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function a(t,e,n){var r=t._x0,o=t._y0,i=t._x1,a=t._y1,s=(i-r)/3;t._context.bezierCurveTo(r+s,o+s*e,i-s,a-s*n,i,a)}function s(t){this._context=t}function c(t){this._context=new l(t)}function l(t){this._context=t}function u(t){return new s(t)}n.d(e,{G:()=>u}),s.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:a(this,this._t0,i(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var n=NaN;if(e=+e,(t=+t)!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,a(this,i(this,n=o(this,t,e)),n);break;default:a(this,this._t0,n=o(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=n}}},(c.prototype=Object.create(s.prototype)).point=function(t,e){s.prototype.point.call(this,e,t)},l.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,n,r,o,i){this._context.bezierCurveTo(e,t,r,n,i,o)}}},8640:(t,e,n)=>{"use strict";n.d(e,{A:()=>c});var r=n(5917),o=n(8946),i=n(6343),a=n(1509),s=n(9206);function c(t,e){var n=(0,o.A)(!0),c=null,l=i.A,u=null,f=(0,a.i)(h);function h(o){var i,a,s,h=(o=(0,r.A)(o)).length,p=!1;for(null==c&&(u=l(s=f())),i=0;i<=h;++i)!(i<h&&n(a=o[i],i,o))===p&&((p=!p)?u.lineStart():u.lineEnd()),p&&u.point(+t(a,i,o),+e(a,i,o));if(s)return u=null,s+""||null}return t="function"==typeof t?t:void 0===t?s.x:(0,o.A)(t),e="function"==typeof e?e:void 0===e?s.y:(0,o.A)(e),h.x=function(e){return arguments.length?(t="function"==typeof e?e:(0,o.A)(+e),h):t},h.y=function(t){return arguments.length?(e="function"==typeof t?t:(0,o.A)(+t),h):e},h.defined=function(t){return arguments.length?(n="function"==typeof t?t:(0,o.A)(!!t),h):n},h.curve=function(t){return arguments.length?(l=t,null!=c&&(u=l(c)),h):l},h.context=function(t){return arguments.length?(null==t?c=u=null:u=l(c=t),h):c},h}},1509:(t,e,n)=>{"use strict";n.d(e,{i:()=>l});const r=Math.PI,o=2*r,i=1e-6,a=o-i;function s(t){this._+=t[0];for(let e=1,n=t.length;e<n;++e)this._+=arguments[e]+t[e]}class c{constructor(t){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=null==t?s:function(t){let e=Math.floor(t);if(!(e>=0))throw new Error(`invalid digits: ${t}`);if(e>15)return s;const n=10**e;return function(t){this._+=t[0];for(let e=1,r=t.length;e<r;++e)this._+=Math.round(arguments[e]*n)/n+t[e]}}(t)}moveTo(t,e){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+e}`}closePath(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(t,e){this._append`L${this._x1=+t},${this._y1=+e}`}quadraticCurveTo(t,e,n,r){this._append`Q${+t},${+e},${this._x1=+n},${this._y1=+r}`}bezierCurveTo(t,e,n,r,o,i){this._append`C${+t},${+e},${+n},${+r},${this._x1=+o},${this._y1=+i}`}arcTo(t,e,n,o,a){if(t=+t,e=+e,n=+n,o=+o,(a=+a)<0)throw new Error(`negative radius: ${a}`);let s=this._x1,c=this._y1,l=n-t,u=o-e,f=s-t,h=c-e,p=f*f+h*h;if(null===this._x1)this._append`M${this._x1=t},${this._y1=e}`;else if(p>i)if(Math.abs(h*l-u*f)>i&&a){let d=n-s,v=o-c,m=l*l+u*u,g=d*d+v*v,y=Math.sqrt(m),b=Math.sqrt(p),w=a*Math.tan((r-Math.acos((m+p-g)/(2*y*b)))/2),_=w/b,x=w/y;Math.abs(_-1)>i&&this._append`L${t+_*f},${e+_*h}`,this._append`A${a},${a},0,0,${+(h*d>f*v)},${this._x1=t+x*l},${this._y1=e+x*u}`}else this._append`L${this._x1=t},${this._y1=e}`;else;}arc(t,e,n,s,c,l){if(t=+t,e=+e,l=!!l,(n=+n)<0)throw new Error(`negative radius: ${n}`);let u=n*Math.cos(s),f=n*Math.sin(s),h=t+u,p=e+f,d=1^l,v=l?s-c:c-s;null===this._x1?this._append`M${h},${p}`:(Math.abs(this._x1-h)>i||Math.abs(this._y1-p)>i)&&this._append`L${h},${p}`,n&&(v<0&&(v=v%o+o),v>a?this._append`A${n},${n},0,1,${d},${t-u},${e-f}A${n},${n},0,1,${d},${this._x1=h},${this._y1=p}`:v>i&&this._append`A${n},${n},0,${+(v>=r)},${d},${this._x1=t+n*Math.cos(c)},${this._y1=e+n*Math.sin(c)}`)}rect(t,e,n,r){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+e}h${n=+n}v${+r}h${-n}Z`}toString(){return this._}}function l(t){let e=3;return t.digits=function(n){if(!arguments.length)return e;if(null==n)e=null;else{const t=Math.floor(n);if(!(t>=0))throw new RangeError(`invalid digits: ${n}`);e=t}return t},()=>new c(e)}c.prototype},9206:(t,e,n)=>{"use strict";function r(t){return t[0]}function o(t){return t[1]}n.d(e,{x:()=>r,y:()=>o})},1966:(t,e,n)=>{"use strict";n.d(e,{r:()=>In});var r=n(6540);const o=(t,e)=>{const{o:n,i:r,u:o}=t;let i,a=n;const s=(t,e)=>{const n=a,s=t,c=e||(r?!r(n,s):n!==s);return(c||o)&&(a=s,i=n),[a,c,i]};return[e?t=>s(e(a,i),t):s,t=>[a,!!t,i]]},i="undefined"!=typeof window&&"undefined"!=typeof HTMLElement&&!!window.document?window:{},a=Math.max,s=Math.min,c=Math.round,l=Math.abs,u=Math.sign,f=i.cancelAnimationFrame,h=i.requestAnimationFrame,p=i.setTimeout,d=i.clearTimeout,v=t=>void 0!==i[t]?i[t]:void 0,m=v("MutationObserver"),g=v("IntersectionObserver"),y=v("ResizeObserver"),b=v("ScrollTimeline"),w=t=>void 0===t,_=t=>null===t,x=t=>"number"==typeof t,O=t=>"string"==typeof t,M=t=>"boolean"==typeof t,A=t=>"function"==typeof t,S=t=>Array.isArray(t),$=t=>"object"==typeof t&&!S(t)&&!_(t),k=t=>{const e=!!t&&t.length,n=x(e)&&e>-1&&e%1==0;return!!(S(t)||!A(t)&&n)&&(!(e>0&&$(t))||e-1 in t)},E=t=>!!t&&t.constructor===Object,D=t=>t instanceof HTMLElement,R=t=>t instanceof Element;function T(t,e){if(k(t))for(let n=0;n<t.length&&!1!==e(t[n],n,t);n++);else t&&T(Object.keys(t),(n=>e(t[n],n,t)));return t}const C=(t,e)=>t.indexOf(e)>=0,z=(t,e)=>t.concat(e),j=(t,e,n)=>(n||O(e)||!k(e)?t.push(e):Array.prototype.push.apply(t,e),t),I=t=>Array.from(t||[]),P=t=>S(t)?t:!O(t)&&k(t)?I(t):[t],N=t=>!!t&&!t.length,F=t=>I(new Set(t)),L=(t,e,n)=>{T(t,(t=>!t||t.apply(void 0,e||[]))),!n&&(t.length=0)},H="paddingTop",W="paddingRight",q="paddingLeft",U="paddingBottom",B="marginLeft",V="marginRight",K="marginBottom",Y="overflowX",G="overflowY",X="width",Z="height",Q="visible",J="hidden",tt="scroll",et=(t,e,n,r)=>{if(t&&e){let o=!0;return T(n,(n=>{(r?r(t[n]):t[n])!==(r?r(e[n]):e[n])&&(o=!1)})),o}return!1},nt=(t,e)=>et(t,e,["w","h"]),rt=(t,e)=>et(t,e,["x","y"]),ot=(t,e)=>et(t,e,["t","r","b","l"]),it=()=>{},at=(t,...e)=>t.bind(0,...e),st=t=>{let e;const n=t?p:h,r=t?d:f;return[o=>{r(e),e=n((()=>o()),A(t)?t():t)},()=>r(e)]},ct=(t,e)=>{const{_:n,v:r,p:o,S:i}=e||{};let a,s,c,l,u=it;const v=function(e){u(),d(a),l=a=s=void 0,u=it,t.apply(this,e)},m=t=>i&&s?i(s,t):t,g=()=>{u!==it&&v(m(c)||c)},y=function(){const t=I(arguments),e=A(n)?n():n;if(x(e)&&e>=0){const n=A(r)?r():r,i=x(n)&&n>=0,y=e>0?p:h,b=e>0?d:f,w=m(t)||t,_=v.bind(0,w);let O;u(),o&&!l?(_(),l=!0,O=y((()=>l=void 0),e)):(O=y(_,e),i&&!a&&(a=p(g,n))),u=()=>b(O),s=c=w}else v(t)};return y.m=g,y},lt=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),ut=t=>t?Object.keys(t):[],ft=(t,e,n,r,o,i,a)=>{const s=[e,n,r,o,i,a];return"object"==typeof t&&!_(t)||A(t)||(t={}),T(s,(e=>{T(e,((n,r)=>{const o=e[r];if(t===o)return!0;const i=S(o);if(o&&E(o)){const e=t[r];let n=e;i&&!S(e)?n=[]:i||E(e)||(n={}),t[r]=ft(n,o)}else t[r]=i?o.slice():o}))})),t},ht=(t,e)=>T(ft({},t),((t,n,r)=>{void 0===t?delete r[n]:e&&t&&E(t)&&(r[n]=ht(t,e))})),pt=t=>!ut(t).length,dt=(t,e,n)=>a(t,s(e,n)),vt=t=>F((S(t)?t:(t||"").split(" ")).filter((t=>t))),mt=(t,e)=>t&&t.getAttribute(e),gt=(t,e)=>t&&t.hasAttribute(e),yt=(t,e,n)=>{T(vt(e),(e=>{t&&t.setAttribute(e,String(n||""))}))},bt=(t,e)=>{T(vt(e),(e=>t&&t.removeAttribute(e)))},wt=(t,e)=>{const n=vt(mt(t,e)),r=at(yt,t,e),o=(t,e)=>{const r=new Set(n);return T(vt(t),(t=>{r[e](t)})),I(r).join(" ")};return{O:t=>r(o(t,"delete")),$:t=>r(o(t,"add")),C:t=>{const e=vt(t);return e.reduce(((t,e)=>t&&n.includes(e)),e.length>0)}}},_t=(t,e,n)=>(wt(t,e).O(n),at(xt,t,e,n)),xt=(t,e,n)=>(wt(t,e).$(n),at(_t,t,e,n)),Ot=(t,e,n,r)=>(r?xt:_t)(t,e,n),Mt=(t,e,n)=>wt(t,e).C(n),At=t=>wt(t,"class"),St=(t,e)=>{At(t).O(e)},$t=(t,e)=>(At(t).$(e),at(St,t,e)),kt=(t,e)=>{const n=e?R(e)&&e:document;return n?I(n.querySelectorAll(t)):[]},Et=(t,e)=>R(t)&&t.matches(e),Dt=t=>Et(t,"body"),Rt=t=>t?I(t.childNodes):[],Tt=t=>t&&t.parentElement,Ct=(t,e)=>R(t)&&t.closest(e),zt=t=>(t||document).activeElement,jt=(t,e,n)=>{const r=Ct(t,e),o=t&&((t,e)=>{const n=e?R(e)&&e:document;return n&&n.querySelector(t)})(n,r),i=Ct(o,e)===r;return!(!r||!o)&&(r===t||o===t||i&&Ct(Ct(t,n),e)!==r)},It=t=>{T(P(t),(t=>{const e=Tt(t);t&&e&&e.removeChild(t)}))},Pt=(t,e)=>at(It,t&&e&&T(P(e),(e=>{e&&t.appendChild(e)}))),Nt=t=>{const e=document.createElement("div");return yt(e,"class",t),e},Ft=t=>{const e=Nt();return e.innerHTML=t.trim(),T(Rt(e),(t=>It(t)))},Lt=(t,e)=>t.getPropertyValue(e)||t[e]||"",Ht=t=>{const e=t||0;return isFinite(e)?e:0},Wt=t=>Ht(parseFloat(t||"")),qt=t=>Math.round(1e4*t)/1e4,Ut=t=>`${qt(Ht(t))}px`;function Bt(t,e){t&&e&&T(e,((e,n)=>{try{const r=t.style,o=_(e)||M(e)?"":x(e)?Ut(e):e;0===n.indexOf("--")?r.setProperty(n,o):r[n]=o}catch(t){}}))}function Vt(t,e,n){const r=O(e);let o=r?"":{};if(t){const a=i.getComputedStyle(t,n)||t.style;o=r?Lt(a,e):I(e).reduce(((t,e)=>(t[e]=Lt(a,e),t)),o)}return o}const Kt=(t,e,n)=>{const r=e?`${e}-`:"",o=n?`-${n}`:"",i=`${r}top${o}`,a=`${r}right${o}`,s=`${r}bottom${o}`,c=`${r}left${o}`,l=Vt(t,[i,a,s,c]);return{t:Wt(l[i]),r:Wt(l[a]),b:Wt(l[s]),l:Wt(l[c])}},Yt=(t,e)=>"translate"+($(t)?`(${t.x},${t.y})`:`${e?"X":"Y"}(${t})`),Gt={w:0,h:0},Xt=(t,e)=>e?{w:e[`${t}Width`],h:e[`${t}Height`]}:Gt,Zt=t=>Xt("inner",t||i),Qt=at(Xt,"offset"),Jt=at(Xt,"client"),te=at(Xt,"scroll"),ee=t=>{const e=parseFloat(Vt(t,X))||0,n=parseFloat(Vt(t,Z))||0;return{w:e-c(e),h:n-c(n)}},ne=t=>t.getBoundingClientRect(),re=t=>!(!t||!t[Z]&&!t[X]),oe=(t,e)=>{const n=re(t);return!re(e)&&n},ie=(t,e,n,r)=>{T(vt(e),(e=>{t&&t.removeEventListener(e,n,r)}))},ae=(t,e,n,r)=>{var o;const i=null==(o=r&&r.H)||o,a=r&&r.I||!1,s=r&&r.A||!1,c={passive:i,capture:a};return at(L,vt(e).map((e=>{const r=s?o=>{ie(t,e,r,a),n&&n(o)}:n;return t&&t.addEventListener(e,r,c),at(ie,t,e,r,a)})))},se=t=>t.stopPropagation(),ce=t=>t.preventDefault(),le=t=>se(t)||ce(t),ue=(t,e)=>{const{x:n,y:r}=x(e)?{x:e,y:e}:e||{};x(n)&&(t.scrollLeft=n),x(r)&&(t.scrollTop=r)},fe=t=>({x:t.scrollLeft,y:t.scrollTop}),he=(t,e)=>{const{D:n,M:r}=t,{w:o,h:i}=e,a=(t,e,n)=>{let r=u(t)*n,o=u(e)*n;if(r===o){const n=l(t),i=l(e);o=n>i?0:o,r=n<i?0:r}return r=r===o?0:r,[r+0,o+0]},[s,c]=a(n.x,r.x,o),[f,h]=a(n.y,r.y,i);return{D:{x:s,y:f},M:{x:c,y:h}}},pe=({D:t,M:e})=>{const n=(t,e)=>0===t&&t<=e;return{x:n(t.x,e.x),y:n(t.y,e.y)}},de=({D:t,M:e},n)=>{const r=(t,e,n)=>dt(0,1,(t-n)/(t-e)||0);return{x:r(t.x,e.x,n.x),y:r(t.y,e.y,n.y)}},ve=t=>{t&&t.focus&&t.focus({preventScroll:!0})},me=(t,e)=>{T(P(e),t)},ge=t=>{const e=new Map,n=(t,n)=>{if(t){const r=e.get(t);me((t=>{r&&r[t?"delete":"clear"](t)}),n)}else e.forEach((t=>{t.clear()})),e.clear()},r=(t,o)=>{if(O(t)){const r=e.get(t)||new Set;return e.set(t,r),me((t=>{A(t)&&r.add(t)}),o),at(n,t,o)}M(o)&&o&&n();const i=ut(t),a=[];return T(i,(e=>{const n=t[e];n&&j(a,r(e,n))})),at(L,a)};return r(t||{}),[r,n,(t,n)=>{T(I(e.get(t)),(t=>{n&&!N(n)?t.apply(0,n):t()}))}]},ye=t=>JSON.stringify(t,((t,e)=>{if(A(e))throw 0;return e})),be=(t,e)=>t?`${e}`.split(".").reduce(((t,e)=>t&&lt(t,e)?t[e]:void 0),t):void 0,we={paddingAbsolute:!1,showNativeOverlaidScrollbars:!1,update:{elementEvents:[["img","load"]],debounce:[0,33],attributes:null,ignoreMutation:null},overflow:{x:"scroll",y:"scroll"},scrollbars:{theme:"os-theme-dark",visibility:"auto",autoHide:"never",autoHideDelay:1300,autoHideSuspend:!1,dragScroll:!0,clickScroll:!1,pointers:["mouse","touch","pen"]}},_e=(t,e)=>{const n={};return T(z(ut(e),ut(t)),(r=>{const o=t[r],i=e[r];if($(o)&&$(i))ft(n[r]={},_e(o,i)),pt(n[r])&&delete n[r];else if(lt(e,r)&&i!==o){let t=!0;if(S(o)||S(i))try{ye(o)===ye(i)&&(t=!1)}catch(t){}t&&(n[r]=i)}})),n},xe=(t,e,n)=>r=>[be(t,r),n||void 0!==be(e,r)],Oe="data-overlayscrollbars",Me="os-environment",Ae=`${Me}-scrollbar-hidden`,Se=`${Oe}-initialize`,$e="noClipping",ke=`${Oe}-body`,Ee=Oe,De=`${Oe}-viewport`,Re=Y,Te=G,Ce="arrange",ze="measuring",je="scrollbarHidden",Ie=`${Oe}-padding`,Pe=`${Oe}-content`,Ne="os-size-observer",Fe=`${Ne}-appear`,Le=`${Ne}-listener`,He="os-scrollbar",We=`${He}-rtl`,qe=`${He}-horizontal`,Ue=`${He}-vertical`,Be=`${He}-track`,Ve=`${He}-handle`,Ke=`${He}-visible`,Ye=`${He}-cornerless`,Ge=`${He}-interaction`,Xe=`${He}-unusable`,Ze=`${He}-auto-hide`,Qe=`${Ze}-hidden`,Je=`${He}-wheel`,tn=`${Be}-interactive`,en=`${Ve}-interactive`;let nn;let rn;const on=()=>{const t=(t,e,n)=>{Pt(document.body,t),Pt(document.body,t);const r=Jt(t),o=Qt(t),i=ee(e);return n&&It(t),{x:o.h-r.h+i.h,y:o.w-r.w+i.w}},e=Ft(`<div class="${Me}"><div></div><style>${`.${Me}{scroll-behavior:auto!important;position:fixed;opacity:0;visibility:hidden;overflow:scroll;height:200px;width:200px;z-index:-1}.${Me} div{width:200%;height:200%;margin:10px 0}.${Ae}{scrollbar-width:none!important}.${Ae}::-webkit-scrollbar,.${Ae}::-webkit-scrollbar-corner{appearance:none!important;display:none!important;width:0!important;height:0!important}`}</style></div>`)[0],n=e.firstChild,r=e.lastChild,a=nn;a&&(r.nonce=a);const[s,,c]=ge(),[l,u]=o({o:t(e,n),i:rt},at(t,e,n,!0)),[f]=u(),h=(t=>{let e=!1;const n=$t(t,Ae);try{e="none"===Vt(t,"scrollbar-width")||"none"===Vt(t,"display","::-webkit-scrollbar")}catch(t){}return n(),e})(e),p={x:0===f.x,y:0===f.y},d={elements:{host:null,padding:!h,viewport:t=>h&&Dt(t)&&t,content:!1},scrollbars:{slot:!0},cancel:{nativeScrollbarsOverlaid:!1,body:null}},v=ft({},we),m=at(ft,{},v),g=at(ft,{},d),y={T:f,k:p,R:h,V:!!b,L:at(s,"r"),U:g,P:t=>ft(d,t)&&g(),N:m,q:t=>ft(v,t)&&m(),B:ft({},d),F:ft({},v)};if(bt(e,"style"),It(e),ae(i,"resize",(()=>{c("r",[])})),A(i.matchMedia)&&!h&&(!p.x||!p.y)){const t=e=>{const n=i.matchMedia(`(resolution: ${i.devicePixelRatio}dppx)`);ae(n,"change",(()=>{e(),t(e)}),{A:!0})};t((()=>{const[t,e]=l();ft(y.T,t),c("r",[e])}))}return y},an=()=>(rn||(rn=on()),rn),sn=(t,e)=>A(e)?e.apply(0,t):e,cn=(t,e,n,r)=>{const o=w(r)?n:r;return sn(t,o)||e.apply(0,t)},ln=(t,e,n,r)=>{const o=w(r)?n:r,i=sn(t,o);return!!i&&(D(i)?i:e.apply(0,t))},un=new WeakMap,fn=t=>un.get(t),hn=(t,e,n,r)=>{let o=!1;const{j:i,X:a,Y:s,W:c,J:l,G:u}=r||{},f=ct((()=>o&&n(!0)),{_:33,v:99}),[h,p]=((t,e,n)=>{let r=!1;const o=!!n&&new WeakMap,i=i=>{if(o&&n){const a=n.map((e=>{const[n,r]=e||[];return[r&&n?(i||kt)(n,t):[],r]}));T(a,(n=>T(n[0],(i=>{const a=n[1],s=o.get(i)||[];if(t.contains(i)&&a){const t=ae(i,a,(n=>{r?(t(),o.delete(i)):e(n)}));o.set(i,j(s,t))}else L(s),o.delete(i)}))))}};return i(),[()=>{r=!0},i]})(t,f,s),d=a||[],v=z(i||[],d),g=(o,i)=>{if(!N(i)){const a=l||it,s=u||it,f=[],h=[];let v=!1,m=!1;if(T(i,(n=>{const{attributeName:o,target:i,type:l,oldValue:u,addedNodes:p,removedNodes:g}=n,y="attributes"===l,b="childList"===l,w=t===i,_=y&&o,x=_&&mt(i,o||""),M=O(x)?x:null,A=_&&u!==M,S=C(d,o)&&A;if(e&&(b||!w)){const e=y&&A,l=e&&c&&Et(i,c),h=(l?!a(i,o,u,M):!y||e)&&!s(n,!!l,t,r);T(p,(t=>j(f,t))),T(g,(t=>j(f,t))),m=m||h}!e&&w&&A&&!a(i,o,u,M)&&(j(h,o),v=v||S)})),p((t=>F(f).reduce(((e,n)=>(j(e,kt(t,n)),Et(n,t)?j(e,n):e)),[]))),e)return!o&&m&&n(!1),[!1];if(!N(h)||v){const t=[F(h),v];return!o&&n.apply(0,t),t}}},y=new m(at(g,!1));return[()=>(y.observe(t,{attributes:!0,attributeOldValue:!0,attributeFilter:v,subtree:e,childList:e,characterData:e}),o=!0,()=>{o&&(h(),y.disconnect(),o=!1)}),()=>{if(o)return f.m(),g(!0,y.takeRecords())}]},pn={},dn={},vn=(t,e,n)=>ut(t).map((r=>{const{static:o,instance:i}=t[r],[a,s,c]=n||[],l=n?i:o;if(l){const t=n?l(a,s,e):l(e);return(c||dn)[r]=t}})),mn=t=>dn[t],gn="__osSizeObserverPlugin",yn=(t,e)=>{const{k:n}=e,[r,o]=t("showNativeOverlaidScrollbars");return[r&&n.x&&n.y,o]},bn=t=>0===t.indexOf(Q),wn=(t,e)=>{const n=(t,e,n,r)=>{const o=t===Q?J:t.replace(`${Q}-`,""),i=bn(t),a=bn(n);if(!e&&!r)return J;if(i&&a)return Q;if(i){return e&&r?o:e?Q:J}return e?o:a&&r?Q:J},r={x:n(e.x,t.x,e.y,t.y),y:n(e.y,t.y,e.x,t.x)};return{K:r,Z:{x:r.x===tt,y:r.y===tt}}},_n="__osScrollbarsHidingPlugin",xn="__osClickScrollPlugin",On=(t,e,n)=>{const{dt:r}=n||{},i=mn(gn),[a]=o({o:!1,u:!0});return()=>{const n=[],o=Ft(`<div class="${Ne}"><div class="${Le}"></div></div>`)[0],s=o.firstChild,c=t=>{let n=!1,r=!1;if(t instanceof ResizeObserverEntry){const[e,,o]=a(t.contentRect),i=re(e);r=oe(e,o),n=!r&&!i}else r=!0===t;n||e({ft:!0,dt:r})};if(y){const t=new y((t=>c(t.pop())));t.observe(s),j(n,(()=>{t.disconnect()}))}else{if(!i)return it;{const[t,e]=i(s,c,r);j(n,z([$t(o,Fe),ae(o,"animationstart",t)],e))}}return at(L,j(n,Pt(t,o)))}},Mn=(t,e)=>{let n;const r=Nt("os-trinsic-observer"),[i]=o({o:!1}),a=(t,n)=>{if(t){const r=i((t=>0===t.h||t.isIntersecting||t.intersectionRatio>0)(t)),[,o]=r;return o&&!n&&e(r)&&[r]}},s=(t,e)=>a(e.pop(),t);return[()=>{const e=[];if(g)n=new g(at(s,!1),{root:t}),n.observe(r),j(e,(()=>{n.disconnect()}));else{const t=()=>{const t=Qt(r);a(t)};j(e,On(r,t)()),t()}return at(L,j(e,Pt(t,r)))},()=>n&&s(!0,n.takeRecords())]},An=(t,e,n,r)=>{let i,a,s,c,l,u;const f=`[${Ee}]`,h=`[${De}]`,p=["id","class","style","open","wrap","cols","rows"],{vt:d,ht:v,ot:m,gt:g,bt:b,nt:w,wt:_,yt:O,St:M,Ot:$}=t,k=t=>"rtl"===Vt(t,"direction"),E={$t:!1,ct:k(d)},D=an(),R=mn(_n),[T]=o({i:nt,o:{w:0,h:0}},(()=>{const r=R&&R.tt(t,e,E,D,n).ut,o=!(_&&w)&&Mt(v,Ee,$e),i=!w&&O(Ce),a=i&&fe(g),s=a&&$(),c=M(ze,o),l=i&&r&&r()[0],u=te(m),f=ee(m);return l&&l(),ue(g,a),s&&s(),o&&c(),{w:u.w+f.w,h:u.h+f.h}})),C=ct(r,{_:()=>i,v:()=>a,S(t,e){const[n]=t,[r]=e;return[z(ut(n),ut(r)).reduce(((t,e)=>(t[e]=n[e]||r[e],t)),{})]}}),j=t=>{const e=k(d);ft(t,{Ct:u!==e}),ft(E,{ct:e}),u=e},I=(t,e)=>{const[n,o]=t,i={xt:o};return ft(E,{$t:n}),!e&&r(i),i},P=({ft:t,dt:e})=>{const n=!(t&&!e)&&D.R?C:r,o={ft:t||e,dt:e};j(o),n(o)},N=(t,e)=>{const[,n]=T(),o={Ht:n};j(o);return n&&!e&&(t?r:C)(o),o},F=(t,e,n)=>{const r={Et:e};return j(r),e&&!n&&C(r),r},[L,H]=b?Mn(v,I):[],W=!w&&On(v,P,{dt:!0}),[q,U]=hn(v,!1,F,{X:p,j:p}),B=w&&y&&new y((t=>{const e=t[t.length-1].contentRect;P({ft:!0,dt:oe(e,l)}),l=e})),V=ct((()=>{const[,t]=T();r({Ht:t})}),{_:222,p:!0});return[()=>{B&&B.observe(v);const t=W&&W(),e=L&&L(),n=q(),r=D.L((t=>{t?C({zt:t}):V()}));return()=>{B&&B.disconnect(),t&&t(),e&&e(),c&&c(),n(),r()}},({It:t,At:e,Dt:n})=>{const r={},[o]=t("update.ignoreMutation"),[l,u]=t("update.attributes"),[d,v]=t("update.elementEvents"),[g,y]=t("update.debounce"),_=e||n;if(v||u){s&&s(),c&&c();const[t,e]=hn(b||m,!0,N,{j:z(p,l||[]),Y:d,W:f,G:(t,e)=>{const{target:n,attributeName:r}=t;return!(e||!r||w)&&jt(n,f,h)||!!Ct(n,`.${He}`)||!!(t=>A(o)&&o(t))(t)}});c=t(),s=e}if(y)if(C.m(),S(g)){const t=g[0],e=g[1];i=x(t)&&t,a=x(e)&&e}else x(g)?(i=g,a=!1):(i=!1,a=!1);if(_){const t=U(),e=H&&H(),n=s&&s();t&&ft(r,F(t[0],t[1],_)),e&&ft(r,I(e[0],_)),n&&ft(r,N(n[0],_))}return j(r),r},E]},Sn=(t,e,n,r)=>{const o="--os-viewport-percent",i="--os-scroll-percent",a="--os-scroll-direction",{U:s}=an(),{scrollbars:c}=s(),{slot:l}=c,{vt:u,ht:f,ot:h,Mt:p,gt:d,wt:v,nt:m}=e,{scrollbars:g}=p?{}:t,{slot:y}=g||{},w=[],_=[],x=[],O=ln([u,f,h],(()=>m&&v?u:f),l,y),A=t=>{if(b){const e=new b({source:d,axis:t}),n=t=>{const n=t.Tt.animate({clear:["left"],[i]:[0,1]},{timeline:e});return()=>n.cancel()};return{kt:n}}},S={x:A("x"),y:A("y")},$=(t,e,n)=>{const r=n?$t:St;T(t,(t=>{r(t.Tt,e)}))},k=(t,e)=>{T(t,(t=>{const[n,r]=e(t);Bt(n,r)}))},E=(t,e,n)=>{const r=M(n),o=!r||!n;(!r||n)&&$(_,t,e),o&&$(x,t,e)},D=t=>{const e=t?"x":"y",n=Nt(`${He} ${t?qe:Ue}`),o=Nt(Be),i=Nt(Ve),a={Tt:n,Ut:o,Pt:i},s=S[e];return j(t?_:x,a),j(w,[Pt(n,o),Pt(o,i),at(It,n),s&&s.kt(a),r(a,E,t)]),a},R=at(D,!0),C=at(D,!1);return R(),C(),[{Nt:()=>{const t=(()=>{const{Rt:t,Vt:e}=n,r=(t,e)=>dt(0,1,t/(t+e)||0);return{x:r(e.x,t.x),y:r(e.y,t.y)}})(),e=t=>e=>[e.Tt,{[o]:qt(t)+""}];k(_,e(t.x)),k(x,e(t.y))},qt:()=>{if(!b){const{Lt:t}=n,e=de(t,fe(d)),r=t=>e=>[e.Tt,{[i]:qt(t)+""}];k(_,r(e.x)),k(x,r(e.y))}},Bt:()=>{const{Lt:t}=n,e=pe(t),r=t=>e=>[e.Tt,{[a]:t?"0":"1"}];k(_,r(e.x)),k(x,r(e.y))},Ft:()=>{if(m&&!v){const{Rt:t,Lt:e}=n,r=pe(e),o=de(e,fe(d)),i=e=>{const{Tt:n}=e,i=Tt(n)===h&&n,a=(t,e,n)=>{const r=e*t;return Ut(n?r:-r)};return[i,i&&{transform:Yt({x:a(o.x,t.x,r.x),y:a(o.y,t.y,r.y)})}]};k(_,i),k(x,i)}},jt:E,Xt:{Yt:_,Wt:R,Jt:at(k,_)},Gt:{Yt:x,Wt:C,Jt:at(k,x)}},()=>(Pt(O,_[0].Tt),Pt(O,x[0].Tt),at(L,w))]},$n=(t,e,n,r)=>(o,i,a)=>{const{ht:s,ot:u,nt:f,gt:h,Kt:d,Ot:v}=e,{Tt:m,Ut:g,Pt:y}=o,[b,w]=st(333),[_,x]=st(444),O=t=>{A(h.scrollBy)&&h.scrollBy({behavior:"smooth",left:t.x,top:t.y})};let M=!0;return at(L,[ae(y,"pointermove pointerleave",r),ae(m,"pointerenter",(()=>{i(Ge,!0)})),ae(m,"pointerleave pointercancel",(()=>{i(Ge,!1)})),!f&&ae(m,"mousedown",(()=>{const t=zt();(gt(t,De)||gt(t,Ee)||t===document.body)&&p(at(ve,u),25)})),ae(m,"wheel",(t=>{const{deltaX:e,deltaY:n,deltaMode:r}=t;M&&0===r&&Tt(m)===s&&O({x:e,y:n}),M=!1,i(Je,!0),b((()=>{M=!0,i(Je)})),ce(t)}),{H:!1,I:!0}),ae(m,"pointerdown",at(ae,d,"click",le,{A:!0,I:!0,H:!1}),{I:!0}),(()=>{const e="pointerup pointercancel lostpointercapture",r="client"+(a?"X":"Y"),o=a?X:Z,i=a?"left":"top",s=a?"w":"h",u=a?"x":"y",f=(t,e)=>r=>{const{Rt:o}=n,i=Qt(g)[s]-Qt(y)[s],a=e*r/i*o[u];ue(h,{[u]:t+a})},p=[];return ae(g,"pointerdown",(n=>{const a=Ct(n.target,`.${Ve}`)===y,m=a?y:g,b=t.scrollbars,w=b[a?"dragScroll":"clickScroll"],{button:M,isPrimary:A,pointerType:S}=n,{pointers:$}=b;if(0===M&&A&&w&&($||[]).includes(S)){L(p),x();const t=!a&&(n.shiftKey||"instant"===w),b=at(ne,y),M=at(ne,g),A=(t,e)=>(t||b())[i]-(e||M())[i],S=c(ne(h)[o])/Qt(h)[s]||1,$=f(fe(h)[u],1/S),k=n[r],E=b(),D=M(),R=E[o],T=A(E,D)+R/2,C=k-D[i],z=a?0:C-T,I=t=>{L(F),m.releasePointerCapture(t.pointerId)},P=a||t,N=v(),F=[ae(d,e,I),ae(d,"selectstart",(t=>ce(t)),{H:!1}),ae(g,e,I),P&&ae(g,"pointermove",(t=>$(z+(t[r]-k)))),P&&(()=>{const t=fe(h);N();const e=fe(h),n={x:e.x-t.x,y:e.y-t.y};(l(n.x)>3||l(n.y)>3)&&(v(),ue(h,t),O(n),_(N))})];if(m.setPointerCapture(n.pointerId),t)$(z);else if(!a){const t=mn(xn);if(t){const e=t($,z,R,(t=>{t?N():j(F,N)}));j(F,e),j(p,at(e,!0))}}}}))})(),w,x])},kn=t=>{const e=an(),{U:n,R:r}=e,{elements:o}=n(),{padding:a,viewport:s,content:c}=o,l=D(t),u=l?{}:t,{elements:f}=u,{padding:h,viewport:p,content:d}=f||{},v=l?t:u.target,m=Dt(v),g=v.ownerDocument,y=g.documentElement,b=()=>g.defaultView||i,w=at(cn,[v]),_=at(ln,[v]),x=at(Nt,""),O=at(w,x,s),M=at(_,x,c),A=O(p),S=A===v,$=S&&m,k=!S&&M(d),E=!S&&A===k,R=$?y:A,T=$?R:v,z=!S&&_(x,a,h),I=!E&&k,P=[I,R,z,T].map((t=>D(t)&&!Tt(t)&&t)),N=t=>t&&C(P,t),F=!N(R)&&(t=>{const e=Qt(t),n=te(t),r=Vt(t,Y),o=Vt(t,G);return n.w-e.w>0&&!bn(r)||n.h-e.h>0&&!bn(o)})(R)?R:v,H=$?y:R,W={vt:v,ht:T,ot:R,ln:z,bt:I,gt:H,Qt:$?g:R,an:m?y:F,Kt:g,wt:m,Mt:l,nt:S,un:b,yt:t=>Mt(R,De,t),St:(t,e)=>Ot(R,De,t,e),Ot:()=>Ot(H,De,"scrolling",!0)},{vt:q,ht:U,ln:B,ot:V,bt:K}=W,X=[()=>{bt(U,[Ee,Se]),bt(q,Se),m&&bt(y,[Se,Ee])}];let Z=Rt([K,V,B,U,q].find((t=>t&&!N(t))));const Q=$?q:K||V,J=at(L,X);return[W,()=>{const t=b(),e=zt(),n=t=>{Pt(Tt(t),Rt(t)),It(t)},o=t=>ae(t,"focusin focusout focus blur",le,{I:!0,H:!1}),i="tabindex",a=mt(V,i),s=o(e);return yt(U,Ee,S?"":"host"),yt(B,Ie,""),yt(V,De,""),yt(K,Pe,""),S||(yt(V,i,a||"-1"),m&&yt(y,ke,"")),Pt(Q,Z),Pt(U,B),Pt(B||U,!S&&V),Pt(V,K),j(X,[s,()=>{const t=zt(),e=N(V),r=e&&t===V?q:t,s=o(r);bt(B,Ie),bt(K,Pe),bt(V,De),m&&bt(y,ke),a?yt(V,i,a):bt(V,i),N(K)&&n(K),e&&n(V),N(B)&&n(B),ve(r),s()}]),r&&!S&&(xt(V,De,je),j(X,at(bt,V,De))),ve(!S&&m&&e===q&&t.top===t?V:e),s(),Z=0,J},J]},En=({bt:t})=>({Zt:e,_n:n,Dt:r})=>{const{xt:o}=e||{},{$t:i}=n;t&&(o||r)&&Bt(t,{[Z]:i&&"100%"})},Dn=({ht:t,ln:e,ot:n,nt:r},i)=>{const[a,s]=o({i:ot,o:Kt()},at(Kt,t,"padding",""));return({It:t,Zt:o,_n:c,Dt:l})=>{let[u,f]=s(l);const{R:h}=an(),{ft:p,Ht:d,Ct:v}=o||{},{ct:m}=c,[g,y]=t("paddingAbsolute");(p||f||(l||d))&&([u,f]=a(l));const b=!r&&(y||v||f);if(b){const t=!g||!e&&!h,r=u.r+u.l,o=u.t+u.b,a={[V]:t&&!m?-r:0,[K]:t?-o:0,[B]:t&&m?-r:0,top:t?-u.t:0,right:t?m?-u.r:"auto":0,left:t?m?"auto":-u.l:0,[X]:t&&`calc(100% + ${r}px)`},s={[H]:t?u.t:0,[W]:t?u.r:0,[U]:t?u.b:0,[q]:t?u.l:0};Bt(e||n,a),Bt(n,s),ft(i,{ln:u,dn:!t,rt:e?s:ft({},a,s)})}return{fn:b}}},Rn=(t,e)=>{const n=an(),{ht:r,ln:s,ot:c,nt:l,Qt:u,gt:f,wt:p,St:d,un:v}=t,{R:m}=n,g=p&&l,y=at(a,0),b={display:()=>!1,direction:t=>"ltr"!==t,flexDirection:t=>t.endsWith("-reverse"),writingMode:t=>"horizontal-tb"!==t},w=ut(b),_={i:nt,o:{w:0,h:0}},x={i:rt,o:{}},O=t=>{d(ze,!g&&t)},M=t=>{const e=w.some((e=>{const n=t[e];return n&&b[e](n)}));if(!e)return{D:{x:0,y:0},M:{x:1,y:1}};O(!0);const n=fe(f),r=d("noContent",!0),o=ae(u,tt,(t=>{const e=fe(f);t.isTrusted&&e.x===n.x&&e.y===n.y&&se(t)}),{I:!0,A:!0});ue(f,{x:0,y:0}),r();const i=fe(f),a=te(f);ue(f,{x:a.w,y:a.h});const s=fe(f);ue(f,{x:s.x-i.x<1&&-a.w,y:s.y-i.y<1&&-a.h});const c=fe(f);return ue(f,n),h((()=>o())),{D:i,M:c}},A=(t,e)=>{const n=i.devicePixelRatio%1!=0?1:0,r={w:y(t.w-e.w),h:y(t.h-e.h)};return{w:r.w>n?r.w:0,h:r.h>n?r.h:0}},[S,$]=o(_,at(ee,c)),[k,E]=o(_,at(te,c)),[D,R]=o(_),[T]=o(x),[C,z]=o(_),[j]=o(x),[I]=o({i:(t,e)=>et(t,e,w),o:{}},(()=>(t=>!!t&&(t=>!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length))(t))(c)?Vt(c,w):{})),[P,N]=o({i:(t,e)=>rt(t.D,e.D)&&rt(t.M,e.M),o:{D:{x:0,y:0},M:{x:0,y:0}}}),F=mn(_n),L=(t,e)=>`${e?Re:Te}${(t=>{const e=String(t||"");return e?e[0].toUpperCase()+e.slice(1):""})(t)}`,H=t=>{const e=t=>[Q,J,tt].map((e=>L(e,t))),n=e(!0).concat(e()).join(" ");d(n),d(ut(t).map((e=>L(t[e],"x"===e))).join(" "),!0)};return({It:o,Zt:i,_n:a,Dt:l},{fn:u})=>{const{ft:f,Ht:h,Ct:p,dt:b,zt:w}=i||{},_=F&&F.tt(t,e,a,n,o),{it:x,ut:L,_t:W}=_||{},[q,U]=yn(o,n),[B,V]=o("overflow"),K=bn(B.x),Y=bn(B.y);let G=$(l),X=E(l),Z=R(l),Q=z(l);U&&m&&d(je,!q);{Mt(r,Ee,$e)&&O(!0);const[t]=L?L():[],[e]=G=S(l),[n]=X=k(l),o=Jt(c),i=g&&Zt(v()),a={w:y(n.w+e.w),h:y(n.h+e.h)},s={w:y((i?i.w:o.w+y(o.w-n.w))+e.w),h:y((i?i.h:o.h+y(o.h-n.h))+e.h)};t&&t(),Q=C(s),Z=D(A(a,s),l)}const[J,tt]=Q,[et,nt]=Z,[rt,ot]=X,[it,at]=G,[st,ct]=T({x:et.w>0,y:et.h>0}),lt=K&&Y&&(st.x||st.y)||K&&st.x&&!st.y||Y&&st.y&&!st.x,ut=u||p||w||at||ot||tt||nt||V||U||!0,ht=wn(st,B),[pt,dt]=j(ht.K),[vt,mt]=I(l),gt=p||b||mt||ct||l,[yt,bt]=gt?P(M(vt),l):N();return ut&&(dt&&H(ht.K),W&&x&&Bt(c,W(ht,a,x(ht,rt,it)))),O(!1),Ot(r,Ee,$e,lt),Ot(s,Ie,$e,lt),ft(e,{K:pt,Vt:{x:J.w,y:J.h},Rt:{x:et.w,y:et.h},rn:st,Lt:he(yt,et)}),{en:dt,nn:tt,sn:nt,cn:bt||nt,vn:gt}}},Tn=t=>{const[e,n,r]=kn(t),o={ln:{t:0,r:0,b:0,l:0},dn:!1,rt:{[V]:0,[K]:0,[B]:0,[H]:0,[W]:0,[U]:0,[q]:0},Vt:{x:0,y:0},Rt:{x:0,y:0},K:{x:J,y:J},rn:{x:!1,y:!1},Lt:{D:{x:0,y:0},M:{x:0,y:0}}},{vt:i,gt:a,nt:s,Ot:c}=e,{R:l,k:u}=an(),f=!l&&(u.x||u.y),h=[En(e),Dn(e,o),Rn(e,o)];return[n,t=>{const e={},n=f&&fe(a),r=n&&c();return T(h,(n=>{ft(e,n(t,e)||{})})),ue(a,n),r&&r(),!s&&ue(i,0),e},o,e,r]},Cn=(t,e,n,r,o)=>{let i=!1;const a=xe(e,{}),[s,c,l,u,f]=Tn(t),[h,p,d]=An(u,l,a,(t=>{b({},t)})),[v,m,,g]=((t,e,n,r,o,i)=>{let a,s,c,l,u,f=it,h=0;const p=t=>"mouse"===t.pointerType,[d,v]=st(),[m,g]=st(100),[y,b]=st(100),[w,_]=st((()=>h)),[x,O]=Sn(t,o,r,$n(e,o,r,(t=>p(t)&&C()))),{ht:M,Qt:A,wt:S}=o,{jt:$,Nt:k,qt:E,Bt:D,Ft:R}=x,T=(t,e)=>{if(_(),t)$(Qe);else{const t=at($,Qe,!0);h>0&&!e?w(t):t()}},C=()=>{(c?a:l)||(T(!0),m((()=>{T(!1)})))},z=t=>{$(Ze,t,!0),$(Ze,t,!1)},I=t=>{p(t)&&(a=c,c&&T(!0))},P=[_,g,b,v,()=>f(),ae(M,"pointerover",I,{A:!0}),ae(M,"pointerenter",I),ae(M,"pointerleave",(t=>{p(t)&&(a=!1,c&&T(!1))})),ae(M,"pointermove",(t=>{p(t)&&s&&C()})),ae(A,"scroll",(t=>{d((()=>{E(),C()})),i(t),R()}))];return[()=>at(L,j(P,O())),({It:t,Dt:e,Zt:o,tn:i})=>{const{nn:a,sn:p,en:d,cn:v}=i||{},{Ct:m,dt:g}=o||{},{ct:b}=n,{k:w}=an(),{K:_,rn:x}=r,[O,M]=t("showNativeOverlaidScrollbars"),[C,j]=t("scrollbars.theme"),[I,P]=t("scrollbars.visibility"),[N,F]=t("scrollbars.autoHide"),[L,H]=t("scrollbars.autoHideSuspend"),[W]=t("scrollbars.autoHideDelay"),[q,U]=t("scrollbars.dragScroll"),[B,V]=t("scrollbars.clickScroll"),[K,Y]=t("overflow"),G=g&&!e,X=x.x||x.y,Z=a||p||v||m||e,J=d||P||Y,et=O&&w.x&&w.y,nt=(t,e,n)=>{const r=t.includes(tt)&&(I===Q||"auto"===I&&e===tt);return $(Ke,r,n),r};if(h=W,G&&(L&&X?(z(!1),f(),y((()=>{f=ae(A,"scroll",at(z,!0),{A:!0})}))):z(!0)),M&&$("os-theme-none",et),j&&($(u),$(C,!0),u=C),H&&!L&&z(!0),F&&(s="move"===N,c="leave"===N,l="never"===N,T(l,!0)),U&&$(en,q),V&&$(tn,!!B),J){const t=nt(K.x,_.x,!0),e=nt(K.y,_.y,!1);$(Ye,!(t&&e))}Z&&(E(),k(),R(),v&&D(),$(Xe,!x.x,!0),$(Xe,!x.y,!1),$(We,b&&!S))},{},x]})(t,e,d,l,u,o),y=t=>ut(t).some((e=>!!t[e])),b=(t,o)=>{if(n())return!1;const{pn:a,Dt:s,At:l,hn:u}=t,f=a||{},h=!!s||!i,v={It:xe(e,f,h),pn:f,Dt:h};if(u)return m(v),!1;const g=o||p(ft({},v,{At:l})),b=c(ft({},v,{_n:d,Zt:g}));m(ft({},v,{Zt:g,tn:b}));const w=y(g),_=y(b),x=w||_||!pt(f)||h;return i=!0,x&&r(t,{Zt:g,tn:b}),x};return[()=>{const{an:t,gt:e,Ot:n}=u,r=fe(t),o=[h(),s(),v()],i=n();return ue(e,r),i(),at(L,o)},b,()=>({gn:d,bn:l}),{wn:u,yn:g},f]},zn=(t,e,n)=>{const{N:r}=an(),o=D(t),i=o?t:t.target,a=fn(i);if(e&&!a){let a=!1;const s=[],c={},l=t=>{const e=ht(t,!0),n=mn("__osOptionsValidationPlugin");return n?n(e,!0):e},u=ft({},r(),l(e)),[f,h,p]=ge(),[d,v,m]=ge(n),g=(t,e)=>{m(t,e),p(t,e)},[y,b,x,O,M]=Cn(t,u,(()=>a),(({pn:t,Dt:e},{Zt:n,tn:r})=>{const{ft:o,Ct:i,xt:a,Ht:s,Et:c,dt:l}=n,{nn:u,sn:f,en:h,cn:p}=r;g("updated",[S,{updateHints:{sizeChanged:!!o,directionChanged:!!i,heightIntrinsicChanged:!!a,overflowEdgeChanged:!!u,overflowAmountChanged:!!f,overflowStyleChanged:!!h,scrollCoordinatesChanged:!!p,contentMutation:!!s,hostMutation:!!c,appear:!!l},changedOptions:t||{},force:!!e}])}),(t=>g("scroll",[S,t]))),A=t=>{(t=>{un.delete(t)})(i),L(s),a=!0,g("destroyed",[S,t]),h(),v()},S={options(t,e){if(t){const n=e?r():{},o=_e(u,ft(n,l(t)));pt(o)||(ft(u,o),b({pn:o}))}return ft({},u)},on:d,off:(t,e)=>{t&&e&&v(t,e)},state(){const{gn:t,bn:e}=x(),{ct:n}=t,{Vt:r,Rt:o,K:i,rn:s,ln:c,dn:l,Lt:u}=e;return ft({},{overflowEdge:r,overflowAmount:o,overflowStyle:i,hasOverflow:s,scrollCoordinates:{start:u.D,end:u.M},padding:c,paddingAbsolute:l,directionRTL:n,destroyed:a})},elements(){const{vt:t,ht:e,ln:n,ot:r,bt:o,gt:i,Qt:a}=O.wn,{Xt:s,Gt:c}=O.yn,l=t=>{const{Pt:e,Ut:n,Tt:r}=t;return{scrollbar:r,track:n,handle:e}},u=t=>{const{Yt:e,Wt:n}=t,r=l(e[0]);return ft({},r,{clone:()=>{const t=l(n());return b({hn:!0}),t}})};return ft({},{target:t,host:e,padding:n||r,viewport:r,content:o||r,scrollOffsetElement:i,scrollEventElement:a,scrollbarHorizontal:u(s),scrollbarVertical:u(c)})},update:t=>b({Dt:t,At:!0}),destroy:at(A,!1),plugin:t=>c[ut(t)[0]]};return j(s,[M]),((t,e)=>{un.set(t,e)})(i,S),vn(pn,zn,[S,f,c]),((t,e)=>{const{nativeScrollbarsOverlaid:n,body:r}=e||{},{k:o,R:i,U:a}=an(),{nativeScrollbarsOverlaid:s,body:c}=a().cancel,l=null!=n?n:s,u=w(r)?c:r,f=(o.x||o.y)&&l,h=t&&(_(u)?!i:u);return!!f||!!h})(O.wn.wt,!o&&t.cancel)?(A(!0),S):(j(s,y()),g("initialized",[S]),S.update(),S)}return a};zn.plugin=t=>{const e=S(t),n=e?t:[t],r=n.map((t=>vn(t,zn)[0]));return(t=>{T(t,(t=>T(t,((e,n)=>{pn[n]=t[n]}))))})(n),e?r:r[0]},zn.valid=t=>{const e=t&&t.elements,n=A(e)&&e();return E(n)&&!!fn(n.target)},zn.env=()=>{const{T:t,k:e,R:n,V:r,B:o,F:i,U:a,P:s,N:c,q:l}=an();return ft({},{scrollbarsSize:t,scrollbarsOverlaid:e,scrollbarsHiding:n,scrollTimeline:r,staticDefaultInitialization:o,staticDefaultOptions:i,getDefaultInitialization:a,setDefaultInitialization:s,getDefaultOptions:c,setDefaultOptions:l})},zn.nonce=t=>{nn=t};const jn=()=>{if(typeof window>"u"){const t=()=>{};return[t,t]}let t,e;const n=window,r="function"==typeof n.requestIdleCallback,o=n.requestAnimationFrame,i=n.cancelAnimationFrame,a=r?n.requestIdleCallback:o,s=r?n.cancelIdleCallback:i,c=()=>{s(t),i(e)};return[(n,i)=>{c(),t=a(r?()=>{c(),e=o(n)}:n,"object"==typeof i?i:{timeout:2233})},c]},In=(0,r.forwardRef)(((t,e)=>{const{element:n="div",options:o,events:i,defer:a,children:s,...c}=t,l=n,u=(0,r.useRef)(null),f=(0,r.useRef)(null),[h,p]=(t=>{const{options:e,events:n,defer:o}=t||{},[i,a]=(0,r.useMemo)(jn,[]),s=(0,r.useRef)(null),c=(0,r.useRef)(o),l=(0,r.useRef)(e),u=(0,r.useRef)(n);return(0,r.useEffect)((()=>{c.current=o}),[o]),(0,r.useEffect)((()=>{const{current:t}=s;l.current=e,zn.valid(t)&&t.options(e||{},!0)}),[e]),(0,r.useEffect)((()=>{const{current:t}=s;u.current=n,zn.valid(t)&&t.on(n||{},!0)}),[n]),(0,r.useEffect)((()=>()=>{var t;a(),null==(t=s.current)||t.destroy()}),[]),(0,r.useMemo)((()=>[t=>{const e=s.current;if(zn.valid(e))return;const n=c.current,r=l.current||{},o=u.current||{},a=()=>s.current=zn(t,r,o);n?i(a,n):a()},()=>s.current]),[])})({options:o,events:i,defer:a});return(0,r.useEffect)((()=>{const{current:t}=u,{current:e}=f;if(!t)return;return h("body"===n?{target:t,cancel:{body:null}}:{target:t,elements:{viewport:e,content:e}}),()=>{var t;return null==(t=p())?void 0:t.destroy()}}),[h,n]),(0,r.useImperativeHandle)(e,(()=>({osInstance:p,getElement:()=>u.current})),[]),r.createElement(l,{"data-overlayscrollbars-initialize":"",ref:u,...c},"body"===n?s:r.createElement("div",{"data-overlayscrollbars-contents":"",ref:f},s))}))}}]);
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[594],{5228:t=>{t.exports={messages:JSON.parse('{"actionbar.button.add.torrent":"Thêm Torrent","actionbar.button.remove.torrent":"Xóa Torrent","actionbar.button.start.torrent":"Bắt đầu tải","actionbar.button.stop.torrent":"Dừng tải","alert.settings.saved":"Lưu thành công.","alert.torrent.add":["Thêm thành công ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"alert.torrent.add.failed":["Không thể thêm ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"alert.torrent.move":["Đã thành công chuyển ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"alert.torrent.move.failed":["Không thể chuyển ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"alert.torrent.remove":["Đã xóa ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"alert.torrent.remove.failed":["Không thể xóa ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}],"."],"auth.add.user":"Thêm người dùng","auth.admin":"Admin","auth.create.account":"Tạo tài khoản","auth.create.an.account":"Tạo tài khoản"}')}},3342:(t,e,r)=>{const s=r(6540);t.exports={attributes:{},react:function(t){Object.keys(t).forEach((function(e){this[e]=t[e]}));return s.createElement("div",{className:"frontmatter-markdown"},s.createElement("h1",null,"Flood ",s.createElement(FloodVersion,null)),s.createElement("p",null,s.createElement("a",{href:"https://www.npmjs.com/flood"},s.createElement("img",{src:"https://img.shields.io/npm/v/flood?label=Latest%20Release",alt:"Latest release badge"}))," ",s.createElement(CommitBadge,null)),s.createElement("p",null,s.createElement("a",{href:"https://github.com/jesec/flood/actions"},s.createElement("img",{src:"https://github.com/jesec/flood/workflows/Build/badge.svg?branch=master&event=push",alt:"Github Actions build status badge"}))," ",s.createElement("a",{href:"https://crowdin.com/project/flood"},s.createElement("img",{src:"https://badges.crowdin.net/flood/localized.svg",alt:"Crowdin"}))," ",s.createElement("a",{href:"https://discord.gg/Z7yR5Uf"},s.createElement("img",{src:"https://img.shields.io/discord/418267176873623553.svg?style=flat-square",alt:"Discord server badge"}))),s.createElement("p",null,"Flood is a monitoring service for various torrent clients. It's a Node.js service that communicates with your favorite torrent client and serves a decent web UI for administration. This project is based on the ",s.createElement("a",{href:"https://github.com/Flood-UI/flood"},"original Flood project"),"."),s.createElement("h4",null,"Feedback"),s.createElement("p",null,"If you have a specific issue or bug, please file a ",s.createElement("a",{href:"https://github.com/jesec/flood/issues"},"GitHub issue"),". Please join the ",s.createElement("a",{href:"https://discord.gg/Z7yR5Uf"},"Flood Discord server")," to discuss feature requests and implementation details."),s.createElement("h4",null,"More Information"),s.createElement("p",null,"Check out the ",s.createElement("a",{href:"https://github.com/jesec/flood/wiki"},"Wiki")," for more information."))}}},1866:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/ae.4dd8f55e.png"},5666:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/am.c84ee0cf.png"},697:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/bg.d9346b96.png"},1310:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/bh.f06d5914.png"},6887:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/by.d247fe16.png"},7304:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/ca.25743e11.png"},5596:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/cu.e486c055.png"},8247:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/cv.a9585acf.png"},2115:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/dk.da382fe2.png"},1376:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/es.2a6eaee4.png"},9659:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/fi.331f70fd.png"},7904:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/fj.7724d800.png"},3936:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/gm.81cd9f75.png"},3173:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/lu.c9872bc1.png"},4986:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/ma.ce5f697b.png"},5681:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/mr.7cbca6d0.png"},4155:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/mx.39b78eb2.png"},8915:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/ni.7140131c.png"},6585:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/rw.e8aecba0.png"},4650:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/tj.d20c5570.png"},2508:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/tl.5edd8ea7.png"},8177:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/uz.25552673.png"},3799:(t,e,r)=>{"use strict";t.exports=r.p+"static/media/za.090a856f.png"}}]);
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[703],{9654:t=>{t.exports={messages:JSON.parse("{}")}},5244:t=>{t.exports={messages:JSON.parse("{}")}},4170:t=>{t.exports={messages:JSON.parse("{}")}},320:t=>{t.exports={messages:JSON.parse("{}")}},6182:(t,s,e)=>{"use strict";e.r(s),e.d(s,{default:()=>g});var i=e(2618),a=e(6488),p=e(4015),c=e(6942),r=e.n(c),d=e(9693),n=e(7550),o=e(942),u=e(6066);const m=(0,p.PA)((t=>{const{id:s}=t,{count:e,type:i}=n.A.alerts[s]||{};if(null==s||null==e||null==i)return null;const a=r()("alert",{"is-success":"success"===i,"is-error":"error"===i});let p=(0,u.Y)(o.Ol,{});return"error"===i&&(p=(0,u.Y)(o.qz,{})),(0,u.FD)("li",{className:a,children:[p,(0,u.Y)("span",{className:"alert__content",children:(0,u.Y)(d.x6,{id:s,values:{count:e,countElement:(0,u.Y)("span",{className:"alert__count",children:e})}})})]})})),g=(0,p.PA)((()=>{const{sortedAlerts:t}=n.A;return(0,u.Y)(i.A,{children:null!=t&&t.length>0?(0,u.Y)(a.A,{classNames:"alerts__list",timeout:{enter:250,exit:250},children:(0,u.Y)("ul",{className:"alerts__list",children:t.map((t=>(0,u.Y)(m,{id:t.id},t.id)))},"alerts-list")}):null})}))},2627:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ad.1b24595d.png"},8136:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ag.fd9409e4.png"},6490:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/au.155b51d8.png"},2514:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/bd.516278fc.png"},679:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/bi.4923e3a3.png"},9332:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/br.ec051f0c.png"},9277:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/bs.a74a126f.png"},1429:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/cd.a5bfda53.png"},2111:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/cn.e6a26073.png"},5483:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/cz.8ec5948b.png"},90:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/dz.672a69c0.png"},2337:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/gd.b4522267.png"},1533:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/gh.4759f92f.png"},8052:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/gy.a4f62b6c.png"},1530:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/hn.64ee6aad.png"},9392:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ht.42ca1596.png"},8299:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/id.2cb49f2d.png"},413:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ir.9a3de085.png"},2649:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/jo.eb66f1d1.png"},524:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/km.7bbed3e9.png"},1942:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/kw.af3521bc.png"},7945:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/li.61c564a4.png"},4243:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ls.901ddb71.png"},5822:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/lv.7bcacf0a.png"},5880:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/mc.4bd5d57a.png"},3006:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/me.1f1d1772.png"},6498:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/np.54fb4f2f.png"},7256:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/nz.738be05b.png"},4065:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/pe.c1fc1d96.png"},7044:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ph.02199ddc.png"},5664:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/pl.41521283.png"},525:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/py.926c65ed.png"},2734:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/qa.c6a3c20e.png"},4250:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/sc.3293efde.png"},9923:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/sr.5adc1c00.png"},7941:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/st.5ae44155.png"},3314:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/tr.adeace6d.png"},5175:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/tt.839bd7f1.png"},7914:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/tz.b2f0dc37.png"},5730:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ua.6b103313.png"},1383:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ve.fd4273c2.png"},5486:(t,s,e)=>{"use strict";t.exports=e.p+"static/media/ws.f3d9202f.png"}}]);
@@ -0,0 +1 @@
1
+ "use strict";(globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[309],{849:(t,p,a)=>{t.exports=a.p+"static/media/af.4ce660eb.png"},9323:(t,p,a)=>{t.exports=a.p+"static/media/al.a297aacf.png"},7568:(t,p,a)=>{t.exports=a.p+"static/media/ao.a7c9214e.png"},4901:(t,p,a)=>{t.exports=a.p+"static/media/ar.7e57ef92.png"},6770:(t,p,a)=>{t.exports=a.p+"static/media/bt.4217b804.png"},6828:(t,p,a)=>{t.exports=a.p+"static/media/bz.98ec59f6.png"},9950:(t,p,a)=>{t.exports=a.p+"static/media/cg.a47b626b.png"},8125:(t,p,a)=>{t.exports=a.p+"static/media/cl.de1d715e.png"},5758:(t,p,a)=>{t.exports=a.p+"static/media/cw.df13039d.png"},3504:(t,p,a)=>{t.exports=a.p+"static/media/cy.b31f43a9.png"},4223:(t,p,a)=>{t.exports=a.p+"static/media/et.8beb65c8.png"},127:(t,p,a)=>{t.exports=a.p+"static/media/fm.eeaf71e9.png"},6040:(t,p,a)=>{t.exports=a.p+"static/media/ge.91a7654d.png"},8476:(t,p,a)=>{t.exports=a.p+"static/media/gq.e8ad58be.png"},5313:(t,p,a)=>{t.exports=a.p+"static/media/in.2df03847.png"},7380:(t,p,a)=>{t.exports=a.p+"static/media/is.d88f4fc9.png"},6921:(t,p,a)=>{t.exports=a.p+"static/media/kp.8a4dc30a.png"},2914:(t,p,a)=>{t.exports=a.p+"static/media/ks.99f78645.png"},1025:(t,p,a)=>{t.exports=a.p+"static/media/la.78a598d7.png"},2042:(t,p,a)=>{t.exports=a.p+"static/media/lb.7a7c15a9.png"},899:(t,p,a)=>{t.exports=a.p+"static/media/lc.6083a4ff.png"},891:(t,p,a)=>{t.exports=a.p+"static/media/lk.6fa85802.png"},6666:(t,p,a)=>{t.exports=a.p+"static/media/lr.8063f7db.png"},5495:(t,p,a)=>{t.exports=a.p+"static/media/md.fb4b5bdf.png"},752:(t,p,a)=>{t.exports=a.p+"static/media/mk.8420e604.png"},8790:(t,p,a)=>{t.exports=a.p+"static/media/mm.8e4ac30a.png"},343:(t,p,a)=>{t.exports=a.p+"static/media/mt.28a4b863.png"},2255:(t,p,a)=>{t.exports=a.p+"static/media/ne.d774701f.png"},5285:(t,p,a)=>{t.exports=a.p+"static/media/no.c19eb00d.png"},7887:(t,p,a)=>{t.exports=a.p+"static/media/pk.094f9517.png"},5827:(t,p,a)=>{t.exports=a.p+"static/media/sb.4ad27b27.png"},6546:(t,p,a)=>{t.exports=a.p+"static/media/sk.4e5b8a39.png"},5604:(t,p,a)=>{t.exports=a.p+"static/media/sm.2cba3dac.png"},7478:(t,p,a)=>{t.exports=a.p+"static/media/tv.628cae3e.png"}}]);
@@ -0,0 +1 @@
1
+ "use strict";(globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[535],{2675:(t,p,a)=>{t.exports=a.p+"static/media/at.5aa9728a.png"},6639:(t,p,a)=>{t.exports=a.p+"static/media/ba.5ce8f273.png"},7732:(t,p,a)=>{t.exports=a.p+"static/media/bb.f369fc62.png"},3643:(t,p,a)=>{t.exports=a.p+"static/media/be.08ec4a8d.png"},44:(t,p,a)=>{t.exports=a.p+"static/media/bj.019fa79b.png"},3777:(t,p,a)=>{t.exports=a.p+"static/media/bo.8fb15fc6.png"},7481:(t,p,a)=>{t.exports=a.p+"static/media/bw.21fe1567.png"},2985:(t,p,a)=>{t.exports=a.p+"static/media/ch.445f47a1.png"},6736:(t,p,a)=>{t.exports=a.p+"static/media/ci.a6009c5b.png"},566:(t,p,a)=>{t.exports=a.p+"static/media/co.e9244faa.png"},1843:(t,p,a)=>{t.exports=a.p+"static/media/cr.c895e035.png"},3501:(t,p,a)=>{t.exports=a.p+"static/media/de.d12f391a.png"},8999:(t,p,a)=>{t.exports=a.p+"static/media/do.c6bd7637.png"},5238:(t,p,a)=>{t.exports=a.p+"static/media/ee.2396205f.png"},6916:(t,p,a)=>{t.exports=a.p+"static/media/eg.ccbf3f45.png"},8281:(t,p,a)=>{t.exports=a.p+"static/media/er.21afb638.png"},2299:(t,p,a)=>{t.exports=a.p+"static/media/fr.5d5ab008.png"},9084:(t,p,a)=>{t.exports=a.p+"static/media/ga.77ed474c.png"},8971:(t,p,a)=>{t.exports=a.p+"static/media/gn.9f3d376e.png"},6583:(t,p,a)=>{t.exports=a.p+"static/media/gr.26f3ac0b.png"},5073:(t,p,a)=>{t.exports=a.p+"static/media/gt.9d81c52e.png"},9252:(t,p,a)=>{t.exports=a.p+"static/media/gw.dc906982.png"},7415:(t,p,a)=>{t.exports=a.p+"static/media/hk.56555c3f.png"},3622:(t,p,a)=>{t.exports=a.p+"static/media/hr.93ebecd3.png"},3593:(t,p,a)=>{t.exports=a.p+"static/media/hu.bb30f05d.png"},9298:(t,p,a)=>{t.exports=a.p+"static/media/ie.b4dd1f19.png"},6825:(t,p,a)=>{t.exports=a.p+"static/media/iq.a9b670ab.png"},6024:(t,p,a)=>{t.exports=a.p+"static/media/it.b73713e3.png"},9732:(t,p,a)=>{t.exports=a.p+"static/media/ke.ab2e43b8.png"},1592:(t,p,a)=>{t.exports=a.p+"static/media/ki.5fba09fd.png"},219:(t,p,a)=>{t.exports=a.p+"static/media/kr.5273be1d.png"},9875:(t,p,a)=>{t.exports=a.p+"static/media/kz.ea47ef79.png"},4076:(t,p,a)=>{t.exports=a.p+"static/media/lt.9209ace3.png"},4729:(t,p,a)=>{t.exports=a.p+"static/media/ly.2830aa63.png"},2844:(t,p,a)=>{t.exports=a.p+"static/media/mg.89101bd2.png"},5727:(t,p,a)=>{t.exports=a.p+"static/media/ml.4db47c66.png"},2765:(t,p,a)=>{t.exports=a.p+"static/media/mn.dc1daa04.png"},7198:(t,p,a)=>{t.exports=a.p+"static/media/mu.d93db6c7.png"},2764:(t,p,a)=>{t.exports=a.p+"static/media/mw.960cd4fb.png"},8635:(t,p,a)=>{t.exports=a.p+"static/media/na.472666a9.png"},1197:(t,p,a)=>{t.exports=a.p+"static/media/ng.7b06a49f.png"},9534:(t,p,a)=>{t.exports=a.p+"static/media/nl.4c04aa96.png"},9672:(t,p,a)=>{t.exports=a.p+"static/media/om.b25e0a17.png"},2339:(t,p,a)=>{t.exports=a.p+"static/media/pg.380115db.png"},9649:(t,p,a)=>{t.exports=a.p+"static/media/ro.a36876c9.png"},5373:(t,p,a)=>{t.exports=a.p+"static/media/rs.c6629de8.png"},9883:(t,p,a)=>{t.exports=a.p+"static/media/ru.a9b948c1.png"},2197:(t,p,a)=>{t.exports=a.p+"static/media/sd.19c94faa.png"},5660:(t,p,a)=>{t.exports=a.p+"static/media/se.195b3f93.png"},6446:(t,p,a)=>{t.exports=a.p+"static/media/sg.19d81907.png"},512:(t,p,a)=>{t.exports=a.p+"static/media/si.367c5443.png"},8109:(t,p,a)=>{t.exports=a.p+"static/media/sl.4b174b1c.png"},3159:(t,p,a)=>{t.exports=a.p+"static/media/sv.43aa6cdf.png"},4539:(t,p,a)=>{t.exports=a.p+"static/media/sz.ff204912.png"},8532:(t,p,a)=>{t.exports=a.p+"static/media/td.c7aa2a4e.png"},5391:(t,p,a)=>{t.exports=a.p+"static/media/tg.857c3bec.png"},5544:(t,p,a)=>{t.exports=a.p+"static/media/th.683600c7.png"},8421:(t,p,a)=>{t.exports=a.p+"static/media/tm.15960215.png"},2670:(t,p,a)=>{t.exports=a.p+"static/media/tn.40df718e.png"},9972:(t,p,a)=>{t.exports=a.p+"static/media/ug.c84042fc.png"},2832:(t,p,a)=>{t.exports=a.p+"static/media/us.8523c31d.png"},1491:(t,p,a)=>{t.exports=a.p+"static/media/va.a29e1b53.png"},4081:(t,p,a)=>{t.exports=a.p+"static/media/vc.7480bd37.png"},3828:(t,p,a)=>{t.exports=a.p+"static/media/vn.7d2eff1b.png"},2794:(t,p,a)=>{t.exports=a.p+"static/media/vu.48b64cf3.png"},8754:(t,p,a)=>{t.exports=a.p+"static/media/ye.311a0e50.png"},5211:(t,p,a)=>{t.exports=a.p+"static/media/zm.8371e197.png"}}]);
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[232],{9621:e=>{e.exports={messages:JSON.parse('{"actionbar.button.add.torrent":"إضافة تورنت","actionbar.button.remove.torrent":"إزالة التورنت","actionbar.button.start.torrent":"ابدأ التورينت","actionbar.button.stop.torrent":"إيقاف التورنت","alert.settings.saved":"تم حفظ الإعدادات بنجاح.","alert.torrent.add":["تمت إضافة ",["countElement"]," ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"alert.torrent.add.failed":["فشل في إضافة ",["countElement"]," ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"alert.torrent.move":["تم نقل ",["countElement"]," بنجاح ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"alert.torrent.move.failed":["فشل نقل ",["countElement"]," ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"alert.torrent.remove":["تم بنجاح إزالة ",["countElement"]," ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"alert.torrent.remove.failed":["فشل في إزالة ",["countElement"]," ",["count","plural",{"1":"تورنت","other":"تورنت"}]],"auth.add.user":"إضافة مستخدم","auth.admin":"المشرف","auth.create.account":"إنشاء حساب","auth.create.an.account":"إنشاء حساب","auth.create.an.account.intro":"مرحبا بكم في الفيضان!","auth.current.user":"المستخدم الحالي","auth.error.password.empty":"كلمة المرور لا يمكن أن تكون فارغة.","auth.error.username.empty":"اسم المستخدم لا يمكن أن يكون فارغاً.","auth.input.clear":"مسح","auth.log.in":"تسجيل الدخول","auth.login":"تسجيل الدخول","auth.login.intro":"تسجيل الدخول إلى حسابك.","auth.message.not.admin":"المستخدم ليس مشرف","auth.password":"كلمة المرور","auth.user.accounts":"حسابات المستخدم","auth.username":"اسم المستخدم","button.add":"إضافة","button.cancel":"إلغاء","button.close":"إغلاق","button.download":"تنزيل","button.new":"جديد","button.no":"لا","button.ok":"موافق","button.retry":"اعد المحاولة","button.save":"حفظ الإعدادات","button.save.feed":"حفظ","button.yes":"نعم","connection-interruption.action.selection.config":"تحديث إعدادات اتصال العميل","connection-interruption.action.selection.retry":"أعد المحاولة باستخدام إعدادات اتصال العميل الحالية","connection-interruption.heading":"لا يمكن الاتصال بالعميل","connection-interruption.verification-error":"تعذر التحقق من الاتصال.","connection.settings.client.select":"العميل","connection.settings.error.empty":"لا يمكن أن تكون إعدادات الاتصال فارغة.","connection.settings.deluge.host":"مضيف","connection.settings.deluge.password":"كلمة المرور","connection.settings.deluge.password.input.placeholder":"كلمة المرور","connection.settings.deluge.port":"منفذ","connection.settings.deluge.username":"اسم المستخدم","connection.settings.qbittorrent.password":"كلمة المرور","connection.settings.qbittorrent.password.input.placeholder":"كلمة المرور","connection.settings.qbittorrent.url":"الرابط","connection.settings.qbittorrent.username":"اسم المستخدم","connection.settings.qbittorrent.username.input.placeholder":"اسم المستخدم","connection.settings.rtorrent":"تورنت","connection.settings.rtorrent.host":"المضيف","connection.settings.rtorrent.host.input.placeholder":"اسم المضيف أو IP","connection.settings.rtorrent.port":"المنفذ","connection.settings.rtorrent.port.input.placeholder":"المنفذ","connection.settings.rtorrent.socket":"المسار","connection.settings.rtorrent.type":"نوع الاتصال","connection.settings.transmission.password":"كلمة المرور","connection.settings.transmission.password.input.placeholder":"كلمة المرور","connection.settings.transmission.url":"الرابط","connection.settings.transmission.username":"اسم المستخدم","connection.settings.transmission.username.input.placeholder":"اسم المستخدم","dependency.loading.notifications":"الإشعارات","dependency.loading.torrent.list":"قائمة التورينت","dependency.loading.torrent.taxonomy":"تصنيف تورنت","dependency.loading.transfer.history":"سجل نقل البيانات","dependency.loading.transfer.rate.details":"تفاصيل معدل نقل البيانات","feeds.applicable.feed":"تغذية قابلة للتطبيق","feeds.apply.tags":"تطبيق العلامات","feeds.browse.feeds":"تصفح الخلاصات","feeds.exclude":"استبعاد","feeds.exclude.pattern":"استبعاد النمط","feeds.existing.feeds":"التحديثات الموجودة","feeds.existing.rules":"القواعد الحالية","feeds.interval":"الفاصل","feeds.label":"تسمية","feeds.match":"المباراة","feeds.match.count":[["count","plural",{"1":["#"," تطابق"],"other":["#"," يتطابق"]}]],"feeds.match.pattern":"نمط المطابقة","feeds.no.feeds.available":"لا توجد تغذية متاحة.","feeds.no.feeds.defined":"لم يتم تعريف أي تغذية.","feeds.no.items.matching":"لا توجد عناصر مطابقة لمصطلح البحث.","feeds.no.rules.defined":"لا توجد قواعد معرفة.","feeds.regEx":"ريريكس","feeds.search":"مصطلح البحث","feeds.search.term":"مصطلح البحث","feeds.select.feed":"حدد موجز الويب","feeds.select.interval":"الفاصل","feeds.start.on.load":"البدء عند التحميل","feeds.tabs.download.rules":"قواعد التحميل","feeds.tabs.feeds":"التحديثات","feeds.tabs.heading":"تغذية تورنت","feeds.tags":"الوسوم","feeds.test.match":"اختبار نمط المطابقة","feeds.time.day":"أيام","feeds.time.hr":"الساعات","feeds.time.min":"دقائق","feeds.torrent.destination":"وجهة تورنت","feeds.url":"الرابط","feeds.validation.interval.not.positive":"الفاصل الزمني يجب أن يكون عددا صحيحا إيجابيا.","feeds.validation.invalid.regular.expression":"تعبير عادي غير صالح.","feeds.validation.must.select.feed":"يجب عليك تحديد التغذية.","feeds.validation.must.specify.destination":"يجب عليك تحديد الوجهة.","feeds.validation.must.specify.label":"يجب عليك تحديد التسمية.","feeds.validation.must.specify.valid.feed.url":"يجب عليك تحديد رابط تغذية صالح.","filesystem.empty.directory":"مجلد فارغ.","filesystem.error.eacces":"الفيضان ليس لديه الصلاحية لقراءة هذا الدليل.","filesystem.error.enoent":"هذا المسار غير موجود. سيتم إنشاؤه.","filesystem.error.no.input":"الرجاء إدخال المسار.","filesystem.error.unknown":"حدث خطأ غير معروف. الرجاء المحاولة مرة أخرى.","filesystem.fetching":"جلب بنية الدليل...","filter.all":"الكل","filter.status.active":"نشط","filter.status.checking":"التحقق","filter.status.completed":"مكتمل","filter.status.downloading":"تنزيل","filter.status.error":"خطأ","filter.status.inactive":"غير نشط","filter.status.seeding":"البذور","filter.status.stopped":"توقفت","filter.status.title":"تصفية حسب الحالة","filter.tag.title":"تصفية حسب العلامة","filter.tracker.title":"تصفية حسب التتبع","filter.untagged":"غير موسومة","general.ago":"مضت","general.clipboard.copied":"منسوخ","general.clipboard.copy":"نسخ","general.error.unknown":"حدث خطأ غير معروف","general.of":"من","general.to":"إلى","locale.language.auto":"تلقائي","mediainfo.execError":"حدث خطأ أثناء تشغيل mediainfo على الخادم. تحقق من أن mediainfo مثبت ومتاح في PATH للفيضان.","mediainfo.fetching":"إحضار ...","mediainfo.heading":"ناتج ميداينفو","notification.clear.all":"مسح الكل","notification.feed.torrent.added.heading":"قائمة انتظار عنصر التغذية","notification.showing":"عرض","notification.torrent.errored.heading":"تم الإبلاغ عن خطأ","notification.torrent.finished.heading":"انتهى التحميل","priority.dont.download":"عدم التحميل","priority.high":"مرتفع","priority.low":"منخفض","priority.normal":"عادي","settings.bandwidth.slots.download.global.label":"تحميل الفتحات العالمية","settings.bandwidth.slots.download.label":"تنزيل الفتحات لكل تورينت","settings.bandwidth.slots.heading":"توفر الخانة","settings.bandwidth.slots.upload.global.label":"تحميل خانات عامة","settings.bandwidth.slots.upload.label":"تحميل الفتحات لكل تورينت","settings.bandwidth.transferrate.dropdown.preset.download.label":"المنسدلة مسبقاً: تحميل","settings.bandwidth.transferrate.dropdown.preset.upload.label":"القائمة المنسدلة مسبقاً: تحميل","settings.bandwidth.transferrate.global.throttle.download":"خنق معدل التحميل العالمي","settings.bandwidth.transferrate.global.throttle.upload":"خنق معدل التحميل العالمي","settings.bandwidth.transferrate.heading":"خانات معدل التحويل","settings.connectivity.dht.label":"تمكين DHT","settings.connectivity.dht.port.label":"منفذ DHT","settings.connectivity.dpd.heading":"اكتشاف الند اللامركزي","settings.connectivity.incoming.heading":"اتصالات واردة","settings.connectivity.ip.hostname.label":"اسم IP/المضيف المبلغ عنه","settings.connectivity.max.http.connections":"الحد الأقصى لاتصالات HTTP","settings.connectivity.peer.exchange.label":"تمكين تبادل الأقران","settings.connectivity.peers.desired.label":"الند المنشود","settings.connectivity.peers.heading":"أقران","settings.connectivity.peers.max.label":"الحد الأقصى للنظراء","settings.connectivity.peers.min.label":"الحد الأدنى للنظراء","settings.connectivity.peers.seeding.max.label":"الحد الأقصى لبذور النظراء","settings.connectivity.peers.seeding.min.label":"الحد الأدنى لبذور الند","settings.connectivity.port.open.label":"فتح المنفذ","settings.connectivity.port.randomize.label":"تصوير المنفذ عشوائي","settings.connectivity.port.range.label":"نطاق المنفذ","settings.diskusage.mount.points":"نقاط استخدام القرص","settings.diskusage.show":"إظهار","settings.resources.disk.check.hash.label":"التحقق من التجزئة عند الاكتمال","settings.resources.disk.download.location.label":"دليل التحميل الافتراضي","settings.resources.disk.heading":"قرص","settings.resources.max.open.files":"الحد الأقصى للملفات المفتوحة","settings.resources.memory.heading":"الذاكرة","settings.resources.memory.max.label":"الحد الأقصى لاستخدام الذاكرة","settings.tabs.about":"حول","settings.tabs.authentication":"المصادقة","settings.tabs.bandwidth":"عرض التردد","settings.tabs.connectivity":"الاتصال","settings.tabs.diskusage":"استخدام القرص","settings.tabs.heading":"الإعدادات","settings.tabs.resources":"الموارد","settings.tabs.userinterface":"واجهة المستخدم","settings.ui.displayed.context.menu.items":"عناصر قائمة السياق","settings.ui.displayed.details":"أعمدة تفاصيل تورنت","settings.ui.language":"اللغة","settings.ui.locale":"محلي","settings.ui.torrent.context.menu.items.show":"إظهار","settings.ui.torrent.details.enabled":"تمكين","settings.ui.torrent.details.tags.placement":"ومن وجهة النظر الموسعة، فإن العلامات تعمل على أفضل وجه في نهاية القائمة.","settings.ui.torrent.list":"عرض قائمة التورينت","settings.ui.torrent.size":"حجم التورنت","settings.ui.torrent.size.condensed":"عرض مكثف","settings.ui.torrent.size.expanded":"عرض موسع","sidebar.button.feeds":"التحديثات","sidebar.button.log.out":"تسجيل الخروج","sidebar.button.settings":"الإعدادات","sidebar.button.speedlimits":"حدود السرعة","sidebar.search.placeholder":"البحث عن التورنت","sidebar.speedlimits.download":"تحميل","sidebar.speedlimits.upload":"تحميل","sidebar.transferdata.downloaded":"تم التحميل","sidebar.transferdata.uploaded":"تم الرفع","speed.unlimited":"غير محدود","status.diskusage.free":"مجاني","status.diskusage.title":"استخدام القرص","status.diskusage.total":"المجموع","status.diskusage.used":"مستخدم","torrent.list.peers.of":"من","torrents.add.button.add":"إضافة تورنت","torrents.add.cookies.input.placeholder":"قيمة cookie-name=cookie-value","torrents.add.cookies.label":"الكعكات","torrents.add.destination.label":"الوجهة","torrents.add.destination.placeholder":"الوجهة","torrents.add.heading":"إضافة تورينت","torrents.add.start.label":"ابدأ التورينت","torrents.add.tab.create.title":"إنشاء","torrents.add.tab.file.browse":"أو انقر لتصفح","torrents.add.tab.file.drop":"إسقاط بعض الملفات هنا،","torrents.add.tab.file.title":"حسب الملف","torrents.add.tab.url.input.placeholder":"رابط تورينت أو رابط الـ Magnet","torrents.add.tab.url.title":"حسب عنوان URL","torrents.add.tags":"الوسوم","torrents.add.torrents.label":"تورينتس","torrents.create.base.name.input.placeholder":"اسم ملف أساسي أو دليل تورنت اختياري","torrents.create.base.name.label":"اسم القاعدة","torrents.create.comment.input.placeholder":"التعليق الاختياري في ملف تورنت","torrents.create.comment.label":"تعليق","torrents.create.info.source.input.placeholder":"إدخال المصدر الاختياري في Infohash","torrents.create.info.source.label":"مصدر المعلومات","torrents.create.is.private.label":"خاص","torrents.create.source.path.label":"المصدر","torrents.create.tags.input.placeholder":"العلامات في الفيضان. غير مضافة إلى التورنت التي تم إنشاؤها.","torrents.create.tracker.input.placeholder":"رابط التتبع","torrents.create.trackers.label":"المتتبعون","torrents.destination.base_path":"استخدام كمسار أساسي","torrents.destination.completed":"مكتمل","torrents.details.actions.pause":"إيقاف","torrents.details.actions.start":"ابدأ","torrents.details.actions.stop":"توقف","torrents.details.details":"التفاصيل","torrents.details.files":"الملفات","torrents.details.files.download.file":[["count","plural",{"1":"تحميل الملف","other":"تحميل الملفات"}]],"torrents.details.files.loading":"تحميل تفاصيل الملف...","torrents.details.general.comment":"تعليق","torrents.details.general.connected":[["connected"]," متصل بـ ",["total"]],"torrents.details.general.date.active.now":"الآن","torrents.details.general.date.added":"أضيف","torrents.details.general.date.created":"تم الإنشاء","torrents.details.general.date.finished":"منتهى","torrents.details.general.downloaded":"تم التحميل","torrents.details.general.free.disk.space":"مساحة القرص الحرة","torrents.details.general.hash":"التجزئة","torrents.details.general.heading.general":"عام","torrents.details.general.heading.torrent":"تورنت","torrents.details.general.heading.tracker":"المتتبع","torrents.details.general.heading.transfer":"نقل","torrents.details.general.location":"الموقع","torrents.details.general.none":"لا","torrents.details.general.peers":"أقران","torrents.details.general.scheduler":"جدولة","torrents.details.general.scheduler.ignored":"تجاهل","torrents.details.general.scheduler.obeyed":"عقيب","torrents.details.general.seeds":"بذور","torrents.details.general.size":"الحجم","torrents.details.general.tags":"الوسوم","torrents.details.general.tracker.message":"رسالة تتبع","torrents.details.general.type":"نوع","torrents.details.general.type.private":"خاص","torrents.details.general.type.public":"عامة","torrents.details.peers":"أقران","torrents.details.peers.no.data":"لا توجد بيانات أقران لهذا التورنت.","torrents.details.selected.files":[["count","plural",{"1":[["countElement"]," ملف محدد"],"other":[["countElement"]," ملفات محددة"]}]],"torrents.details.selected.files.set.priority":"تعيين الأولوية","torrents.details.trackers":"المتتبعون","torrents.details.trackers.no.data":"لا توجد بيانات تتبع لهذا التورنت.","torrents.details.trackers.type":"نوع","torrents.list.cannot.connect":"لا يمكن الاتصال بالعميل.","torrents.list.clear.filters":"مسح الفلاتر","torrents.list.context.check.hash":"تحقق من التجزئة","torrents.list.context.details":"تفاصيل التورنت","torrents.list.context.move":"تعيين موقع التورنت","torrents.list.context.pause":"إيقاف","torrents.list.context.priority":"الأولوية","torrents.list.context.remove":"إزالة","torrents.list.context.set.tags":"تعيين العلامات","torrents.list.context.set.trackers":"تعيين التتبع","torrents.list.context.start":"ابدأ","torrents.list.context.stop":"توقف","torrents.list.drop":"إسقاط الملفات هنا لإضافتها.","torrents.list.no.torrents":"لا يوجد سلالات لعرضها.","torrents.move.button.set.location":"تعيين الموقع","torrents.move.button.state.setting":"إعداد...","torrents.move.check_hash.label":"تحقق من التجزئة","torrents.move.data.label":"نقل البيانات","torrents.move.heading":"تعيين موقع التورنت","torrents.properties.comment":"تعليق","torrents.properties.date.added":"أضيف","torrents.properties.date.created":"تم الإنشاء","torrents.properties.date.finished":"منتهى","torrents.properties.directory":"الموقع","torrents.properties.download.speed":"سرعة التنزيل","torrents.properties.download.total":"تم التحميل","torrents.properties.free.disk.space":"مساحة القرص الحرة","torrents.properties.hash":"التجزئة","torrents.properties.ignore.schedule":"تجاهل المجدول","torrents.properties.is.private":"خاص","torrents.properties.name":"الاسم","torrents.properties.peers":"أقران","torrents.properties.percentage":"اكتمل النسبة","torrents.properties.ratio":"النسبة","torrents.properties.seeds":"بذور","torrents.properties.size":"حجم الملف","torrents.properties.tags":"الوسوم","torrents.properties.tracker.message":"رسالة تتبع","torrents.properties.trackers":"المتتبعون","torrents.properties.upload.speed":"سرعة التحميل","torrents.properties.upload.total":"تم الرفع","torrents.remove":"إزالة التورنت","torrents.remove.are.you.sure":["هل أنت متأكد من أنك تريد إزالة ",["count","plural",{"1":["#"," تورنت"],"other":["#"," تورنت"]}],"?"],"torrents.remove.delete.data":"حذف البيانات","torrents.remove.error.no.torrents.selected":"لم تقم باختيار أي تورنات.","torrents.set.tags.button.set":"تعيين العلامات","torrents.set.tags.enter.tags":"أدخل العلامات","torrents.set.tags.heading":"تعيين العلامات","torrents.set.trackers.button.set":"تعيين التتبع","torrents.set.trackers.enter.tracker":"أدخل متتبع","torrents.set.trackers.heading":"تعيين التتبع","torrents.set.trackers.loading.trackers":"جاري تحميل التتبع...","torrents.sort.title":"الترتيب حسب","unit.size.byte":"ب","unit.size.gigabyte":"جيجابايت","unit.size.kilobyte":"كيلوبايت","unit.size.megabyte":"ميغابايت","unit.size.terabyte":"تيلبايت","unit.speed":[["baseUnit"],"/ث"],"unit.time.day":"د","unit.time.hour":"ساعة","unit.time.infinity":"∞","unit.time.minute":"د","unit.time.second":"ث","unit.time.week":"تأجج"}')}}}]);
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[792],{1903:e=>{e.exports={messages:JSON.parse('{"actionbar.button.add.torrent":"Ajouter un torrent","actionbar.button.remove.torrent":"Supprimer le torrent","actionbar.button.start.torrent":"Démarrer le torrent","actionbar.button.stop.torrent":"Arrêter le torrent","alert.settings.saved":"Paramètres modifiés.","alert.torrent.add":["L\'ajout de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a réussi."],"alert.torrent.add.failed":["L\'ajout de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a échoué."],"alert.torrent.add.sent":[["countElement"]," ",["count","plural",{"1":"request","one":"","other":"requests"}]," envoyé au client torrent."],"alert.torrent.move":["Le déplacement de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a réussi."],"alert.torrent.move.failed":["Le déplacement de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a échoué."],"alert.torrent.remove":["La suppression de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a réussi."],"alert.torrent.remove.failed":["La suppression de ",["countElement"]," ",["count","plural",{"1":"torrent","other":"torrents"}]," a échoué."],"auth.add.user":"Ajouter un utilisateur","auth.admin":"Administrateur","auth.create.account":"Créer un compte","auth.create.an.account":"Créer un compte","auth.create.an.account.intro":"Bienvenue dans Flood !","auth.current.user":"Utilisateur actuel","auth.error.password.empty":"Le mot de passe ne peut pas être vide.","auth.error.username.empty":"Le nom d\'utilisateur ne peut pas être vide.","auth.input.clear":"Effacer","auth.log.in":"Connexion","auth.login":"Identifiant","auth.login.intro":"Se connecter.","auth.message.not.admin":"L\'utilisateur n\'est pas administrateur","auth.password":"Mot de passe","auth.user.accounts":"Comptes","auth.username":"Nom d\'utilisateur","button.add":"Ajouter","button.cancel":"Annuler","button.close":"Fermer","button.download":"Télécharger","button.new":"Nouveau","button.no":"Non","button.ok":"OK","button.retry":"Réessayer","button.save":"Enregistrer les paramètres","button.save.feed":"Enregistrer","button.yes":"Oui","connection-interruption.action.selection.config":"Mettre à jour les paramètres de connexion client","connection-interruption.action.selection.retry":"Réessayer avec les paramètres de connexion actuels du client","connection-interruption.heading":"Impossible de se connecter au client","connection-interruption.not.admin":"Veuillez contacter votre administrateur Flood si cela persiste.","connection-interruption.verification-error":"La connexion n\'a pas pu être établie.","connection.settings.client.select":"Client","connection.settings.error.empty":"Les paramètres de connexion ne peuvent pas être vides.","connection.settings.deluge":"Deluge","connection.settings.deluge.host":"Hôte","connection.settings.deluge.host.input.placeholder":"ex. localhost","connection.settings.deluge.password":"Mot de Passe","connection.settings.deluge.password.input.placeholder":"Mot de Passe","connection.settings.deluge.port":"Port","connection.settings.deluge.port.input.placeholder":"ex. 58846","connection.settings.deluge.username":"Nom d\'utilisateur","connection.settings.deluge.username.input.placeholder":"ex. localclient","connection.settings.qbittorrent":"qBittorrent","connection.settings.qbittorrent.password":"Mot de passe","connection.settings.qbittorrent.password.input.placeholder":"Mot de passe","connection.settings.qbittorrent.url":"URL","connection.settings.qbittorrent.url.input.placeholder":"par exemple. http://localhost:8080","connection.settings.qbittorrent.username":"Nom d\'utilisateur","connection.settings.qbittorrent.username.input.placeholder":"Nom d\'utilisateur","connection.settings.rtorrent":"rTorrent","connection.settings.rtorrent.host":"Hôte","connection.settings.rtorrent.host.input.placeholder":"Nom d\'hôte ou IP","connection.settings.rtorrent.port":"Port","connection.settings.rtorrent.port.input.placeholder":"Port","connection.settings.rtorrent.socket":"Chemin d\'accès","connection.settings.rtorrent.socket.input.placeholder":"par exemple ~/.local/share/rtorrent/rtorrent.sock","connection.settings.rtorrent.type":"Type de connexion","connection.settings.rtorrent.type.socket":"Socket","connection.settings.rtorrent.type.tcp":"TCP","connection.settings.rtorrent.type.tcp.warning":"Exposer rTorrent via TCP peut permettre une élévation des privilèges.","connection.settings.transmission":"Transmission","connection.settings.transmission.password":"Mot de passe","connection.settings.transmission.password.input.placeholder":"Mot de passe","connection.settings.transmission.url":"URL","connection.settings.transmission.url.input.placeholder":"par exemple http://localhost:9091/transmission/rpc","connection.settings.transmission.username":"Nom d\'utilisateur","connection.settings.transmission.username.input.placeholder":"Nom d\'utilisateur","dependency.loading.notifications":"Notifications","dependency.loading.torrent.list":"Liste des torrents","dependency.loading.torrent.taxonomy":"Taxonomie du torrent","dependency.loading.transfer.history":"Historique des transferts de données","dependency.loading.transfer.rate.details":"Détails du taux de transfert des données","feeds.applicable.feed":"Applicable au flux","feeds.apply.tags":"Appliquer les tags","feeds.browse.feeds":"Parcourir les flux","feeds.check":"Valider la règle en l\'essayant. Non enregistré ou envoyé.","feeds.exclude":"Exclure","feeds.exclude.pattern":"Motif pour exclusion","feeds.existing.feeds":"Flux existants","feeds.existing.rules":"Règles existantes","feeds.interval":"Intervalle","feeds.label":"Étiquette","feeds.match":"Correspondance","feeds.match.count":[["count","plural",{"0":["#"," correspond"],"1":["#"," correspond"],"other":["#"," correspondent"]}]],"feeds.match.pattern":"Motif pour inclusion","feeds.no.feeds.available":"Aucun flux disponible.","feeds.no.feeds.defined":"Aucun flux défini.","feeds.no.items.matching":"Aucun élément ne correspond à la recherche.","feeds.no.rules.defined":"Aucune règle définie.","feeds.regEx":"Expression régulière","feeds.search":"Recherche","feeds.search.term":"Recherche","feeds.select.feed":"Sélectionner un flux","feeds.select.interval":"Intervalle","feeds.start.on.load":"Démarrer immédiatement","feeds.tabs.download.rules":"Règles de téléchargement","feeds.tabs.feeds":"Flux","feeds.tabs.heading":"Flux de torrents","feeds.tags":"Tags","feeds.test.match":"Tester le motif","feeds.time.day":"Jours","feeds.time.hr":"Heures","feeds.time.min":"Minutes","feeds.torrent.destination":"Emplacement du torrent","feeds.url":"URL","feeds.validation.interval.not.positive":"L\'intervalle doit être un entier positif.","feeds.validation.invalid.regular.expression":"Expression régulière invalide.","feeds.validation.must.select.feed":"Vous devez choisir un flux.","feeds.validation.must.specify.destination":"Vous devez définir un emplacement.","feeds.validation.must.specify.label":"Vous devez définir un label.","feeds.validation.must.specify.valid.feed.url":"Vous devez définir une URL de flux valide.","filesystem.empty.directory":"Répertoire vide.","filesystem.error.eacces":"Flood n\'a pas la permission de lire ce répertoire.","filesystem.error.enoent":"Cet emplacement n\'existe pas. Il sera créé.","filesystem.error.no.input":"Veuillez indiquer le chemin.","filesystem.error.unknown":"Une erreur inconnue s\'est produite. Veuillez réessayer.","filesystem.fetching":"Récupération de la structure du répertoire...","filter.all":"Tout","filter.status.active":"Actif","filter.status.checking":"En cours de vérification","filter.status.completed":"Terminé","filter.status.downloading":"En téléchargement","filter.status.error":"Erreur","filter.status.inactive":"Inactif","filter.status.seeding":"En source","filter.status.stopped":"Arrêté","filter.status.title":"Filtrer par Status","filter.tag.title":"Filtrer par étiquette","filter.tracker.title":"Filtrer par tracker","filter.untagged":"Sans étiquette","general.ago":"il y a","general.clipboard.copied":"Copié","general.clipboard.copy":"Copier","general.error.unknown":"Une erreur inconnue s\'est produite","general.of":"de","general.to":"à","locale.language.auto":"Automatique","mediainfo.execError":"Une erreur est survenue lors de l\'exécution de mediainfo sur le serveur. Vérifiez que mediainfo est installé et disponible dans le PATH de Flood.","mediainfo.fetching":"Récupération en cours...","mediainfo.heading":"Résultat mediainfo","notification.clear.all":"Tout effacer","notification.feed.torrent.added.body":[["title"]],"notification.feed.torrent.added.heading":"Élément de flux en file d\'attente","notification.no.notification":"Aucune notification à afficher.","notification.showing":"Affichage de","notification.torrent.errored.body":[["name"]],"notification.torrent.errored.heading":"Erreur signalée","notification.torrent.finished.body":[["name"]],"notification.torrent.finished.heading":"Téléchargement terminé","priority.dont.download":"Ne pas télécharger","priority.high":"Élevée","priority.low":"Basse","priority.normal":"Normale","settings.bandwidth.slots.download.global.label":"Slots de téléchargement globaux","settings.bandwidth.slots.download.label":"Slots de téléchargement par torrent","settings.bandwidth.slots.heading":"Configuration des slots","settings.bandwidth.slots.upload.global.label":"Slots d\'envoi global","settings.bandwidth.slots.upload.label":"Slots d\'envoi par Torrent","settings.bandwidth.transferrate.dropdown.preset.download.label":"Pré-réglages des vitesses : téléchargement","settings.bandwidth.transferrate.dropdown.preset.upload.label":"Pré-réglages des vitesses : Envoi","settings.bandwidth.transferrate.global.throttle.download":"Limite globale de téléchargement","settings.bandwidth.transferrate.global.throttle.upload":"Limite globale d\'envoi","settings.bandwidth.transferrate.heading":"Limites de vitesse de transfert","settings.connectivity.dht.label":"Activer le DHT","settings.connectivity.dht.port.label":"Port DHT","settings.connectivity.dpd.heading":"Découverte décentralisée de pairs","settings.connectivity.incoming.heading":"Connexions entrantes","settings.connectivity.ip.hostname.label":"Adresse IP / nom d\'hôte affichée","settings.connectivity.max.http.connections":"Limite de connexions HTTP","settings.connectivity.peer.exchange.label":"Activer l\'échange de pairs","settings.connectivity.peers.desired.label":"Pairs désirés","settings.connectivity.peers.heading":"Pairs","settings.connectivity.peers.max.label":"Limite de pairs en téléchargement","settings.connectivity.peers.min.label":"Seuil minimum de pairs","settings.connectivity.peers.seeding.max.label":"Seuil maximum de pairs en source","settings.connectivity.peers.seeding.min.label":"Seuil minimum de pairs en essaimage","settings.connectivity.port.open.label":"Ouvrir le port","settings.connectivity.port.randomize.label":"Port aléatoire","settings.connectivity.port.range.label":"Plage de ports","settings.diskusage.mount.points":"Points de montage à observer","settings.diskusage.show":"Afficher","settings.resources.disk.check.hash.label":"Vérifier le hash après le téléchargement","settings.resources.disk.download.location.label":"Répertoire de téléchargement par défaut","settings.resources.disk.heading":"Disque","settings.resources.max.open.files":"Limite de fichiers ouverts","settings.resources.memory.heading":"Mémoire","settings.resources.memory.max.label":"Limite d\'utilisation de mémoire","settings.tabs.about":"À propos","settings.tabs.authentication":"Authentification","settings.tabs.bandwidth":"Bande passante","settings.tabs.connectivity":"Connectivité","settings.tabs.diskusage":"Utilisation du disque","settings.tabs.heading":"Paramètres","settings.tabs.resources":"Ressources","settings.tabs.userinterface":"Interface utilisateur","settings.ui.displayed.context.menu.items":"Éléments du menu contextuel","settings.ui.displayed.details":"Colonnes de détails du torrent","settings.ui.language":"Langue","settings.ui.misc":"Divers","settings.ui.page.title.speed":"Afficher la vitesse de chargement et de téléchargement dans le titre de la page","settings.ui.locale":"Paramètres régionaux","settings.ui.tag.selector.mode":"Sélecteur de Préférence","settings.ui.tag.selector.mode.multi":"Sélection Multiple","settings.ui.tag.selector.mode.single":"Sélection Unique","settings.ui.torrent.context.menu.items.show":"Afficher","settings.ui.torrent.details.enabled":"Activé","settings.ui.torrent.details.tags.placement":"Dans la vue étendue, il vaut mieux placer les tags dernier.","settings.ui.torrent.list":"Affichage de la liste des torrents","settings.ui.torrent.size":"Taille du torrent","settings.ui.torrent.size.condensed":"Vue condensée","settings.ui.torrent.size.expanded":"Vue étendue","sidebar.button.feeds":"Flux","sidebar.button.log.out":"Déconnexion","sidebar.button.settings":"Paramètres","sidebar.button.speedlimits":"Limites de Vitesse","sidebar.button.theme.dark":"Thème Sombre","sidebar.button.theme.light":"Thème Clair","sidebar.search.placeholder":"Rechercher les torrents","sidebar.speedlimits.download":"TÉLÉCHARGEMENT","sidebar.speedlimits.upload":"ENVOI","sidebar.transferdata.downloaded":"Téléchargé","sidebar.transferdata.uploaded":"Envoyé","speed.unlimited":"Illimité","status.diskusage.free":"Disponible","status.diskusage.title":"Utilisation du disque","status.diskusage.total":"Total","status.diskusage.used":"Utilisé","torrent.list.peers":[["connected"]," ",["of"]," ",["total"]],"torrent.list.peers.of":"sur","torrents.add.button.add":"Ajouter un torrent","torrents.add.cookies.input.placeholder":"cookie-name=cookie-value optionnel","torrents.add.cookies.label":"Cookies","torrents.add.destination.label":"Emplacement","torrents.add.destination.placeholder":"Emplacement","torrents.add.heading":"Ajouter des torrents","torrents.add.start.label":"Démarrer","torrents.add.tab.create.title":"Créer","torrents.add.tab.file.browse":"ou cliquez pour sélectionner","torrents.add.tab.file.drop":"Glissez-déposez des fichiers ici,","torrents.add.tab.file.title":"Par fichier","torrents.add.tab.url.input.placeholder":"URL du torrent ou lien magnet","torrents.add.tab.url.register.magnet.handler":"S\'enregistrer pour gérer les liens magnet","torrents.add.tab.url.title":"Par URL","torrents.add.tags":"Tags","torrents.add.torrents.label":"Torrents","torrents.create.base.name.input.placeholder":"Fichier de base optionnel ou nom de répertoire du torrent","torrents.create.base.name.label":"Nom de base","torrents.create.comment.input.placeholder":"Commentaire optionnel dans le fichier torrent","torrents.create.comment.label":"Commenter","torrents.create.info.source.input.placeholder":"Saisie optionnelle de la source dans le tableau de bord","torrents.create.info.source.label":"Source d\'info","torrents.create.is.private.label":"Privé","torrents.create.source.path.label":"Source","torrents.create.tags.input.placeholder":"Tags dans le Déluge. Non ajouté au torrent créé.","torrents.create.tracker.input.placeholder":"URL du tracker","torrents.create.trackers.label":"Traqueurs","torrents.destination.base_path":"Utiliser comme chemin de base","torrents.destination.completed":"Terminé","torrents.destination.sequential":"Téléchargement séquentiel","torrents.details.actions.pause":"Pause","torrents.details.actions.start":"Démarrer","torrents.details.actions.stop":"Arrêter","torrents.details.details":"Détails","torrents.details.files":"Fichiers","torrents.details.files.download.file":[["count","plural",{"1":"Téléchargez le fichier","other":"Téléchargez les fichiers"}]],"torrents.details.files.loading":"Chargement des détails du fichier...","torrents.details.general.comment":"Commentaire","torrents.details.general.connected":[["connected"]," connectés sur ",["total"]],"torrents.details.general.date.active":"Dernière activité","torrents.details.general.date.active.now":"Maintenant","torrents.details.general.date.added":"Ajouté","torrents.details.general.date.created":"Créé","torrents.details.general.date.finished":"Terminé","torrents.details.general.downloaded":"Téléchargé","torrents.details.general.free.disk.space":"Espace disque disponible","torrents.details.general.hash":"Hachage","torrents.details.general.heading.general":"Général","torrents.details.general.heading.torrent":"Torrent","torrents.details.general.heading.tracker":"Traqueur","torrents.details.general.heading.transfer":"Transfert","torrents.details.general.location":"Emplacement","torrents.details.general.none":"Aucun","torrents.details.general.peers":"Pairs","torrents.details.general.scheduler":"Planificateur","torrents.details.general.scheduler.ignored":"Ignoré","torrents.details.general.scheduler.obeyed":"Conforme","torrents.details.general.seeds":"Sources","torrents.details.general.size":"Taille","torrents.details.general.tags":"Tags","torrents.details.general.tracker.message":"Message du tracker","torrents.details.general.type":"Type de texte","torrents.details.general.type.private":"Privé","torrents.details.general.type.public":"Publique","torrents.details.mediainfo":"Mediainfo","torrents.details.peers":"Pairs","torrents.details.peers.no.data":"Il n\'y a aucun pair pour ce torrent.","torrents.details.selected.files":[["count","plural",{"0":"aucun fichier sélectionné","1":"un fichier sélectionné","other":[["countElement"]," fichiers sélectionnés"]}]],"torrents.details.selected.files.set.priority":"Définir la priorité","torrents.details.trackers":"Traqueurs","torrents.details.trackers.no.data":"Il n\'y a aucun tracker actif pour ce torrent.","torrents.details.trackers.type":"Type","torrents.generate.magnet.heading":"Générer un lien Magnet","torrents.generate.magnet.loading.trackers":"Chargement des trackers...","torrents.generate.magnet.magnet":"Lien Magnet","torrents.generate.magnet.magnet.with.trackers":"Lien Magnet avec Trackers","torrents.generate.magnet.private.torrent":"C\'est un torrent privé.","torrents.list.cannot.connect":"Impossible de se connecter au client.","torrents.list.clear.filters":"Effacer les filtres","torrents.list.context.check.hash":"Vérifier le hash","torrents.list.context.details":"Détails du torrent","torrents.list.context.download.contents":"Télécharger le contenu","torrents.list.context.download.metainfo":"Télécharger le .torrent","torrents.list.context.generate.magnet":"Générer un lien Magnet","torrents.list.context.initial.seeding":"Sources initiales","torrents.list.context.move":"Définir l\'emplacement du torrent","torrents.list.context.pause":"Mettre en pause","torrents.list.context.priority":"Priorité","torrents.list.context.reannounce":"Ré-annoncer","torrents.list.context.remove":"Supprimer","torrents.list.context.sequential":"Séquentiel","torrents.list.context.set.tags":"Définir les tags","torrents.list.context.set.trackers":"Définir les trackers","torrents.list.context.start":"Démarrer","torrents.list.context.stop":"Arrêter","torrents.list.drop":"Déposez les fichiers ici pour les ajouter.","torrents.list.no.torrents":"Aucun torrent à afficher.","torrents.move.button.set.location":"Définir l\'emplacement","torrents.move.button.state.setting":"En cours...","torrents.move.check_hash.label":"Vérifier le hash","torrents.move.data.label":"Déplacer les données","torrents.move.heading":"Définir l\'emplacement du torrent","torrents.properties.comment":"Commentaire","torrents.properties.date.added":"Ajouté","torrents.properties.date.created":"Créé","torrents.properties.date.finished":"Terminé","torrents.properties.directory":"Emplacement","torrents.properties.download.speed":"Vitesse de téléchargement","torrents.properties.download.total":"Téléchargé","torrents.properties.eta":"Date de fin estimée","torrents.properties.free.disk.space":"Espace libre","torrents.properties.hash":"Hachage","torrents.properties.ignore.schedule":"Ignorer la planification","torrents.properties.is.private":"Privé","torrents.properties.name":"Nom","torrents.properties.peers":"Pairs","torrents.properties.percentage":"% terminé","torrents.properties.ratio":"Ratio","torrents.properties.seeds":"Sources","torrents.properties.size":"Taille","torrents.properties.tags":"Tags","torrents.properties.tracker.message":"Message du tracker","torrents.properties.trackers":"Traqueurs","torrents.properties.upload.speed":"Vitesse d\'Envoi","torrents.properties.upload.total":"Données envoyées","torrents.remove":"Supprimer les torrents","torrents.remove.are.you.sure":["Confirmez-vous la suppression ",["count","plural",{"0":"d\'aucun torrent","1":"d\'un torrent","other":["de ","#"," torrents"]}]," ?"],"torrents.remove.delete.data":"Supprimer les données","torrents.remove.error.no.torrents.selected":"Vous n\'avez sélectionné aucun torrent.","torrents.set.tags.button.set":"Définir les tags","torrents.set.tags.enter.tags":"Saisissez les tags","torrents.set.tags.heading":"Définir les tags","torrents.set.trackers.button.set":"Définir les trackers","torrents.set.trackers.enter.tracker":"Entrez un tracker","torrents.set.trackers.heading":"Définir les trackers","torrents.set.trackers.loading.trackers":"Chargement des trackers...","torrents.sort.title":"Trier par","unit.size.byte":"o","unit.size.gigabyte":"Go","unit.size.kilobyte":"ko","unit.size.megabyte":"Mo","unit.size.terabyte":"To","unit.speed":[["baseUnit"],"/s"],"unit.time.day":"j","unit.time.hour":"h","unit.time.infinity":"∞","unit.time.minute":"min","unit.time.second":"sec","unit.time.week":"sem","unit.time.year":"an"}')}}}]);
@@ -0,0 +1 @@
1
+ (globalThis.webpackChunk_jesec_flood=globalThis.webpackChunk_jesec_flood||[]).push([[994],{6250:e=>{e.exports={messages:JSON.parse('{"actionbar.button.add.torrent":"Torrent hozzáadása","actionbar.button.remove.torrent":"Torrent eltávolítása","actionbar.button.start.torrent":"Torrent indítása","actionbar.button.stop.torrent":"Torrent megállítása","alert.settings.saved":"Beállítások sikeresen elmentve.","alert.torrent.add":[["countElement"]," ",["count","plural",{"1":"torrent","other":"torrent"}]," sikeresen hozzáadva."],"alert.torrent.add.failed":[["countElement"]," ",["count","plural",{"1":"torrentet","other":"torrentet"}]," nem sikerült hozzáadni."],"alert.torrent.add.sent":[["countElement"]," ",["count","plural",{"1":"kérés","one":"","other":"kérés"}]," elküldve a torrent kliensnek."],"alert.torrent.move":[["countElement"]," ",["count","plural",{"1":"torrent","one":"","other":"torrent"}]," sikeresen áthelyezve."],"alert.torrent.move.failed":[["countElement"]," ",["count","plural",{"1":"torrentet","one":"","other":"torrentet"}]," nem sikerült áthelyezni."],"alert.torrent.remove":[["countElement"]," ",["count","plural",{"1":"torrent","one":"","other":"torrent"}]," sikeresen eltávolítva."],"alert.torrent.remove.failed":[["countElement"]," ",["count","plural",{"1":"torrent","one":"","other":"torrent"}]," eltávolítása sikertelen."],"auth.add.user":"Új felhasználó","auth.admin":"Adminisztrátor","auth.create.account":"Fiók létrehozása","auth.create.an.account":"Fiók létrehozása","auth.create.an.account.intro":"Üdvözöl a Flood!","auth.current.user":"Jelenlegi felhasználó","auth.error.password.empty":"A jelszó mező nem lehet üres.","auth.error.username.empty":"A felhasználónév nem lehet üres.","auth.input.clear":"Törlés","auth.log.in":"Bejelentkezés","auth.login":"Bejelentkezés","auth.login.intro":"Jelentkezz be a fiókodba.","auth.message.not.admin":"A felhasználó nem Admin","auth.password":"Jelszó","auth.user.accounts":"Felhasználói fiókok","auth.username":"Felhasználónév","button.add":"Hozzáadás","button.cancel":"Mégse","button.close":"Bezárás","button.download":"Letöltés","button.new":"Új","button.no":"Nem","button.ok":"OK","button.retry":"Újra","button.save":"Beállítások mentése","button.save.feed":"Mentés","button.yes":"Igen","connection-interruption.action.selection.config":"Kliens beállítások módosítása","connection-interruption.action.selection.retry":"Próbálja újra a jelenlegi kliens beállításokkal","connection-interruption.heading":"Nem tudok csatlakozni a klienshez","connection-interruption.not.admin":"Vedd fel a kapcsolatot az Adminnal, amennyiben a probléma továbbra is fennáll.","connection-interruption.verification-error":"A kapcsolatot nem sikerült ellenőrizni.","connection.settings.client.select":"Kliens","connection.settings.error.empty":"A kapcsolati beállítás nem maradhat üresen.","connection.settings.deluge":"Deluge","connection.settings.deluge.host":"Kiszolgáló","connection.settings.deluge.host.input.placeholder":"pl.: localhost","connection.settings.deluge.password":"Jelszó","connection.settings.deluge.password.input.placeholder":"Jelszó","connection.settings.deluge.port":"Port","connection.settings.deluge.port.input.placeholder":"pl.: 58846","connection.settings.deluge.username":"Felhasználónév","connection.settings.deluge.username.input.placeholder":"pl.: localclient","connection.settings.qbittorrent":"qBittorrent","connection.settings.qbittorrent.password":"Jelszó","connection.settings.qbittorrent.password.input.placeholder":"Jelszó","connection.settings.qbittorrent.url":"URL","connection.settings.qbittorrent.url.input.placeholder":"pl.: http://localhost:8080","connection.settings.qbittorrent.username":"Felhasználónév","connection.settings.qbittorrent.username.input.placeholder":"Felhasználónév","connection.settings.rtorrent":"rTorrent","connection.settings.rtorrent.host":"Kiszolgáló","connection.settings.rtorrent.host.input.placeholder":"Kiszolgálónév vagy IP cím","connection.settings.rtorrent.port":"Port","connection.settings.rtorrent.port.input.placeholder":"Port","connection.settings.rtorrent.socket":"Elérési útvonal","connection.settings.rtorrent.socket.input.placeholder":"pl.: ~/.local/share/rtorrent/rtorrent.sock","connection.settings.rtorrent.type":"Kapcsolat típusa","connection.settings.rtorrent.type.socket":"Socket","connection.settings.rtorrent.type.tcp":"TCP","connection.settings.rtorrent.type.tcp.warning":"Az rTorrent TCP-n keresztüli elérése biztonsági kockázatot jelenthet.","connection.settings.transmission":"Transmission","connection.settings.transmission.password":"Jelszó","connection.settings.transmission.password.input.placeholder":"Jelszó","connection.settings.transmission.url":"URL","connection.settings.transmission.url.input.placeholder":"pl.: http://localhost:9091/transmission/rpc","connection.settings.transmission.username":"Felhasználónév","connection.settings.transmission.username.input.placeholder":"Felhasználónév","dependency.loading.notifications":"Értesítések","dependency.loading.torrent.list":"Torrent lista","dependency.loading.torrent.taxonomy":"Torrent Taxonomy","dependency.loading.transfer.history":"Adatátviteli előzmények","dependency.loading.transfer.rate.details":"Adatátviteli sebesség részletei","feeds.applicable.feed":"Felhasznált hírcsatorna","feeds.apply.tags":"Címkék hozzáadása","feeds.browse.feeds":"Hírcsatornák böngészése","feeds.check":"Ellenőrizheted az egyezési mintát az itt megadott szövegen (Ez a mező nem kerül elmentésre).","feeds.exclude":"Kivéve","feeds.exclude.pattern":"Kizárási minta","feeds.existing.feeds":"Rendelkezésre álló hírcsatornák","feeds.existing.rules":"Rendelkezésre álló szabályok","feeds.interval":"Intervallum","feeds.label":"Megnevezés","feeds.match":"Egyezés","feeds.match.count":[["count","plural",{"1":["#"," egyezés"],"one":"","other":["#"," egyezés"]}]],"feeds.match.pattern":"Egyezési minta","feeds.no.feeds.available":"Nincs elérhető hírcsatorna.","feeds.no.feeds.defined":"Nincs megadva hírcsatorna.","feeds.no.items.matching":"A keresési feltételnek egyetlen elem sem felel meg.","feeds.no.rules.defined":"Nincs megadva szabály.","feeds.regEx":"RegEx","feeds.search":"Keresési kifejezés","feeds.search.term":"Keresési kifejezés","feeds.select.feed":"Csatorna kiválasztása","feeds.select.interval":"Intervallum","feeds.start.on.load":"Indítás azonnal","feeds.tabs.download.rules":"Letöltési szabályok","feeds.tabs.feeds":"Hírcsatornák","feeds.tabs.heading":"Torrent hírcsatornák","feeds.tags":"Címkék","feeds.test.match":"Egyezési minta tesztelése","feeds.time.day":"Nap","feeds.time.hr":"Óra","feeds.time.min":"Perc","feeds.torrent.destination":"Letöltési könyvár helye","feeds.url":"URL","feeds.validation.interval.not.positive":"Az intervallum pozitív egész szám kell legyen.","feeds.validation.invalid.regular.expression":"Érvénytelen szabályos kifejezés.","feeds.validation.must.select.feed":"Választanod kell egy csatornát.","feeds.validation.must.specify.destination":"Meg kell adnod egy célkönyvtárat.","feeds.validation.must.specify.label":"Meg kell adnod egy nevet.","feeds.validation.must.specify.valid.feed.url":"Érvényes hírcsatorna URL-t adj meg.","filesystem.empty.directory":"Üres könyvtár.","filesystem.error.eacces":"A Floodnak nincs jogosultsága olvasni ezt a könyvtárat.","filesystem.error.enoent":"Az elérési út nem létezik, így létre lesz hozva.","filesystem.error.no.input":"Kérlek add meg az elérési utat.","filesystem.error.unknown":"Ismeretlen hiba történt. Kérlek próbáld meg újra.","filesystem.fetching":"Könyvtárszerkezet lekérdezése...","filter.all":"Mind","filter.status.active":"Aktív","filter.status.checking":"Ellenőrzés alatt","filter.status.completed":"Befejezett","filter.status.downloading":"Letöltés alatt","filter.status.error":"Hiba","filter.status.inactive":"Inaktív","filter.status.seeding":"Seedelés alatt","filter.status.stopped":"Megállítva","filter.status.title":"Szűrés állapot szerint","filter.tag.title":"Szűrés címke alapján","filter.tracker.title":"Szűrés tracker alapján","filter.untagged":"Címke nélküli","general.ago":"ezelőtt","general.clipboard.copied":"Másolva","general.clipboard.copy":"Másolás","general.error.unknown":"Ismeretlen hiba történt","general.of":"of","general.to":"to","locale.language.auto":"Automatikus","mediainfo.execError":"Hiba történt a mediainfo futtatásakor a szerveren. Ellenőrizd, hogy a mediainfo telepítve van és elérhető a Flood számára.","mediainfo.fetching":"Lekérés...","mediainfo.heading":"A Mediainfo válasza","notification.clear.all":"Összes törlése","notification.feed.torrent.added.body":[["title"]],"notification.feed.torrent.added.heading":"Hírcsatorna eleme hozzáadva","notification.no.notification":"Nincs megjelenítendő üzenet.","notification.showing":"Mutat","notification.torrent.errored.body":[["name"]],"notification.torrent.errored.heading":"Hibajelzés","notification.torrent.finished.body":[["name"]],"notification.torrent.finished.heading":"Letöltés befejeződött","priority.dont.download":"Ne töltsd","priority.high":"Magas","priority.low":"Alacsony","priority.normal":"Normál","settings.bandwidth.slots.download.global.label":"Globális letöltési szál","settings.bandwidth.slots.download.label":"Letöltési szál per Torrent","settings.bandwidth.slots.heading":"Átviteli szálak meghatározása","settings.bandwidth.slots.upload.global.label":"Globális feltöltési szál","settings.bandwidth.slots.upload.label":"Feltöltési szál per Torrent","settings.bandwidth.transferrate.dropdown.preset.download.label":"Legördülő lista értékei: Letöltés","settings.bandwidth.transferrate.dropdown.preset.upload.label":"Legördülő lista értékei: Feltöltés","settings.bandwidth.transferrate.global.throttle.download":"Globális letöltési sebességkorlát","settings.bandwidth.transferrate.global.throttle.upload":"Globális feltöltési sebességkorlát","settings.bandwidth.transferrate.heading":"Adatátviteli sebességkorlátok","settings.connectivity.dht.label":"DHT engedélyezése","settings.connectivity.dht.port.label":"DHT Port","settings.connectivity.dpd.heading":"Decentralizált Peerek felderítése","settings.connectivity.incoming.heading":"Bejövő kapcsolatok","settings.connectivity.ip.hostname.label":"Közzétett IP/Hostname","settings.connectivity.max.http.connections":"Max. HTTP kapcsolatok száma","settings.connectivity.peer.exchange.label":"Peer csere engedélyezése","settings.connectivity.peers.desired.label":"Kívánt Peerek száma","settings.connectivity.peers.heading":"Peerek","settings.connectivity.peers.max.label":"Max. Peerek száma","settings.connectivity.peers.min.label":"Min. Peerek száma","settings.connectivity.peers.seeding.max.label":"Seedeléskor max. Peerek száma","settings.connectivity.peers.seeding.min.label":"Seedeléskor min. Peerek száma","settings.connectivity.port.open.label":"Port megnyitása","settings.connectivity.port.randomize.label":"Véletlenszerű port","settings.connectivity.port.range.label":"Port tartomány","settings.diskusage.mount.points":"Csatolási pontok lemezhasználata","settings.diskusage.show":"Megjelenítés","settings.resources.disk.check.hash.label":"Hash ellenőrzés a letöltés végén","settings.resources.disk.download.location.label":"Alapértelmezett letöltési könyvtár","settings.resources.disk.heading":"Lemez","settings.resources.max.open.files":"Max. megnyitott fájlok száma","settings.resources.memory.heading":"Memória","settings.resources.memory.max.label":"Max. memóriahasználat","settings.tabs.about":"Névjegy","settings.tabs.authentication":"Azonosítás","settings.tabs.bandwidth":"Sávszélesség","settings.tabs.connectivity":"Kapcsolat","settings.tabs.diskusage":"Lemezhasználat","settings.tabs.heading":"Beállítások","settings.tabs.resources":"Erőforrások","settings.tabs.userinterface":"Felhasználói felület","settings.ui.displayed.context.menu.items":"Kontextus menü elemei","settings.ui.displayed.details":"Torrent lista oszlopai","settings.ui.language":"Nyelv","settings.ui.misc":"Egyéb","settings.ui.page.title.speed":"Le/feltöltési sebesség mutatása a lapfülön","settings.ui.locale":"Területi beállítások","settings.ui.tag.selector.mode":"Címke választás módja","settings.ui.tag.selector.mode.multi":"Egyszerre akár többet is","settings.ui.tag.selector.mode.single":"Csak egyet","settings.ui.torrent.context.menu.items.show":"Megjelenítés","settings.ui.torrent.details.enabled":"Engedélyezve","settings.ui.torrent.details.tags.placement":"Kibővített nézetben a címkék megjelenítése a lista végén ajánlott.","settings.ui.torrent.list":"Torrent lista megjelenítése","settings.ui.torrent.size":"Torrent mérete","settings.ui.torrent.size.condensed":"Szűkített nézet","settings.ui.torrent.size.expanded":"Bővített nézet","sidebar.button.feeds":"Hírcsatornák","sidebar.button.log.out":"Kijelentkezés","sidebar.button.settings":"Beállítások","sidebar.button.speedlimits":"Sebességkorlát","sidebar.button.theme.dark":"Sötét téma","sidebar.button.theme.light":"Világos téma","sidebar.search.placeholder":"Torrent keresése","sidebar.speedlimits.download":"LETÖLTÉS","sidebar.speedlimits.upload":"FELTÖLTÉS","sidebar.transferdata.downloaded":"Letöltve","sidebar.transferdata.uploaded":"Feltöltve","speed.unlimited":"Korlátlan","status.diskusage.free":"Szabad","status.diskusage.title":"Lemezhasználat","status.diskusage.total":"Összesen","status.diskusage.used":"Felhasznált","torrent.list.peers":[["connected"]," ",["of"]," ",["total"]],"torrent.list.peers.of":"/","torrents.add.button.add":"Torrent hozzáadása","torrents.add.cookies.input.placeholder":"Opcionális cookie-name=cookie-value","torrents.add.cookies.label":"Sütik (cookies)","torrents.add.destination.label":"Célkönyvtár","torrents.add.destination.placeholder":"Célkönyvtár","torrents.add.heading":"Torrentek hozzáadása","torrents.add.start.label":"Torrent indítása","torrents.add.tab.create.title":"Létrehozás","torrents.add.tab.file.browse":"vagy kattints a böngészéshez","torrents.add.tab.file.drop":"Húzd ide a fájlokat,","torrents.add.tab.file.title":"Fájl alapján","torrents.add.tab.url.input.placeholder":"Torrent URL vagy Magnet Link","torrents.add.tab.url.register.magnet.handler":"Flood hozzárendelése Magnet Linkekhez","torrents.add.tab.url.title":"URL alapján","torrents.add.tags":"Címkék","torrents.add.torrents.label":"Torrentek","torrents.create.base.name.input.placeholder":"Opcionális fájlnév vagy könyvtárnév","torrents.create.base.name.label":"Megnevezés","torrents.create.comment.input.placeholder":"Opcionális megjegyzés a torrenthez","torrents.create.comment.label":"Megjegyzés","torrents.create.info.source.input.placeholder":"Opcionális forrás bejegyzés az infohashben","torrents.create.info.source.label":"Info forrás","torrents.create.is.private.label":"Privát","torrents.create.source.path.label":"Forrás","torrents.create.tags.input.placeholder":"Saját címke a Floodban. Nem lesz hozzáadva a torrent fájlhoz.","torrents.create.tracker.input.placeholder":"Tracker URL","torrents.create.trackers.label":"Trackerek","torrents.destination.base_path":"Ne készítsen alkönyvtárat","torrents.destination.completed":"Befejezett","torrents.destination.sequential":"Szekvenciális letöltés","torrents.details.actions.pause":"Szüneteltetés","torrents.details.actions.start":"Indítás","torrents.details.actions.stop":"Leállítás","torrents.details.details":"Részletek","torrents.details.files":"Fájlok","torrents.details.files.download.file":[["count","plural",{"1":"Fájl letöltése","one":"","other":"Fájlok letöltése"}]],"torrents.details.files.loading":"Fájl adatainak betöltése...","torrents.details.general.comment":"Megjegyzés","torrents.details.general.connected":["Csatlakozva ",["connected"]," / ",["total"]],"torrents.details.general.date.active":"Utoljára aktív","torrents.details.general.date.active.now":"Most","torrents.details.general.date.added":"Hozzáadva","torrents.details.general.date.created":"Létrehozva","torrents.details.general.date.finished":"Befejezve","torrents.details.general.downloaded":"Letöltve","torrents.details.general.free.disk.space":"Szabad lemezterület","torrents.details.general.hash":"Hash","torrents.details.general.heading.general":"Általános","torrents.details.general.heading.torrent":"Torrent","torrents.details.general.heading.tracker":"Tracker","torrents.details.general.heading.transfer":"Átvitel","torrents.details.general.location":"Elérési út","torrents.details.general.none":"Nincs","torrents.details.general.peers":"Peerek","torrents.details.general.scheduler":"Ütemező","torrents.details.general.scheduler.ignored":"Mellőzve","torrents.details.general.scheduler.obeyed":"Teljesítve","torrents.details.general.seeds":"Seedek","torrents.details.general.size":"Méret","torrents.details.general.tags":"Címkék","torrents.details.general.tracker.message":"Tracker üzenet","torrents.details.general.type":"Típus","torrents.details.general.type.private":"Privát","torrents.details.general.type.public":"Nyilvános","torrents.details.mediainfo":"Mediainfo","torrents.details.peers":"Peerek","torrents.details.peers.no.data":"Nincs elérhető peer információ ehhez a torrenthez.","torrents.details.selected.files":[["count","plural",{"1":[["countElement"]," kiválasztott fájl"],"one":"","other":[["countElement"]," kiválasztott fájl"]}]],"torrents.details.selected.files.set.priority":"Prioritás beállítása","torrents.details.trackers":"Trackerek","torrents.details.trackers.no.data":"Nincs elérhető tracker információ ehhez a torrenthez.","torrents.details.trackers.type":"Típus","torrents.generate.magnet.heading":"Magnet Link generálás","torrents.generate.magnet.loading.trackers":"Trackerek betöltése...","torrents.generate.magnet.magnet":"Magnet Link","torrents.generate.magnet.magnet.with.trackers":"Magnet Link Trackerekkel együtt","torrents.generate.magnet.private.torrent":"Ez egy privát torrent.","torrents.list.cannot.connect":"Nem tudok csatlakozni a klienshez.","torrents.list.clear.filters":"Szűrök törlése","torrents.list.context.check.hash":"Hash ellenőrzése","torrents.list.context.details":"Torrent részletei","torrents.list.context.download.contents":"Tartalom letöltése","torrents.list.context.download.metainfo":".torrent letöltése","torrents.list.context.generate.magnet":"Magnet Link generálása","torrents.list.context.initial.seeding":"Kezdő Seeder","torrents.list.context.move":"Áthelyezés","torrents.list.context.pause":"Szüneteltetve","torrents.list.context.priority":"Prioritás","torrents.list.context.reannounce":"Tracker frissítése","torrents.list.context.remove":"Törlés","torrents.list.context.sequential":"Szekvenciális letöltés","torrents.list.context.set.tags":"Címke hozzárendelése","torrents.list.context.set.trackers":"Tracker szerkesztése","torrents.list.context.start":"Indítás","torrents.list.context.stop":"Leállítás","torrents.list.drop":"Húzd ide a fájlokat a hozzáadáshoz.","torrents.list.no.torrents":"Nincs megjeleníthető torrent.","torrents.move.button.set.location":"Hely beállítása","torrents.move.button.state.setting":"Beállítás...","torrents.move.check_hash.label":"Hash ellenőrzése","torrents.move.data.label":"Adat áthelyezése","torrents.move.heading":"Torrent áthelyezése másik könyvtárba","torrents.properties.comment":"Megjegyzés","torrents.properties.date.added":"Hozzáadva","torrents.properties.date.created":"Létrehozva","torrents.properties.date.finished":"Befejezve","torrents.properties.directory":"Elérési út","torrents.properties.download.speed":"Letöltés","torrents.properties.download.total":"Letöltve","torrents.properties.eta":"Becsült idő","torrents.properties.free.disk.space":"Szabad lemezterület","torrents.properties.hash":"Hash","torrents.properties.ignore.schedule":"Ütemező figyelmen kívül hagyása","torrents.properties.is.private":"Privát","torrents.properties.name":"Név","torrents.properties.peers":"Peerek","torrents.properties.percentage":"Százalék készen","torrents.properties.ratio":"Arány","torrents.properties.seeds":"Seedek","torrents.properties.size":"Méret","torrents.properties.tags":"Címkék","torrents.properties.tracker.message":"Tracker üzenet","torrents.properties.trackers":"Trackerek","torrents.properties.upload.speed":"Feltöltés","torrents.properties.upload.total":"Feltöltve","torrents.remove":"Torrentek eltávolítása","torrents.remove.are.you.sure":["Biztosan el akarod távolítani ezt a/az ",["count","plural",{"1":["#"," torrentet"],"one":"","other":["#"," torrentet"]}],"?"],"torrents.remove.delete.data":"Adat törlése","torrents.remove.error.no.torrents.selected":"Nem jelöltél ki egyetlen torrentet sem.","torrents.set.tags.button.set":"Címke hozzárendelése","torrents.set.tags.enter.tags":"Címke felvétele","torrents.set.tags.heading":"Címke hozzárendelése","torrents.set.trackers.button.set":"Tracker hozzáadása","torrents.set.trackers.enter.tracker":"Adj meg egy Trackert","torrents.set.trackers.heading":"Tracker hozzáadása","torrents.set.trackers.loading.trackers":"Trackerek betöltése...","torrents.sort.title":"Rendezés","unit.size.byte":"B","unit.size.gigabyte":"GB","unit.size.kilobyte":"kB","unit.size.megabyte":"MB","unit.size.terabyte":"TB","unit.speed":[["baseUnit"],"/s"],"unit.time.day":"nap","unit.time.hour":"óra","unit.time.infinity":"∞","unit.time.minute":"p","unit.time.second":"mp","unit.time.week":"hét","unit.time.year":"év"}')}}}]);